ETH Price: $2,380.41 (+1.21%)

Token

Lirners (Lirners)
 

Overview

Max Total Supply

120 Lirners

Holders

81

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
tint.eth
Balance
5 Lirners
0xba60792c99c9b3aa5c3b69cc68f577c2aacc3918
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:
Lirners

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

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

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

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

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

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

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

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

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

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

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


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

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

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


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



pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/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/token/ERC721/ERC721.sol
pragma solidity ^0.8.0;
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}


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

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

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

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

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

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

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

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

// SPDX-License-Identifier: GPL-3.0

pragma solidity >=0.7.0 <0.9.0;

contract Lirners is ERC721Enumerable, Ownable {
  using Strings for uint256;

  string public baseURI;
  string public baseExtension = ".json";
  string public notRevealedUri;
  uint256 public cost = .05 ether;
  uint256 public maxSupply = 5555;
  uint256 public maxMintAmount = 5;
  uint256 public nftPerAddressLimit = 5;
  bool public paused = false;
  bool public revealed = false;
  bool public onlyWhitelisted = true;
  address[] public whitelistedAddresses;
  mapping(address => uint256) addressMintedBalance;
  mapping(address => bool) transferred;
  mapping(address => bool) bal;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory _initBaseURI,
    string memory _initNotRevealedUri
  ) ERC721(_name, _symbol) {
    setBaseURI(_initBaseURI);
    setNotRevealedURI(_initNotRevealedUri);
  }

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

  // public
  function mint(uint256 _mintAmount) public payable {
    require(!paused, "the contract is paused");
    uint256 supply = totalSupply();
    require(_mintAmount > 0, "need to mint at least 1 NFT");
    require(supply + _mintAmount <= maxSupply, "max NFT limit exceeded");
    
    uint256 ownerMintedCount = addressMintedBalance[msg.sender];
    require(ownerMintedCount + _mintAmount <= nftPerAddressLimit, "max NFT per address exceeded");
    
    uint256 ownerTokenCount = balanceOf(msg.sender);
    require(
        _mintAmount > 0 && ownerTokenCount + _mintAmount <= maxMintAmount,
        "COUNT_INVALID"
    );

    if (msg.sender != owner()) {
        if(onlyWhitelisted == true) {
            require(isWhitelisted(msg.sender), "user is not whitelisted");
        }
        require(msg.value >= cost * _mintAmount, "insufficient funds");
    }

    for (uint256 i = 1; i <= _mintAmount; i++) {
      addressMintedBalance[msg.sender]++;
      _safeMint(msg.sender, supply + i);
    }
  }
  
  function isWhitelisted(address _user) public view returns (bool) {
    for (uint i = 0; i < whitelistedAddresses.length; i++) {
      if (whitelistedAddresses[i] == _user) {
          return true;
      }
    }
    return false;
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](ownerTokenCount);
    for (uint256 i; i < ownerTokenCount; i++) {
      tokenIds[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokenIds;
  }

  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );
    
    if(revealed == false) {
        return notRevealedUri;
    }

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

  //only owner
  function reveal() public onlyOwner {
      revealed = true;
  }
  
  function setNftPerAddressLimit(uint256 _limit) public onlyOwner {
    nftPerAddressLimit = _limit;
  }
  
  function setCost(uint256 _newCost) public onlyOwner {
    cost = _newCost;
  }

  function setmaxMintAmount(uint256 _newmaxMintAmount) public onlyOwner {
    maxMintAmount = _newmaxMintAmount;
  }

  function setBaseURI(string memory _newBaseURI) public onlyOwner {
    baseURI = _newBaseURI;
  }

  function setBaseExtension(string memory _newBaseExtension) public onlyOwner {
    baseExtension = _newBaseExtension;
  }
  
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedUri = _notRevealedURI;
  }

  function pause(bool _state) public onlyOwner {
    paused = _state;
  }
  
  function setOnlyWhitelisted(bool _state) public onlyOwner {
    onlyWhitelisted = _state;
  }
  
  function whitelistUsers(address[] calldata _users) public onlyOwner {
    delete whitelistedAddresses;
    whitelistedAddresses = _users;
  }
 
  function withdraw() public payable onlyOwner {
    // This will pay DAO 5% of the initial sale.
    (bool hs, ) = payable(0x2577ABBCaB0f893303b397C62658eD7AEB7F7A87).call{value: address(this).balance * 5 / 100}("");
    require(hs);
    // =============================================================================
    // This will payout the Team 95% of the contract balance.
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  function transferFrom(address from, address to, uint256 tokenId) public override {
        super.transferFrom(from, to, tokenId);

        transferred[from] = true;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"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":"notRevealedUri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseExtension","type":"string"}],"name":"setBaseExtension","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_limit","type":"uint256"}],"name":"setNftPerAddressLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOnlyWhitelisted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"whitelistUsers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"whitelistedAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c06040526005608081905264173539b7b760d91b60a09081526200002891600c919062000219565b5066b1a2bc2ec50000600e556115b3600f55600560108190556011556012805462ffffff1916620100001790553480156200006257600080fd5b50604051620031dd380380620031dd83398101604081905262000085916200036a565b8351849084906200009e90600090602085019062000219565b508051620000b490600190602084019062000219565b505050620000d1620000cb620000f160201b60201c565b620000f5565b620000dc8262000147565b620000e781620001af565b50505050620004a6565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b62000151620000f1565b6001600160a01b0316620001646200020a565b6001600160a01b031614620001965760405162461bcd60e51b81526004016200018d906200041e565b60405180910390fd5b8051620001ab90600b90602084019062000219565b5050565b620001b9620000f1565b6001600160a01b0316620001cc6200020a565b6001600160a01b031614620001f55760405162461bcd60e51b81526004016200018d906200041e565b8051620001ab90600d90602084019062000219565b600a546001600160a01b031690565b828054620002279062000453565b90600052602060002090601f0160209004810192826200024b576000855562000296565b82601f106200026657805160ff191683800117855562000296565b8280016001018555821562000296579182015b828111156200029657825182559160200191906001019062000279565b50620002a4929150620002a8565b5090565b5b80821115620002a45760008155600101620002a9565b600082601f830112620002d0578081fd5b81516001600160401b0380821115620002ed57620002ed62000490565b6040516020601f8401601f191682018101838111838210171562000315576200031562000490565b60405283825285840181018710156200032c578485fd5b8492505b838310156200034f578583018101518284018201529182019162000330565b838311156200036057848185840101525b5095945050505050565b6000806000806080858703121562000380578384fd5b84516001600160401b038082111562000397578586fd5b620003a588838901620002bf565b95506020870151915080821115620003bb578485fd5b620003c988838901620002bf565b94506040870151915080821115620003df578384fd5b620003ed88838901620002bf565b9350606087015191508082111562000403578283fd5b506200041287828801620002bf565b91505092959194509250565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6002810460018216806200046857607f821691505b602082108114156200048a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612d2780620004b66000396000f3fe6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d5abeb011161007a578063d5abeb01146106ae578063da3ef23f146106c3578063e985e9c5146106e3578063edec5f2714610703578063f2c4ce1e14610723578063f2fde38b1461074357610267565b8063ba4e5c4914610624578063ba7d2c7614610644578063c668286214610659578063c87b56dd1461066e578063d0eb26b01461068e57610267565b806395d89b411161010857806395d89b41146105925780639c70b512146105a7578063a0712d68146105bc578063a22cb465146105cf578063a475b5dd146105ef578063b88d4fde1461060457610267565b80636c0360eb1461051357806370a0823114610528578063715018a6146105485780637f00c7a61461055d5780638da5cb5b1461057d57610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a146104695780634f6ccce71461048957806351830227146104a957806355f804b3146104be5780635c975abb146104de5780636352211e146104f357610267565b80633af32abf146103d45780633c952764146103f45780633ccfd60b1461041457806342842e0e1461041c578063438b63001461043c57610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a578063239c70ae1461037f57806323b872dd146103945780632f745c59146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046122fd565b610763565b6040516102999190612519565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046122e3565b610790565b005b3480156102d057600080fd5b506102d96107eb565b6040516102999190612524565b3480156102f257600080fd5b5061030661030136600461237b565b61087d565b6040516102999190612484565b34801561031f57600080fd5b506102d96108c0565b34801561033457600080fd5b506102c261034336600461224b565b61094e565b34801561035457600080fd5b5061035d6109e6565b6040516102999190612b8c565b34801561037657600080fd5b5061035d6109ec565b34801561038b57600080fd5b5061035d6109f2565b3480156103a057600080fd5b506102c26103af36600461216e565b6109f8565b3480156103c057600080fd5b5061035d6103cf36600461224b565b610a29565b3480156103e057600080fd5b5061028c6103ef366004612122565b610a7b565b34801561040057600080fd5b506102c261040f3660046122e3565b610af4565b6102c2610b4f565b34801561042857600080fd5b506102c261043736600461216e565b610c8c565b34801561044857600080fd5b5061045c610457366004612122565b610ca7565b60405161029991906124d5565b34801561047557600080fd5b506102c261048436600461237b565b610d65565b34801561049557600080fd5b5061035d6104a436600461237b565b610da9565b3480156104b557600080fd5b5061028c610e04565b3480156104ca57600080fd5b506102c26104d9366004612335565b610e12565b3480156104ea57600080fd5b5061028c610e64565b3480156104ff57600080fd5b5061030661050e36600461237b565b610e6d565b34801561051f57600080fd5b506102d9610ea2565b34801561053457600080fd5b5061035d610543366004612122565b610eaf565b34801561055457600080fd5b506102c2610ef3565b34801561056957600080fd5b506102c261057836600461237b565b610f3e565b34801561058957600080fd5b50610306610f82565b34801561059e57600080fd5b506102d9610f91565b3480156105b357600080fd5b5061028c610fa0565b6102c26105ca36600461237b565b610faf565b3480156105db57600080fd5b506102c26105ea366004612222565b611187565b3480156105fb57600080fd5b506102c2611255565b34801561061057600080fd5b506102c261061f3660046121a9565b6112a5565b34801561063057600080fd5b5061030661063f36600461237b565b6112e4565b34801561065057600080fd5b5061035d61130e565b34801561066557600080fd5b506102d9611314565b34801561067a57600080fd5b506102d961068936600461237b565b611321565b34801561069a57600080fd5b506102c26106a936600461237b565b611448565b3480156106ba57600080fd5b5061035d61148c565b3480156106cf57600080fd5b506102c26106de366004612335565b611492565b3480156106ef57600080fd5b5061028c6106fe36600461213c565b6114e4565b34801561070f57600080fd5b506102c261071e366004612274565b611512565b34801561072f57600080fd5b506102c261073e366004612335565b611569565b34801561074f57600080fd5b506102c261075e366004612122565b6115bb565b60006001600160e01b0319821663780e9d6360e01b148061078857506107888261162c565b90505b919050565b61079861166c565b6001600160a01b03166107a9610f82565b6001600160a01b0316146107d85760405162461bcd60e51b81526004016107cf906128f0565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107fa90612c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612c2f565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611670565b6108a45760405162461bcd60e51b81526004016107cf906128a4565b506000908152600460205260409020546001600160a01b031690565b600d80546108cd90612c2f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990612c2f565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b505050505081565b600061095982610e6d565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b81526004016107cf906129ed565b806001600160a01b031661099f61166c565b6001600160a01b031614806109bb57506109bb816106fe61166c565b6109d75760405162461bcd60e51b81526004016107cf9061274f565b6109e1838361168d565b505050565b600e5481565b60085490565b60105481565b610a038383836116fb565b50506001600160a01b03166000908152601560205260409020805460ff19166001179055565b6000610a3483610eaf565b8210610a525760405162461bcd60e51b81526004016107cf90612537565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610aeb57826001600160a01b031660138281548110610ab457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ad957600191505061078b565b80610ae381612c6a565b915050610a7f565b50600092915050565b610afc61166c565b6001600160a01b0316610b0d610f82565b6001600160a01b031614610b335760405162461bcd60e51b81526004016107cf906128f0565b60128054911515620100000262ff000019909216919091179055565b610b5761166c565b6001600160a01b0316610b68610f82565b6001600160a01b031614610b8e5760405162461bcd60e51b81526004016107cf906128f0565b6000732577abbcab0f893303b397c62658ed7aeb7f7a876064610bb2476005612bcd565b610bbc9190612bb9565b604051610bc890612481565b60006040518083038185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c1857600080fd5b6000610c22610f82565b6001600160a01b031647604051610c3890612481565b60006040518083038185875af1925050503d8060008114610c75576040519150601f19603f3d011682016040523d82523d6000602084013e610c7a565b606091505b5050905080610c8857600080fd5b5050565b6109e1838383604051806020016040528060008152506112a5565b60606000610cb483610eaf565b905060008167ffffffffffffffff811115610cdf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d08578160200160208202803683370190505b50905060005b82811015610d5d57610d208582610a29565b828281518110610d4057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d5581612c6a565b915050610d0e565b509392505050565b610d6d61166c565b6001600160a01b0316610d7e610f82565b6001600160a01b031614610da45760405162461bcd60e51b81526004016107cf906128f0565b600e55565b6000610db36109ec565b8210610dd15760405162461bcd60e51b81526004016107cf90612aab565b60088281548110610df257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601254610100900460ff1681565b610e1a61166c565b6001600160a01b0316610e2b610f82565b6001600160a01b031614610e515760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600b906020840190611f81565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806107885760405162461bcd60e51b81526004016107cf906127f6565b600b80546108cd90612c2f565b60006001600160a01b038216610ed75760405162461bcd60e51b81526004016107cf906127ac565b506001600160a01b031660009081526003602052604090205490565b610efb61166c565b6001600160a01b0316610f0c610f82565b6001600160a01b031614610f325760405162461bcd60e51b81526004016107cf906128f0565b610f3c6000611733565b565b610f4661166c565b6001600160a01b0316610f57610f82565b6001600160a01b031614610f7d5760405162461bcd60e51b81526004016107cf906128f0565b601055565b600a546001600160a01b031690565b6060600180546107fa90612c2f565b60125462010000900460ff1681565b60125460ff1615610fd25760405162461bcd60e51b81526004016107cf90612925565b6000610fdc6109ec565b905060008211610ffe5760405162461bcd60e51b81526004016107cf90612b55565b600f5461100b8383612ba1565b11156110295760405162461bcd60e51b81526004016107cf9061283f565b336000908152601460205260409020546011546110468483612ba1565b11156110645760405162461bcd60e51b81526004016107cf90612651565b600061106f33610eaf565b905060008411801561108c57506010546110898583612ba1565b11155b6110a85760405162461bcd60e51b81526004016107cf90612b2e565b6110b0610f82565b6001600160a01b0316336001600160a01b0316146111305760125462010000900460ff16151560011415611103576110e733610a7b565b6111035760405162461bcd60e51b81526004016107cf90612af7565b83600e546111119190612bcd565b3410156111305760405162461bcd60e51b81526004016107cf90612a2e565b60015b8481116111805733600090815260146020526040812080549161115583612c6a565b9091555061116e9050336111698387612ba1565b611785565b8061117881612c6a565b915050611133565b5050505050565b61118f61166c565b6001600160a01b0316826001600160a01b031614156111c05760405162461bcd60e51b81526004016107cf906126cc565b80600560006111cd61166c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561121161166c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112499190612519565b60405180910390a35050565b61125d61166c565b6001600160a01b031661126e610f82565b6001600160a01b0316146112945760405162461bcd60e51b81526004016107cf906128f0565b6012805461ff001916610100179055565b6112b66112b061166c565b8361179f565b6112d25760405162461bcd60e51b81526004016107cf90612a5a565b6112de84848484611824565b50505050565b601381815481106112f457600080fd5b6000918252602090912001546001600160a01b0316905081565b60115481565b600c80546108cd90612c2f565b606061132c82611670565b6113485760405162461bcd60e51b81526004016107cf9061299e565b601254610100900460ff166113e957600d805461136490612c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461139090612c2f565b80156113dd5780601f106113b2576101008083540402835291602001916113dd565b820191906000526020600020905b8154815290600101906020018083116113c057829003601f168201915b5050505050905061078b565b60006113f3611857565b905060008151116114135760405180602001604052806000815250611441565b8061141d84611866565b600c604051602001611431939291906123bf565b6040516020818303038152906040525b9392505050565b61145061166c565b6001600160a01b0316611461610f82565b6001600160a01b0316146114875760405162461bcd60e51b81526004016107cf906128f0565b601155565b600f5481565b61149a61166c565b6001600160a01b03166114ab610f82565b6001600160a01b0316146114d15760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600c906020840190611f81565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61151a61166c565b6001600160a01b031661152b610f82565b6001600160a01b0316146115515760405162461bcd60e51b81526004016107cf906128f0565b61155d60136000612005565b6109e160138383612023565b61157161166c565b6001600160a01b0316611582610f82565b6001600160a01b0316146115a85760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600d906020840190611f81565b6115c361166c565b6001600160a01b03166115d4610f82565b6001600160a01b0316146115fa5760405162461bcd60e51b81526004016107cf906128f0565b6001600160a01b0381166116205760405162461bcd60e51b81526004016107cf906125d4565b61162981611733565b50565b60006001600160e01b031982166380ac58cd60e01b148061165d57506001600160e01b03198216635b5e139f60e01b145b80610788575061078882611981565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116c282610e6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61170c61170661166c565b8261179f565b6117285760405162461bcd60e51b81526004016107cf90612a5a565b6109e183838361199a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c88828260405180602001604052806000815250611ac7565b60006117aa82611670565b6117c65760405162461bcd60e51b81526004016107cf90612703565b60006117d183610e6d565b9050806001600160a01b0316846001600160a01b0316148061180c5750836001600160a01b03166118018461087d565b6001600160a01b0316145b8061181c575061181c81856114e4565b949350505050565b61182f84848461199a565b61183b84848484611afa565b6112de5760405162461bcd60e51b81526004016107cf90612582565b6060600b80546107fa90612c2f565b60608161188b57506040805180820190915260018152600360fc1b602082015261078b565b8160005b81156118b5578061189f81612c6a565b91506118ae9050600a83612bb9565b915061188f565b60008167ffffffffffffffff8111156118de57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611908576020820181803683370190505b5090505b841561181c5761191d600183612bec565b915061192a600a86612c85565b611935906030612ba1565b60f81b81838151811061195857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061197a600a86612bb9565b945061190c565b6001600160e01b031981166301ffc9a760e01b14919050565b826001600160a01b03166119ad82610e6d565b6001600160a01b0316146119d35760405162461bcd60e51b81526004016107cf90612955565b6001600160a01b0382166119f95760405162461bcd60e51b81526004016107cf90612688565b611a04838383611c15565b611a0f60008261168d565b6001600160a01b0383166000908152600360205260408120805460019290611a38908490612bec565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a66908490612ba1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ad18383611c9e565b611ade6000848484611afa565b6109e15760405162461bcd60e51b81526004016107cf90612582565b6000611b0e846001600160a01b0316611d7d565b15611c0a57836001600160a01b031663150b7a02611b2a61166c565b8786866040518563ffffffff1660e01b8152600401611b4c9493929190612498565b602060405180830381600087803b158015611b6657600080fd5b505af1925050508015611b96575060408051601f3d908101601f19168201909252611b9391810190612319565b60015b611bf0573d808015611bc4576040519150601f19603f3d011682016040523d82523d6000602084013e611bc9565b606091505b508051611be85760405162461bcd60e51b81526004016107cf90612582565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181c565b506001949350505050565b611c208383836109e1565b6001600160a01b038316611c3c57611c3781611d83565b611c5f565b816001600160a01b0316836001600160a01b031614611c5f57611c5f8382611dc7565b6001600160a01b038216611c7b57611c7681611e64565b6109e1565b826001600160a01b0316826001600160a01b0316146109e1576109e18282611f3d565b6001600160a01b038216611cc45760405162461bcd60e51b81526004016107cf9061286f565b611ccd81611670565b15611cea5760405162461bcd60e51b81526004016107cf9061261a565b611cf660008383611c15565b6001600160a01b0382166000908152600360205260408120805460019290611d1f908490612ba1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611dd484610eaf565b611dde9190612bec565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e7690600190612bec565b60008381526009602052604081205460088054939450909284908110611eac57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611edb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f4883610eaf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f8d90612c2f565b90600052602060002090601f016020900481019282611faf5760008555611ff5565b82601f10611fc857805160ff1916838001178555611ff5565b82800160010185558215611ff5579182015b82811115611ff5578251825591602001919060010190611fda565b50612001929150612076565b5090565b50805460008255906000526020600020908101906116299190612076565b828054828255906000526020600020908101928215611ff5579160200282015b82811115611ff55781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612043565b5b808211156120015760008155600101612077565b600067ffffffffffffffff808411156120a6576120a6612cc5565b604051601f8501601f1916810160200182811182821017156120ca576120ca612cc5565b6040528481529150818385018610156120e257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461078b57600080fd5b8035801515811461078b57600080fd5b600060208284031215612133578081fd5b611441826120fb565b6000806040838503121561214e578081fd5b612157836120fb565b9150612165602084016120fb565b90509250929050565b600080600060608486031215612182578081fd5b61218b846120fb565b9250612199602085016120fb565b9150604084013590509250925092565b600080600080608085870312156121be578081fd5b6121c7856120fb565b93506121d5602086016120fb565b925060408501359150606085013567ffffffffffffffff8111156121f7578182fd5b8501601f81018713612207578182fd5b6122168782356020840161208b565b91505092959194509250565b60008060408385031215612234578182fd5b61223d836120fb565b915061216560208401612112565b6000806040838503121561225d578182fd5b612266836120fb565b946020939093013593505050565b60008060208385031215612286578182fd5b823567ffffffffffffffff8082111561229d578384fd5b818501915085601f8301126122b0578384fd5b8135818111156122be578485fd5b86602080830285010111156122d1578485fd5b60209290920196919550909350505050565b6000602082840312156122f4578081fd5b61144182612112565b60006020828403121561230e578081fd5b813561144181612cdb565b60006020828403121561232a578081fd5b815161144181612cdb565b600060208284031215612346578081fd5b813567ffffffffffffffff81111561235c578182fd5b8201601f8101841361236c578182fd5b61181c8482356020840161208b565b60006020828403121561238c578081fd5b5035919050565b600081518084526123ab816020860160208601612c03565b601f01601f19169290920160200192915050565b6000845160206123d28285838a01612c03565b8551918401916123e58184848a01612c03565b855492019183906002810460018083168061240157607f831692505b85831081141561241f57634e487b7160e01b88526022600452602488fd5b808015612433576001811461244457612470565b60ff19851688528388019550612470565b61244d8b612b95565b895b858110156124685781548a82015290840190880161244f565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124cb90830184612393565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561250d578351835292840192918401916001016124f1565b50909695505050505050565b901515815260200190565b6000602082526114416020830184612393565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252600d908201526c10d3d5539517d2539590531251609a1b604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612bb457612bb4612c99565b500190565b600082612bc857612bc8612caf565b500490565b6000816000190483118215151615612be757612be7612c99565b500290565b600082821015612bfe57612bfe612c99565b500390565b60005b83811015612c1e578181015183820152602001612c06565b838111156112de5750506000910152565b600281046001821680612c4357607f821691505b60208210811415612c6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c7e57612c7e612c99565b5060010190565b600082612c9457612c94612caf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461162957600080fdfea2646970667358221220103082cd3eea9b443fd32dbc36adfb6e41864a07badc93ffd6eafc284776de3a64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000074c69726e6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c69726e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a71374e426234314761674255525278353143454e454e3134633748464d32777746786b57524d6f5159642f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d646b7a375153766a76346d554451434634446f5a5350684d44314e5337454e666353637934627156456574362f7965746d6574612e6a736f6e000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80636c0360eb11610144578063ba4e5c49116100b6578063d5abeb011161007a578063d5abeb01146106ae578063da3ef23f146106c3578063e985e9c5146106e3578063edec5f2714610703578063f2c4ce1e14610723578063f2fde38b1461074357610267565b8063ba4e5c4914610624578063ba7d2c7614610644578063c668286214610659578063c87b56dd1461066e578063d0eb26b01461068e57610267565b806395d89b411161010857806395d89b41146105925780639c70b512146105a7578063a0712d68146105bc578063a22cb465146105cf578063a475b5dd146105ef578063b88d4fde1461060457610267565b80636c0360eb1461051357806370a0823114610528578063715018a6146105485780637f00c7a61461055d5780638da5cb5b1461057d57610267565b80633af32abf116101dd57806344a0d68a116101a157806344a0d68a146104695780634f6ccce71461048957806351830227146104a957806355f804b3146104be5780635c975abb146104de5780636352211e146104f357610267565b80633af32abf146103d45780633c952764146103f45780633ccfd60b1461041457806342842e0e1461041c578063438b63001461043c57610267565b8063095ea7b31161022f578063095ea7b31461032857806313faede61461034857806318160ddd1461036a578063239c70ae1461037f57806323b872dd146103945780632f745c59146103b457610267565b806301ffc9a71461026c57806302329a29146102a257806306fdde03146102c4578063081812fc146102e6578063081c8c4414610313575b600080fd5b34801561027857600080fd5b5061028c6102873660046122fd565b610763565b6040516102999190612519565b60405180910390f35b3480156102ae57600080fd5b506102c26102bd3660046122e3565b610790565b005b3480156102d057600080fd5b506102d96107eb565b6040516102999190612524565b3480156102f257600080fd5b5061030661030136600461237b565b61087d565b6040516102999190612484565b34801561031f57600080fd5b506102d96108c0565b34801561033457600080fd5b506102c261034336600461224b565b61094e565b34801561035457600080fd5b5061035d6109e6565b6040516102999190612b8c565b34801561037657600080fd5b5061035d6109ec565b34801561038b57600080fd5b5061035d6109f2565b3480156103a057600080fd5b506102c26103af36600461216e565b6109f8565b3480156103c057600080fd5b5061035d6103cf36600461224b565b610a29565b3480156103e057600080fd5b5061028c6103ef366004612122565b610a7b565b34801561040057600080fd5b506102c261040f3660046122e3565b610af4565b6102c2610b4f565b34801561042857600080fd5b506102c261043736600461216e565b610c8c565b34801561044857600080fd5b5061045c610457366004612122565b610ca7565b60405161029991906124d5565b34801561047557600080fd5b506102c261048436600461237b565b610d65565b34801561049557600080fd5b5061035d6104a436600461237b565b610da9565b3480156104b557600080fd5b5061028c610e04565b3480156104ca57600080fd5b506102c26104d9366004612335565b610e12565b3480156104ea57600080fd5b5061028c610e64565b3480156104ff57600080fd5b5061030661050e36600461237b565b610e6d565b34801561051f57600080fd5b506102d9610ea2565b34801561053457600080fd5b5061035d610543366004612122565b610eaf565b34801561055457600080fd5b506102c2610ef3565b34801561056957600080fd5b506102c261057836600461237b565b610f3e565b34801561058957600080fd5b50610306610f82565b34801561059e57600080fd5b506102d9610f91565b3480156105b357600080fd5b5061028c610fa0565b6102c26105ca36600461237b565b610faf565b3480156105db57600080fd5b506102c26105ea366004612222565b611187565b3480156105fb57600080fd5b506102c2611255565b34801561061057600080fd5b506102c261061f3660046121a9565b6112a5565b34801561063057600080fd5b5061030661063f36600461237b565b6112e4565b34801561065057600080fd5b5061035d61130e565b34801561066557600080fd5b506102d9611314565b34801561067a57600080fd5b506102d961068936600461237b565b611321565b34801561069a57600080fd5b506102c26106a936600461237b565b611448565b3480156106ba57600080fd5b5061035d61148c565b3480156106cf57600080fd5b506102c26106de366004612335565b611492565b3480156106ef57600080fd5b5061028c6106fe36600461213c565b6114e4565b34801561070f57600080fd5b506102c261071e366004612274565b611512565b34801561072f57600080fd5b506102c261073e366004612335565b611569565b34801561074f57600080fd5b506102c261075e366004612122565b6115bb565b60006001600160e01b0319821663780e9d6360e01b148061078857506107888261162c565b90505b919050565b61079861166c565b6001600160a01b03166107a9610f82565b6001600160a01b0316146107d85760405162461bcd60e51b81526004016107cf906128f0565b60405180910390fd5b6012805460ff1916911515919091179055565b6060600080546107fa90612c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461082690612c2f565b80156108735780601f1061084857610100808354040283529160200191610873565b820191906000526020600020905b81548152906001019060200180831161085657829003601f168201915b5050505050905090565b600061088882611670565b6108a45760405162461bcd60e51b81526004016107cf906128a4565b506000908152600460205260409020546001600160a01b031690565b600d80546108cd90612c2f565b80601f01602080910402602001604051908101604052809291908181526020018280546108f990612c2f565b80156109465780601f1061091b57610100808354040283529160200191610946565b820191906000526020600020905b81548152906001019060200180831161092957829003601f168201915b505050505081565b600061095982610e6d565b9050806001600160a01b0316836001600160a01b0316141561098d5760405162461bcd60e51b81526004016107cf906129ed565b806001600160a01b031661099f61166c565b6001600160a01b031614806109bb57506109bb816106fe61166c565b6109d75760405162461bcd60e51b81526004016107cf9061274f565b6109e1838361168d565b505050565b600e5481565b60085490565b60105481565b610a038383836116fb565b50506001600160a01b03166000908152601560205260409020805460ff19166001179055565b6000610a3483610eaf565b8210610a525760405162461bcd60e51b81526004016107cf90612537565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b6000805b601354811015610aeb57826001600160a01b031660138281548110610ab457634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03161415610ad957600191505061078b565b80610ae381612c6a565b915050610a7f565b50600092915050565b610afc61166c565b6001600160a01b0316610b0d610f82565b6001600160a01b031614610b335760405162461bcd60e51b81526004016107cf906128f0565b60128054911515620100000262ff000019909216919091179055565b610b5761166c565b6001600160a01b0316610b68610f82565b6001600160a01b031614610b8e5760405162461bcd60e51b81526004016107cf906128f0565b6000732577abbcab0f893303b397c62658ed7aeb7f7a876064610bb2476005612bcd565b610bbc9190612bb9565b604051610bc890612481565b60006040518083038185875af1925050503d8060008114610c05576040519150601f19603f3d011682016040523d82523d6000602084013e610c0a565b606091505b5050905080610c1857600080fd5b6000610c22610f82565b6001600160a01b031647604051610c3890612481565b60006040518083038185875af1925050503d8060008114610c75576040519150601f19603f3d011682016040523d82523d6000602084013e610c7a565b606091505b5050905080610c8857600080fd5b5050565b6109e1838383604051806020016040528060008152506112a5565b60606000610cb483610eaf565b905060008167ffffffffffffffff811115610cdf57634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610d08578160200160208202803683370190505b50905060005b82811015610d5d57610d208582610a29565b828281518110610d4057634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610d5581612c6a565b915050610d0e565b509392505050565b610d6d61166c565b6001600160a01b0316610d7e610f82565b6001600160a01b031614610da45760405162461bcd60e51b81526004016107cf906128f0565b600e55565b6000610db36109ec565b8210610dd15760405162461bcd60e51b81526004016107cf90612aab565b60088281548110610df257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b601254610100900460ff1681565b610e1a61166c565b6001600160a01b0316610e2b610f82565b6001600160a01b031614610e515760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600b906020840190611f81565b60125460ff1681565b6000818152600260205260408120546001600160a01b0316806107885760405162461bcd60e51b81526004016107cf906127f6565b600b80546108cd90612c2f565b60006001600160a01b038216610ed75760405162461bcd60e51b81526004016107cf906127ac565b506001600160a01b031660009081526003602052604090205490565b610efb61166c565b6001600160a01b0316610f0c610f82565b6001600160a01b031614610f325760405162461bcd60e51b81526004016107cf906128f0565b610f3c6000611733565b565b610f4661166c565b6001600160a01b0316610f57610f82565b6001600160a01b031614610f7d5760405162461bcd60e51b81526004016107cf906128f0565b601055565b600a546001600160a01b031690565b6060600180546107fa90612c2f565b60125462010000900460ff1681565b60125460ff1615610fd25760405162461bcd60e51b81526004016107cf90612925565b6000610fdc6109ec565b905060008211610ffe5760405162461bcd60e51b81526004016107cf90612b55565b600f5461100b8383612ba1565b11156110295760405162461bcd60e51b81526004016107cf9061283f565b336000908152601460205260409020546011546110468483612ba1565b11156110645760405162461bcd60e51b81526004016107cf90612651565b600061106f33610eaf565b905060008411801561108c57506010546110898583612ba1565b11155b6110a85760405162461bcd60e51b81526004016107cf90612b2e565b6110b0610f82565b6001600160a01b0316336001600160a01b0316146111305760125462010000900460ff16151560011415611103576110e733610a7b565b6111035760405162461bcd60e51b81526004016107cf90612af7565b83600e546111119190612bcd565b3410156111305760405162461bcd60e51b81526004016107cf90612a2e565b60015b8481116111805733600090815260146020526040812080549161115583612c6a565b9091555061116e9050336111698387612ba1565b611785565b8061117881612c6a565b915050611133565b5050505050565b61118f61166c565b6001600160a01b0316826001600160a01b031614156111c05760405162461bcd60e51b81526004016107cf906126cc565b80600560006111cd61166c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561121161166c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516112499190612519565b60405180910390a35050565b61125d61166c565b6001600160a01b031661126e610f82565b6001600160a01b0316146112945760405162461bcd60e51b81526004016107cf906128f0565b6012805461ff001916610100179055565b6112b66112b061166c565b8361179f565b6112d25760405162461bcd60e51b81526004016107cf90612a5a565b6112de84848484611824565b50505050565b601381815481106112f457600080fd5b6000918252602090912001546001600160a01b0316905081565b60115481565b600c80546108cd90612c2f565b606061132c82611670565b6113485760405162461bcd60e51b81526004016107cf9061299e565b601254610100900460ff166113e957600d805461136490612c2f565b80601f016020809104026020016040519081016040528092919081815260200182805461139090612c2f565b80156113dd5780601f106113b2576101008083540402835291602001916113dd565b820191906000526020600020905b8154815290600101906020018083116113c057829003601f168201915b5050505050905061078b565b60006113f3611857565b905060008151116114135760405180602001604052806000815250611441565b8061141d84611866565b600c604051602001611431939291906123bf565b6040516020818303038152906040525b9392505050565b61145061166c565b6001600160a01b0316611461610f82565b6001600160a01b0316146114875760405162461bcd60e51b81526004016107cf906128f0565b601155565b600f5481565b61149a61166c565b6001600160a01b03166114ab610f82565b6001600160a01b0316146114d15760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600c906020840190611f81565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61151a61166c565b6001600160a01b031661152b610f82565b6001600160a01b0316146115515760405162461bcd60e51b81526004016107cf906128f0565b61155d60136000612005565b6109e160138383612023565b61157161166c565b6001600160a01b0316611582610f82565b6001600160a01b0316146115a85760405162461bcd60e51b81526004016107cf906128f0565b8051610c8890600d906020840190611f81565b6115c361166c565b6001600160a01b03166115d4610f82565b6001600160a01b0316146115fa5760405162461bcd60e51b81526004016107cf906128f0565b6001600160a01b0381166116205760405162461bcd60e51b81526004016107cf906125d4565b61162981611733565b50565b60006001600160e01b031982166380ac58cd60e01b148061165d57506001600160e01b03198216635b5e139f60e01b145b80610788575061078882611981565b3390565b6000908152600260205260409020546001600160a01b0316151590565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906116c282610e6d565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61170c61170661166c565b8261179f565b6117285760405162461bcd60e51b81526004016107cf90612a5a565b6109e183838361199a565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c88828260405180602001604052806000815250611ac7565b60006117aa82611670565b6117c65760405162461bcd60e51b81526004016107cf90612703565b60006117d183610e6d565b9050806001600160a01b0316846001600160a01b0316148061180c5750836001600160a01b03166118018461087d565b6001600160a01b0316145b8061181c575061181c81856114e4565b949350505050565b61182f84848461199a565b61183b84848484611afa565b6112de5760405162461bcd60e51b81526004016107cf90612582565b6060600b80546107fa90612c2f565b60608161188b57506040805180820190915260018152600360fc1b602082015261078b565b8160005b81156118b5578061189f81612c6a565b91506118ae9050600a83612bb9565b915061188f565b60008167ffffffffffffffff8111156118de57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611908576020820181803683370190505b5090505b841561181c5761191d600183612bec565b915061192a600a86612c85565b611935906030612ba1565b60f81b81838151811061195857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061197a600a86612bb9565b945061190c565b6001600160e01b031981166301ffc9a760e01b14919050565b826001600160a01b03166119ad82610e6d565b6001600160a01b0316146119d35760405162461bcd60e51b81526004016107cf90612955565b6001600160a01b0382166119f95760405162461bcd60e51b81526004016107cf90612688565b611a04838383611c15565b611a0f60008261168d565b6001600160a01b0383166000908152600360205260408120805460019290611a38908490612bec565b90915550506001600160a01b0382166000908152600360205260408120805460019290611a66908490612ba1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b611ad18383611c9e565b611ade6000848484611afa565b6109e15760405162461bcd60e51b81526004016107cf90612582565b6000611b0e846001600160a01b0316611d7d565b15611c0a57836001600160a01b031663150b7a02611b2a61166c565b8786866040518563ffffffff1660e01b8152600401611b4c9493929190612498565b602060405180830381600087803b158015611b6657600080fd5b505af1925050508015611b96575060408051601f3d908101601f19168201909252611b9391810190612319565b60015b611bf0573d808015611bc4576040519150601f19603f3d011682016040523d82523d6000602084013e611bc9565b606091505b508051611be85760405162461bcd60e51b81526004016107cf90612582565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061181c565b506001949350505050565b611c208383836109e1565b6001600160a01b038316611c3c57611c3781611d83565b611c5f565b816001600160a01b0316836001600160a01b031614611c5f57611c5f8382611dc7565b6001600160a01b038216611c7b57611c7681611e64565b6109e1565b826001600160a01b0316826001600160a01b0316146109e1576109e18282611f3d565b6001600160a01b038216611cc45760405162461bcd60e51b81526004016107cf9061286f565b611ccd81611670565b15611cea5760405162461bcd60e51b81526004016107cf9061261a565b611cf660008383611c15565b6001600160a01b0382166000908152600360205260408120805460019290611d1f908490612ba1565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b60006001611dd484610eaf565b611dde9190612bec565b600083815260076020526040902054909150808214611e31576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611e7690600190612bec565b60008381526009602052604081205460088054939450909284908110611eac57634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110611edb57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611f2157634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611f4883610eaf565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611f8d90612c2f565b90600052602060002090601f016020900481019282611faf5760008555611ff5565b82601f10611fc857805160ff1916838001178555611ff5565b82800160010185558215611ff5579182015b82811115611ff5578251825591602001919060010190611fda565b50612001929150612076565b5090565b50805460008255906000526020600020908101906116299190612076565b828054828255906000526020600020908101928215611ff5579160200282015b82811115611ff55781546001600160a01b0319166001600160a01b03843516178255602090920191600190910190612043565b5b808211156120015760008155600101612077565b600067ffffffffffffffff808411156120a6576120a6612cc5565b604051601f8501601f1916810160200182811182821017156120ca576120ca612cc5565b6040528481529150818385018610156120e257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b038116811461078b57600080fd5b8035801515811461078b57600080fd5b600060208284031215612133578081fd5b611441826120fb565b6000806040838503121561214e578081fd5b612157836120fb565b9150612165602084016120fb565b90509250929050565b600080600060608486031215612182578081fd5b61218b846120fb565b9250612199602085016120fb565b9150604084013590509250925092565b600080600080608085870312156121be578081fd5b6121c7856120fb565b93506121d5602086016120fb565b925060408501359150606085013567ffffffffffffffff8111156121f7578182fd5b8501601f81018713612207578182fd5b6122168782356020840161208b565b91505092959194509250565b60008060408385031215612234578182fd5b61223d836120fb565b915061216560208401612112565b6000806040838503121561225d578182fd5b612266836120fb565b946020939093013593505050565b60008060208385031215612286578182fd5b823567ffffffffffffffff8082111561229d578384fd5b818501915085601f8301126122b0578384fd5b8135818111156122be578485fd5b86602080830285010111156122d1578485fd5b60209290920196919550909350505050565b6000602082840312156122f4578081fd5b61144182612112565b60006020828403121561230e578081fd5b813561144181612cdb565b60006020828403121561232a578081fd5b815161144181612cdb565b600060208284031215612346578081fd5b813567ffffffffffffffff81111561235c578182fd5b8201601f8101841361236c578182fd5b61181c8482356020840161208b565b60006020828403121561238c578081fd5b5035919050565b600081518084526123ab816020860160208601612c03565b601f01601f19169290920160200192915050565b6000845160206123d28285838a01612c03565b8551918401916123e58184848a01612c03565b855492019183906002810460018083168061240157607f831692505b85831081141561241f57634e487b7160e01b88526022600452602488fd5b808015612433576001811461244457612470565b60ff19851688528388019550612470565b61244d8b612b95565b895b858110156124685781548a82015290840190880161244f565b505083880195505b50939b9a5050505050505050505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906124cb90830184612393565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561250d578351835292840192918401916001016124f1565b50909695505050505050565b901515815260200190565b6000602082526114416020830184612393565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252601c908201527f6d6178204e465420706572206164647265737320657863656564656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252601690820152751b585e08139195081b1a5b5a5d08195e18d95959195960521b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601690820152751d1a194818dbdb9d1c9858dd081a5cc81c185d5cd95960521b604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b602080825260129082015271696e73756666696369656e742066756e647360701b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b60208082526017908201527f75736572206973206e6f742077686974656c6973746564000000000000000000604082015260600190565b6020808252600d908201526c10d3d5539517d2539590531251609a1b604082015260600190565b6020808252601b908201527f6e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60009081526020902090565b60008219821115612bb457612bb4612c99565b500190565b600082612bc857612bc8612caf565b500490565b6000816000190483118215151615612be757612be7612c99565b500290565b600082821015612bfe57612bfe612c99565b500390565b60005b83811015612c1e578181015183820152602001612c06565b838111156112de5750506000910152565b600281046001821680612c4357607f821691505b60208210811415612c6457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c7e57612c7e612c99565b5060010190565b600082612c9457612c94612caf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461162957600080fdfea2646970667358221220103082cd3eea9b443fd32dbc36adfb6e41864a07badc93ffd6eafc284776de3a64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000000074c69726e6572730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000074c69726e657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d556a71374e426234314761674255525278353143454e454e3134633748464d32777746786b57524d6f5159642f000000000000000000000000000000000000000000000000000000000000000000000000000000000042697066733a2f2f516d646b7a375153766a76346d554451434634446f5a5350684d44314e5337454e666353637934627156456574362f7965746d6574612e6a736f6e000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Lirners
Arg [1] : _symbol (string): Lirners
Arg [2] : _initBaseURI (string): ipfs://QmUjq7NBb41GagBURRx51CENEN14c7HFM2wwFxkWRMoQYd/
Arg [3] : _initNotRevealedUri (string): ipfs://Qmdkz7QSvjv4mUDQCF4DoZSPhMD1NS7ENfcScy4bqVEet6/yetmeta.json

-----Encoded View---------------
15 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [5] : 4c69726e65727300000000000000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 4c69726e65727300000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [9] : 697066733a2f2f516d556a71374e426234314761674255525278353143454e45
Arg [10] : 4e3134633748464d32777746786b57524d6f5159642f00000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000042
Arg [12] : 697066733a2f2f516d646b7a375153766a76346d554451434634446f5a535068
Arg [13] : 4d44314e5337454e666353637934627156456574362f7965746d6574612e6a73
Arg [14] : 6f6e000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43261:4900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34769:224;;;;;;;;;;-1:-1:-1;34769:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47160:73;;;;;;;;;;-1:-1:-1;47160:73:0;;;;;:::i;:::-;;:::i;:::-;;22661:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24220:221::-;;;;;;;;;;-1:-1:-1;24220:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;43412:28::-;;;;;;;;;;;;;:::i;23743:411::-;;;;;;;;;;-1:-1:-1;23743:411:0;;;;;:::i;:::-;;:::i;43445:31::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;35409:113::-;;;;;;;;;;;;;:::i;43517:32::-;;;;;;;;;;;;;:::i;47984:174::-;;;;;;;;;;-1:-1:-1;47984:174:0;;;;;:::i;:::-;;:::i;35077:256::-;;;;;;;;;;-1:-1:-1;35077:256:0;;;;;:::i;:::-;;:::i;45289:239::-;;;;;;;;;;-1:-1:-1;45289:239:0;;;;;:::i;:::-;;:::i;47241:95::-;;;;;;;;;;-1:-1:-1;47241:95:0;;;;;:::i;:::-;;:::i;47495:483::-;;;:::i;25520:185::-;;;;;;;;;;-1:-1:-1;25520:185:0;;;;;:::i;:::-;;:::i;45534:348::-;;;;;;;;;;-1:-1:-1;45534:348:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;46592:80::-;;;;;;;;;;-1:-1:-1;46592:80:0;;;;;:::i;:::-;;:::i;35599:233::-;;;;;;;;;;-1:-1:-1;35599:233:0;;;;;:::i;:::-;;:::i;43627:28::-;;;;;;;;;;;;;:::i;46800:98::-;;;;;;;;;;-1:-1:-1;46800:98:0;;;;;:::i;:::-;;:::i;43596:26::-;;;;;;;;;;;;;:::i;22355:239::-;;;;;;;;;;-1:-1:-1;22355:239:0;;;;;:::i;:::-;;:::i;43344:21::-;;;;;;;;;;;;;:::i;22085:208::-;;;;;;;;;;-1:-1:-1;22085:208:0;;;;;:::i;:::-;;:::i;42558:94::-;;;;;;;;;;;;;:::i;46678:116::-;;;;;;;;;;-1:-1:-1;46678:116:0;;;;;:::i;:::-;;:::i;41907:87::-;;;;;;;;;;;;;:::i;22830:104::-;;;;;;;;;;;;;:::i;43660:34::-;;;;;;;;;;;;;:::i;44261:1020::-;;;;;;:::i;:::-;;:::i;24513:295::-;;;;;;;;;;-1:-1:-1;24513:295:0;;;;;:::i;:::-;;:::i;46407:65::-;;;;;;;;;;;;;:::i;25776:328::-;;;;;;;;;;-1:-1:-1;25776:328:0;;;;;:::i;:::-;;:::i;43699:37::-;;;;;;;;;;-1:-1:-1;43699:37:0;;;;;:::i;:::-;;:::i;43554:::-;;;;;;;;;;;;;:::i;43370:::-;;;;;;;;;;;;;:::i;45888:497::-;;;;;;;;;;-1:-1:-1;45888:497:0;;;;;:::i;:::-;;:::i;46480:104::-;;;;;;;;;;-1:-1:-1;46480:104:0;;;;;:::i;:::-;;:::i;43481:31::-;;;;;;;;;;;;;:::i;46904:122::-;;;;;;;;;;-1:-1:-1;46904:122:0;;;;;:::i;:::-;;:::i;24879:164::-;;;;;;;;;;-1:-1:-1;24879:164:0;;;;;:::i;:::-;;:::i;47344:144::-;;;;;;;;;;-1:-1:-1;47344:144:0;;;;;:::i;:::-;;:::i;47034:120::-;;;;;;;;;;-1:-1:-1;47034:120:0;;;;;:::i;:::-;;:::i;42807:192::-;;;;;;;;;;-1:-1:-1;42807:192:0;;;;;:::i;:::-;;:::i;34769:224::-;34871:4;-1:-1:-1;;;;;;34895:50:0;;-1:-1:-1;;;34895:50:0;;:90;;;34949:36;34973:11;34949:23;:36::i;:::-;34888:97;;34769:224;;;;:::o;47160:73::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;;;;;;;;;47212:6:::1;:15:::0;;-1:-1:-1;;47212:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47160:73::o;22661:100::-;22715:13;22748:5;22741:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22661:100;:::o;24220:221::-;24296:7;24324:16;24332:7;24324;:16::i;:::-;24316:73;;;;-1:-1:-1;;;24316:73:0;;;;;;;:::i;:::-;-1:-1:-1;24409:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24409:24:0;;24220:221::o;43412:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23743:411::-;23824:13;23840:23;23855:7;23840:14;:23::i;:::-;23824:39;;23888:5;-1:-1:-1;;;;;23882:11:0;:2;-1:-1:-1;;;;;23882:11:0;;;23874:57;;;;-1:-1:-1;;;23874:57:0;;;;;;;:::i;:::-;23982:5;-1:-1:-1;;;;;23966:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;23966:21:0;;:62;;;;23991:37;24008:5;24015:12;:10;:12::i;23991:37::-;23944:168;;;;-1:-1:-1;;;23944:168:0;;;;;;;:::i;:::-;24125:21;24134:2;24138:7;24125:8;:21::i;:::-;23743:411;;;:::o;43445:31::-;;;;:::o;35409:113::-;35497:10;:17;35409:113;:::o;43517:32::-;;;;:::o;47984:174::-;48076:37;48095:4;48101:2;48105:7;48076:18;:37::i;:::-;-1:-1:-1;;;;;;;48126:17:0;;;;;:11;:17;;;;;:24;;-1:-1:-1;;48126:24:0;48146:4;48126:24;;;47984:174::o;35077:256::-;35174:7;35210:23;35227:5;35210:16;:23::i;:::-;35202:5;:31;35194:87;;;;-1:-1:-1;;;35194:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;35299:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;35077:256::o;45289:239::-;45348:4;;45361:143;45382:20;:27;45378:31;;45361:143;;;45456:5;-1:-1:-1;;;;;45429:32:0;:20;45450:1;45429:23;;;;;;-1:-1:-1;;;45429:23:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;45429:23:0;:32;45425:72;;;45483:4;45476:11;;;;;45425:72;45411:3;;;;:::i;:::-;;;;45361:143;;;-1:-1:-1;45517:5:0;;45289:239;-1:-1:-1;;45289:239:0:o;47241:95::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;47306:15:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;47306:24:0;;::::1;::::0;;;::::1;::::0;;47241:95::o;47495:483::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;47598:7:::1;47619:42;47703:3;47675:25;:21;47699:1;47675:25;:::i;:::-;:31;;;;:::i;:::-;47611:100;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47597:114;;;47726:2;47718:11;;;::::0;::::1;;47886:7;47907;:5;:7::i;:::-;-1:-1:-1::0;;;;;47899:21:0::1;47928;47899:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47885:69;;;47969:2;47961:11;;;::::0;::::1;;42198:1;;47495:483::o:0;25520:185::-;25658:39;25675:4;25681:2;25685:7;25658:39;;;;;;;;;;;;:16;:39::i;45534:348::-;45609:16;45637:23;45663:17;45673:6;45663:9;:17::i;:::-;45637:43;;45687:25;45729:15;45715:30;;;;;;-1:-1:-1;;;45715:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45715:30:0;;45687:58;;45757:9;45752:103;45772:15;45768:1;:19;45752:103;;;45817:30;45837:6;45845:1;45817:19;:30::i;:::-;45803:8;45812:1;45803:11;;;;;;-1:-1:-1;;;45803:11:0;;;;;;;;;;;;;;;;;;:44;45789:3;;;;:::i;:::-;;;;45752:103;;;-1:-1:-1;45868:8:0;45534:348;-1:-1:-1;;;45534:348:0:o;46592:80::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46651:4:::1;:15:::0;46592:80::o;35599:233::-;35674:7;35710:30;:28;:30::i;:::-;35702:5;:38;35694:95;;;;-1:-1:-1;;;35694:95:0;;;;;;;:::i;:::-;35807:10;35818:5;35807:17;;;;;;-1:-1:-1;;;35807:17:0;;;;;;;;;;;;;;;;;35800:24;;35599:233;;;:::o;43627:28::-;;;;;;;;;:::o;46800:98::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46871:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;43596:26::-:0;;;;;;:::o;22355:239::-;22427:7;22463:16;;;:7;:16;;;;;;-1:-1:-1;;;;;22463:16:0;22498:19;22490:73;;;;-1:-1:-1;;;22490:73:0;;;;;;;:::i;43344:21::-;;;;;;;:::i;22085:208::-;22157:7;-1:-1:-1;;;;;22185:19:0;;22177:74;;;;-1:-1:-1;;;22177:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;22269:16:0;;;;;:9;:16;;;;;;;22085:208::o;42558:94::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;42623:21:::1;42641:1;42623:9;:21::i;:::-;42558:94::o:0;46678:116::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46755:13:::1;:33:::0;46678:116::o;41907:87::-;41980:6;;-1:-1:-1;;;;;41980:6:0;41907:87;:::o;22830:104::-;22886:13;22919:7;22912:14;;;;;:::i;43660:34::-;;;;;;;;;:::o;44261:1020::-;44327:6;;;;44326:7;44318:42;;;;-1:-1:-1;;;44318:42:0;;;;;;;:::i;:::-;44367:14;44384:13;:11;:13::i;:::-;44367:30;;44426:1;44412:11;:15;44404:55;;;;-1:-1:-1;;;44404:55:0;;;;;;;:::i;:::-;44498:9;;44474:20;44483:11;44474:6;:20;:::i;:::-;:33;;44466:68;;;;-1:-1:-1;;;44466:68:0;;;;;;;:::i;:::-;44595:10;44547:24;44574:32;;;:20;:32;;;;;;44655:18;;44621:30;44640:11;44574:32;44621:30;:::i;:::-;:52;;44613:93;;;;-1:-1:-1;;;44613:93:0;;;;;;;:::i;:::-;44719:23;44745:21;44755:10;44745:9;:21::i;:::-;44719:47;;44805:1;44791:11;:15;:65;;;;-1:-1:-1;44843:13:0;;44810:29;44828:11;44810:15;:29;:::i;:::-;:46;;44791:65;44773:116;;;;-1:-1:-1;;;44773:116:0;;;;;;;:::i;:::-;44916:7;:5;:7::i;:::-;-1:-1:-1;;;;;44902:21:0;:10;-1:-1:-1;;;;;44902:21:0;;44898:234;;44939:15;;;;;;;:23;;44958:4;44939:23;44936:116;;;44987:25;45001:10;44987:13;:25::i;:::-;44979:61;;;;-1:-1:-1;;;44979:61:0;;;;;;;:::i;:::-;45090:11;45083:4;;:18;;;;:::i;:::-;45070:9;:31;;45062:62;;;;-1:-1:-1;;;45062:62:0;;;;;;;:::i;:::-;45157:1;45140:136;45165:11;45160:1;:16;45140:136;;45213:10;45192:32;;;;:20;:32;;;;;:34;;;;;;:::i;:::-;;;;-1:-1:-1;45235:33:0;;-1:-1:-1;45245:10:0;45257;45266:1;45257:6;:10;:::i;:::-;45235:9;:33::i;:::-;45178:3;;;;:::i;:::-;;;;45140:136;;;;44261:1020;;;;:::o;24513:295::-;24628:12;:10;:12::i;:::-;-1:-1:-1;;;;;24616:24:0;:8;-1:-1:-1;;;;;24616:24:0;;;24608:62;;;;-1:-1:-1;;;24608:62:0;;;;;;;:::i;:::-;24728:8;24683:18;:32;24702:12;:10;:12::i;:::-;-1:-1:-1;;;;;24683:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;24683:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;24683:53:0;;;;;;;;;;;24767:12;:10;:12::i;:::-;-1:-1:-1;;;;;24752:48:0;;24791:8;24752:48;;;;;;:::i;:::-;;;;;;;;24513:295;;:::o;46407:65::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46451:8:::1;:15:::0;;-1:-1:-1;;46451:15:0::1;;;::::0;;46407:65::o;25776:328::-;25951:41;25970:12;:10;:12::i;:::-;25984:7;25951:18;:41::i;:::-;25943:103;;;;-1:-1:-1;;;25943:103:0;;;;;;;:::i;:::-;26057:39;26071:4;26077:2;26081:7;26090:5;26057:13;:39::i;:::-;25776:328;;;;:::o;43699:37::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;43699:37:0;;-1:-1:-1;43699:37:0;:::o;43554:::-;;;;:::o;43370:::-;;;;;;;:::i;45888:497::-;45986:13;46027:16;46035:7;46027;:16::i;:::-;46011:97;;;;-1:-1:-1;;;46011:97:0;;;;;;;:::i;:::-;46124:8;;;;;;;46121:62;;46161:14;46154:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46121:62;46191:28;46222:10;:8;:10::i;:::-;46191:41;;46277:1;46252:14;46246:28;:32;:133;;;;;;;;;;;;;;;;;46314:14;46330:18;:7;:16;:18::i;:::-;46350:13;46297:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46246:133;46239:140;45888:497;-1:-1:-1;;;45888:497:0:o;46480:104::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46551:18:::1;:27:::0;46480:104::o;43481:31::-;;;;:::o;46904:122::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;46987:33;;::::1;::::0;:13:::1;::::0;:33:::1;::::0;::::1;::::0;::::1;:::i;24879:164::-:0;-1:-1:-1;;;;;25000:25:0;;;24976:4;25000:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;24879:164::o;47344:144::-;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;47419:27:::1;47426:20;;47419:27;:::i;:::-;47453:29;:20;47476:6:::0;;47453:29:::1;:::i;47034:120::-:0;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;47116:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;42807:192::-:0;42138:12;:10;:12::i;:::-;-1:-1:-1;;;;;42127:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;42127:23:0;;42119:68;;;;-1:-1:-1;;;42119:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;42896:22:0;::::1;42888:73;;;;-1:-1:-1::0;;;42888:73:0::1;;;;;;;:::i;:::-;42972:19;42982:8;42972:9;:19::i;:::-;42807:192:::0;:::o;21716:305::-;21818:4;-1:-1:-1;;;;;;21855:40:0;;-1:-1:-1;;;21855:40:0;;:105;;-1:-1:-1;;;;;;;21912:48:0;;-1:-1:-1;;;21912:48:0;21855:105;:158;;;;21977:36;22001:11;21977:23;:36::i;20190:98::-;20270:10;20190:98;:::o;27614:127::-;27679:4;27703:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27703:16:0;:30;;;27614:127::o;31596:174::-;31671:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;31671:29:0;-1:-1:-1;;;;;31671:29:0;;;;;;;;:24;;31725:23;31671:24;31725:14;:23::i;:::-;-1:-1:-1;;;;;31716:46:0;;;;;;;;;;;31596:174;;:::o;25110:339::-;25305:41;25324:12;:10;:12::i;:::-;25338:7;25305:18;:41::i;:::-;25297:103;;;;-1:-1:-1;;;25297:103:0;;;;;;;:::i;:::-;25413:28;25423:4;25429:2;25433:7;25413:9;:28::i;43007:173::-;43082:6;;;-1:-1:-1;;;;;43099:17:0;;;-1:-1:-1;;;;;;43099:17:0;;;;;;;43132:40;;43082:6;;;43099:17;43082:6;;43132:40;;43063:16;;43132:40;43007:173;;:::o;28598:110::-;28674:26;28684:2;28688:7;28674:26;;;;;;;;;;;;:9;:26::i;27908:348::-;28001:4;28026:16;28034:7;28026;:16::i;:::-;28018:73;;;;-1:-1:-1;;;28018:73:0;;;;;;;:::i;:::-;28102:13;28118:23;28133:7;28118:14;:23::i;:::-;28102:39;;28171:5;-1:-1:-1;;;;;28160:16:0;:7;-1:-1:-1;;;;;28160:16:0;;:51;;;;28204:7;-1:-1:-1;;;;;28180:31:0;:20;28192:7;28180:11;:20::i;:::-;-1:-1:-1;;;;;28180:31:0;;28160:51;:87;;;;28215:32;28232:5;28239:7;28215:16;:32::i;:::-;28152:96;27908:348;-1:-1:-1;;;;27908:348:0:o;26986:315::-;27143:28;27153:4;27159:2;27163:7;27143:9;:28::i;:::-;27190:48;27213:4;27219:2;27223:7;27232:5;27190:22;:48::i;:::-;27182:111;;;;-1:-1:-1;;;27182:111:0;;;;;;;:::i;44140:102::-;44200:13;44229:7;44222:14;;;;;:::i;8022:723::-;8078:13;8299:10;8295:53;;-1:-1:-1;8326:10:0;;;;;;;;;;;;-1:-1:-1;;;8326:10:0;;;;;;8295:53;8373:5;8358:12;8414:78;8421:9;;8414:78;;8447:8;;;;:::i;:::-;;-1:-1:-1;8470:10:0;;-1:-1:-1;8478:2:0;8470:10;;:::i;:::-;;;8414:78;;;8502:19;8534:6;8524:17;;;;;;-1:-1:-1;;;8524:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;8524:17:0;;8502:39;;8552:154;8559:10;;8552:154;;8586:11;8596:1;8586:11;;:::i;:::-;;-1:-1:-1;8655:10:0;8663:2;8655:5;:10;:::i;:::-;8642:24;;:2;:24;:::i;:::-;8629:39;;8612:6;8619;8612:14;;;;;;-1:-1:-1;;;8612:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;8612:56:0;;;;;;;;-1:-1:-1;8683:11:0;8692:2;8683:11;;:::i;:::-;;;8552:154;;7547:157;-1:-1:-1;;;;;;7656:40:0;;-1:-1:-1;;;7656:40:0;7547:157;;;:::o;30900:578::-;31059:4;-1:-1:-1;;;;;31032:31:0;:23;31047:7;31032:14;:23::i;:::-;-1:-1:-1;;;;;31032:31:0;;31024:85;;;;-1:-1:-1;;;31024:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31128:16:0;;31120:65;;;;-1:-1:-1;;;31120:65:0;;;;;;;:::i;:::-;31198:39;31219:4;31225:2;31229:7;31198:20;:39::i;:::-;31302:29;31319:1;31323:7;31302:8;:29::i;:::-;-1:-1:-1;;;;;31344:15:0;;;;;;:9;:15;;;;;:20;;31363:1;;31344:15;:20;;31363:1;;31344:20;:::i;:::-;;;;-1:-1:-1;;;;;;;31375:13:0;;;;;;:9;:13;;;;;:18;;31392:1;;31375:13;:18;;31392:1;;31375:18;:::i;:::-;;;;-1:-1:-1;;31404:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31404:21:0;-1:-1:-1;;;;;31404:21:0;;;;;;;;;31443:27;;31404:16;;31443:27;;;;;;;30900:578;;;:::o;28935:321::-;29065:18;29071:2;29075:7;29065:5;:18::i;:::-;29116:54;29147:1;29151:2;29155:7;29164:5;29116:22;:54::i;:::-;29094:154;;;;-1:-1:-1;;;29094:154:0;;;;;;;:::i;32335:799::-;32490:4;32511:15;:2;-1:-1:-1;;;;;32511:13:0;;:15::i;:::-;32507:620;;;32563:2;-1:-1:-1;;;;;32547:36:0;;32584:12;:10;:12::i;:::-;32598:4;32604:7;32613:5;32547:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32547:72:0;;;;;;;;-1:-1:-1;;32547:72:0;;;;;;;;;;;;:::i;:::-;;;32543:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32789:13:0;;32785:272;;32832:60;;-1:-1:-1;;;32832:60:0;;;;;;;:::i;32785:272::-;33007:6;33001:13;32992:6;32988:2;32984:15;32977:38;32543:529;-1:-1:-1;;;;;;32670:51:0;-1:-1:-1;;;32670:51:0;;-1:-1:-1;32663:58:0;;32507:620;-1:-1:-1;33111:4:0;32335:799;;;;;;:::o;36445:589::-;36589:45;36616:4;36622:2;36626:7;36589:26;:45::i;:::-;-1:-1:-1;;;;;36651:18:0;;36647:187;;36686:40;36718:7;36686:31;:40::i;:::-;36647:187;;;36756:2;-1:-1:-1;;;;;36748:10:0;:4;-1:-1:-1;;;;;36748:10:0;;36744:90;;36775:47;36808:4;36814:7;36775:32;:47::i;:::-;-1:-1:-1;;;;;36848:16:0;;36844:183;;36881:45;36918:7;36881:36;:45::i;:::-;36844:183;;;36954:4;-1:-1:-1;;;;;36948:10:0;:2;-1:-1:-1;;;;;36948:10:0;;36944:83;;36975:40;37003:2;37007:7;36975:27;:40::i;29592:382::-;-1:-1:-1;;;;;29672:16:0;;29664:61;;;;-1:-1:-1;;;29664:61:0;;;;;;;:::i;:::-;29745:16;29753:7;29745;:16::i;:::-;29744:17;29736:58;;;;-1:-1:-1;;;29736:58:0;;;;;;;:::i;:::-;29807:45;29836:1;29840:2;29844:7;29807:20;:45::i;:::-;-1:-1:-1;;;;;29865:13:0;;;;;;:9;:13;;;;;:18;;29882:1;;29865:13;:18;;29882:1;;29865:18;:::i;:::-;;;;-1:-1:-1;;29894:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29894:21:0;-1:-1:-1;;;;;29894:21:0;;;;;;;;29933:33;;29894:16;;;29933:33;;29894:16;;29933:33;29592:382;;:::o;10547:387::-;10870:20;10918:8;;;10547:387::o;37757:164::-;37861:10;:17;;37834:24;;;;:15;:24;;;;;:44;;;37889:24;;;;;;;;;;;;37757:164::o;38548:988::-;38814:22;38864:1;38839:22;38856:4;38839:16;:22::i;:::-;:26;;;;:::i;:::-;38876:18;38897:26;;;:17;:26;;;;;;38814:51;;-1:-1:-1;39030:28:0;;;39026:328;;-1:-1:-1;;;;;39097:18:0;;39075:19;39097:18;;;:12;:18;;;;;;;;:34;;;;;;;;;39148:30;;;;;;:44;;;39265:30;;:17;:30;;;;;:43;;;39026:328;-1:-1:-1;39450:26:0;;;;:17;:26;;;;;;;;39443:33;;;-1:-1:-1;;;;;39494:18:0;;;;;:12;:18;;;;;:34;;;;;;;39487:41;38548:988::o;39831:1079::-;40109:10;:17;40084:22;;40109:21;;40129:1;;40109:21;:::i;:::-;40141:18;40162:24;;;:15;:24;;;;;;40535:10;:26;;40084:46;;-1:-1:-1;40162:24:0;;40084:46;;40535:26;;;;-1:-1:-1;;;40535:26:0;;;;;;;;;;;;;;;;;40513:48;;40599:11;40574:10;40585;40574:22;;;;;;-1:-1:-1;;;40574:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;40679:28;;;:15;:28;;;;;;;:41;;;40851:24;;;;;40844:31;40886:10;:16;;;;;-1:-1:-1;;;40886:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;39831:1079;;;;:::o;37335:221::-;37420:14;37437:20;37454:2;37437:16;:20::i;:::-;-1:-1:-1;;;;;37468:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;37513:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;37335:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:666::-;;;3200:2;3188:9;3179:7;3175:23;3171:32;3168:2;;;3221:6;3213;3206:22;3168:2;3266:9;3253:23;3295:18;3336:2;3328:6;3325:14;3322:2;;;3357:6;3349;3342:22;3322:2;3400:6;3389:9;3385:22;3375:32;;3445:7;3438:4;3434:2;3430:13;3426:27;3416:2;;3472:6;3464;3457:22;3416:2;3517;3504:16;3543:2;3535:6;3532:14;3529:2;;;3564:6;3556;3549:22;3529:2;3623:7;3618:2;3612;3604:6;3600:15;3596:2;3592:24;3588:33;3585:46;3582:2;;;3649:6;3641;3634:22;3582:2;3685;3677:11;;;;;3707:6;;-1:-1:-1;3158:561:1;;-1:-1:-1;;;;3158:561:1:o;3724:192::-;;3833:2;3821:9;3812:7;3808:23;3804:32;3801:2;;;3854:6;3846;3839:22;3801:2;3882:28;3900:9;3882:28;:::i;3921:257::-;;4032:2;4020:9;4011:7;4007:23;4003:32;4000:2;;;4053:6;4045;4038:22;4000:2;4097:9;4084:23;4116:32;4142:5;4116:32;:::i;4183:261::-;;4305:2;4293:9;4284:7;4280:23;4276:32;4273:2;;;4326:6;4318;4311:22;4273:2;4363:9;4357:16;4382:32;4408:5;4382:32;:::i;4449:482::-;;4571:2;4559:9;4550:7;4546:23;4542:32;4539:2;;;4592:6;4584;4577:22;4539:2;4637:9;4624:23;4670:18;4662:6;4659:30;4656:2;;;4707:6;4699;4692:22;4656:2;4735:22;;4788:4;4780:13;;4776:27;-1:-1:-1;4766:2:1;;4822:6;4814;4807:22;4766:2;4850:75;4917:7;4912:2;4899:16;4894:2;4890;4886:11;4850:75;:::i;4936:190::-;;5048:2;5036:9;5027:7;5023:23;5019:32;5016:2;;;5069:6;5061;5054:22;5016:2;-1:-1:-1;5097:23:1;;5006:120;-1:-1:-1;5006:120:1:o;5131:259::-;;5212:5;5206:12;5239:6;5234:3;5227:19;5255:63;5311:6;5304:4;5299:3;5295:14;5288:4;5281:5;5277:16;5255:63;:::i;:::-;5372:2;5351:15;-1:-1:-1;;5347:29:1;5338:39;;;;5379:4;5334:50;;5182:208;-1:-1:-1;;5182:208:1:o;5395:1532::-;;5657:6;5651:13;5683:4;5696:51;5740:6;5735:3;5730:2;5722:6;5718:15;5696:51;:::i;:::-;5810:13;;5769:16;;;;5832:55;5810:13;5769:16;5854:15;;;5832:55;:::i;:::-;5978:13;;5909:20;;;5949:3;;6055:1;6040:17;;6076:1;6112:18;;;;6139:2;;6217:4;6207:8;6203:19;6191:31;;6139:2;6280;6270:8;6267:16;6247:18;6244:40;6241:2;;;-1:-1:-1;;;6307:33:1;;6363:4;6360:1;6353:15;6393:4;6314:3;6381:17;6241:2;6424:18;6451:110;;;;6575:1;6570:332;;;;6417:485;;6451:110;-1:-1:-1;;6486:24:1;;6472:39;;6531:20;;;;-1:-1:-1;6451:110:1;;6570:332;6606:39;6638:6;6606:39;:::i;:::-;6667:3;6683:169;6697:8;6694:1;6691:15;6683:169;;;6779:14;;6764:13;;;6757:37;6822:16;;;;6714:10;;6683:169;;;6687:3;;6883:8;6876:5;6872:20;6865:27;;6417:485;-1:-1:-1;6918:3:1;;5627:1300;-1:-1:-1;;;;;;;;;;;5627:1300:1:o;6932:205::-;7132:3;7123:14::o;7142:203::-;-1:-1:-1;;;;;7306:32:1;;;;7288:51;;7276:2;7261:18;;7243:102::o;7350:490::-;-1:-1:-1;;;;;7619:15:1;;;7601:34;;7671:15;;7666:2;7651:18;;7644:43;7718:2;7703:18;;7696:34;;;7766:3;7761:2;7746:18;;7739:31;;;7350:490;;7787:47;;7814:19;;7806:6;7787:47;:::i;:::-;7779:55;7553:287;-1:-1:-1;;;;;;7553:287:1:o;7845:635::-;8016:2;8068:21;;;8138:13;;8041:18;;;8160:22;;;7845:635;;8016:2;8239:15;;;;8213:2;8198:18;;;7845:635;8285:169;8299:6;8296:1;8293:13;8285:169;;;8360:13;;8348:26;;8429:15;;;;8394:12;;;;8321:1;8314:9;8285:169;;;-1:-1:-1;8471:3:1;;7996:484;-1:-1:-1;;;;;;7996:484:1:o;8485:187::-;8650:14;;8643:22;8625:41;;8613:2;8598:18;;8580:92::o;8677:221::-;;8826:2;8815:9;8808:21;8846:46;8888:2;8877:9;8873:18;8865:6;8846:46;:::i;8903:407::-;9105:2;9087:21;;;9144:2;9124:18;;;9117:30;9183:34;9178:2;9163:18;;9156:62;-1:-1:-1;;;9249:2:1;9234:18;;9227:41;9300:3;9285:19;;9077:233::o;9315:414::-;9517:2;9499:21;;;9556:2;9536:18;;;9529:30;9595:34;9590:2;9575:18;;9568:62;-1:-1:-1;;;9661:2:1;9646:18;;9639:48;9719:3;9704:19;;9489:240::o;9734:402::-;9936:2;9918:21;;;9975:2;9955:18;;;9948:30;10014:34;10009:2;9994:18;;9987:62;-1:-1:-1;;;10080:2:1;10065:18;;10058:36;10126:3;10111:19;;9908:228::o;10141:352::-;10343:2;10325:21;;;10382:2;10362:18;;;10355:30;10421;10416:2;10401:18;;10394:58;10484:2;10469:18;;10315:178::o;10498:352::-;10700:2;10682:21;;;10739:2;10719:18;;;10712:30;10778;10773:2;10758:18;;10751:58;10841:2;10826:18;;10672:178::o;10855:400::-;11057:2;11039:21;;;11096:2;11076:18;;;11069:30;11135:34;11130:2;11115:18;;11108:62;-1:-1:-1;;;11201:2:1;11186:18;;11179:34;11245:3;11230:19;;11029:226::o;11260:349::-;11462:2;11444:21;;;11501:2;11481:18;;;11474:30;11540:27;11535:2;11520:18;;11513:55;11600:2;11585:18;;11434:175::o;11614:408::-;11816:2;11798:21;;;11855:2;11835:18;;;11828:30;11894:34;11889:2;11874:18;;11867:62;-1:-1:-1;;;11960:2:1;11945:18;;11938:42;12012:3;11997:19;;11788:234::o;12027:420::-;12229:2;12211:21;;;12268:2;12248:18;;;12241:30;12307:34;12302:2;12287:18;;12280:62;12378:26;12373:2;12358:18;;12351:54;12437:3;12422:19;;12201:246::o;12452:406::-;12654:2;12636:21;;;12693:2;12673:18;;;12666:30;12732:34;12727:2;12712:18;;12705:62;-1:-1:-1;;;12798:2:1;12783:18;;12776:40;12848:3;12833:19;;12626:232::o;12863:405::-;13065:2;13047:21;;;13104:2;13084:18;;;13077:30;13143:34;13138:2;13123:18;;13116:62;-1:-1:-1;;;13209:2:1;13194:18;;13187:39;13258:3;13243:19;;13037:231::o;13273:346::-;13475:2;13457:21;;;13514:2;13494:18;;;13487:30;-1:-1:-1;;;13548:2:1;13533:18;;13526:52;13610:2;13595:18;;13447:172::o;13624:356::-;13826:2;13808:21;;;13845:18;;;13838:30;13904:34;13899:2;13884:18;;13877:62;13971:2;13956:18;;13798:182::o;13985:408::-;14187:2;14169:21;;;14226:2;14206:18;;;14199:30;14265:34;14260:2;14245:18;;14238:62;-1:-1:-1;;;14331:2:1;14316:18;;14309:42;14383:3;14368:19;;14159:234::o;14398:356::-;14600:2;14582:21;;;14619:18;;;14612:30;14678:34;14673:2;14658:18;;14651:62;14745:2;14730:18;;14572:182::o;14759:346::-;14961:2;14943:21;;;15000:2;14980:18;;;14973:30;-1:-1:-1;;;15034:2:1;15019:18;;15012:52;15096:2;15081:18;;14933:172::o;15110:405::-;15312:2;15294:21;;;15351:2;15331:18;;;15324:30;15390:34;15385:2;15370:18;;15363:62;-1:-1:-1;;;15456:2:1;15441:18;;15434:39;15505:3;15490:19;;15284:231::o;15520:411::-;15722:2;15704:21;;;15761:2;15741:18;;;15734:30;15800:34;15795:2;15780:18;;15773:62;-1:-1:-1;;;15866:2:1;15851:18;;15844:45;15921:3;15906:19;;15694:237::o;15936:397::-;16138:2;16120:21;;;16177:2;16157:18;;;16150:30;16216:34;16211:2;16196:18;;16189:62;-1:-1:-1;;;16282:2:1;16267:18;;16260:31;16323:3;16308:19;;16110:223::o;16338:342::-;16540:2;16522:21;;;16579:2;16559:18;;;16552:30;-1:-1:-1;;;16613:2:1;16598:18;;16591:48;16671:2;16656:18;;16512:168::o;16685:413::-;16887:2;16869:21;;;16926:2;16906:18;;;16899:30;16965:34;16960:2;16945:18;;16938:62;-1:-1:-1;;;17031:2:1;17016:18;;17009:47;17088:3;17073:19;;16859:239::o;17103:408::-;17305:2;17287:21;;;17344:2;17324:18;;;17317:30;17383:34;17378:2;17363:18;;17356:62;-1:-1:-1;;;17449:2:1;17434:18;;17427:42;17501:3;17486:19;;17277:234::o;17516:347::-;17718:2;17700:21;;;17757:2;17737:18;;;17730:30;17796:25;17791:2;17776:18;;17769:53;17854:2;17839:18;;17690:173::o;17868:337::-;18070:2;18052:21;;;18109:2;18089:18;;;18082:30;-1:-1:-1;;;18143:2:1;18128:18;;18121:43;18196:2;18181:18;;18042:163::o;18210:351::-;18412:2;18394:21;;;18451:2;18431:18;;;18424:30;18490:29;18485:2;18470:18;;18463:57;18552:2;18537:18;;18384:177::o;18566:::-;18712:25;;;18700:2;18685:18;;18667:76::o;18748:129::-;;18816:17;;;18866:4;18850:21;;;18806:71::o;18882:128::-;;18953:1;18949:6;18946:1;18943:13;18940:2;;;18959:18;;:::i;:::-;-1:-1:-1;18995:9:1;;18930:80::o;19015:120::-;;19081:1;19071:2;;19086:18;;:::i;:::-;-1:-1:-1;19120:9:1;;19061:74::o;19140:168::-;;19246:1;19242;19238:6;19234:14;19231:1;19228:21;19223:1;19216:9;19209:17;19205:45;19202:2;;;19253:18;;:::i;:::-;-1:-1:-1;19293:9:1;;19192:116::o;19313:125::-;;19381:1;19378;19375:8;19372:2;;;19386:18;;:::i;:::-;-1:-1:-1;19423:9:1;;19362:76::o;19443:258::-;19515:1;19525:113;19539:6;19536:1;19533:13;19525:113;;;19615:11;;;19609:18;19596:11;;;19589:39;19561:2;19554:10;19525:113;;;19656:6;19653:1;19650:13;19647:2;;;-1:-1:-1;;19691:1:1;19673:16;;19666:27;19496:205::o;19706:380::-;19791:1;19781:12;;19838:1;19828:12;;;19849:2;;19903:4;19895:6;19891:17;19881:27;;19849:2;19956;19948:6;19945:14;19925:18;19922:38;19919:2;;;20002:10;19997:3;19993:20;19990:1;19983:31;20037:4;20034:1;20027:15;20065:4;20062:1;20055:15;19919:2;;19761:325;;;:::o;20091:135::-;;-1:-1:-1;;20151:17:1;;20148:2;;;20171:18;;:::i;:::-;-1:-1:-1;20218:1:1;20207:13;;20138:88::o;20231:112::-;;20289:1;20279:2;;20294:18;;:::i;:::-;-1:-1:-1;20328:9:1;;20269:74::o;20348:127::-;20409:10;20404:3;20400:20;20397:1;20390:31;20440:4;20437:1;20430:15;20464:4;20461:1;20454:15;20480:127;20541:10;20536:3;20532:20;20529:1;20522:31;20572:4;20569:1;20562:15;20596:4;20593:1;20586:15;20612:127;20673:10;20668:3;20664:20;20661:1;20654:31;20704:4;20701:1;20694:15;20728:4;20725:1;20718:15;20744:133;-1:-1:-1;;;;;;20820:32:1;;20810:43;;20800:2;;20867:1;20864;20857:12

Swarm Source

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