ETH Price: $3,450.99 (-2.00%)
Gas: 3 Gwei

Token

MEMBERS (MEM)
 

Overview

Max Total Supply

554 MEM

Holders

279

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MEM
0x68bf9c6fcf5de122e230139c4d1430a9a4d31b8b
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:
Members

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-25
*/

// SPDX-License-Identifier: None

pragma solidity ^0.8.4;


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);
}


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


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}


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

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


// import "./IERC165.sol";

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


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







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



// import "../IERC721.sol";

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




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

 
 

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





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 {}
}


contract Members is Ownable, ERC721 {
    using SafeMath for uint256;
    using Strings for uint256;

    uint256 public mintPrice = 50000000000000000;
    uint256 public mintLimit = 5;

    uint256 public supplyLimit;
    bool public saleActive = false;


    address public dev1Address;
    address public dev2Address;
    

    uint8 public dev1Share = 80;
    uint8 public dev2Share = 20;

    mapping(uint256 => uint256) public tokenLevel;
    mapping(uint256 => bool) public allowedLevels;
    mapping(uint256 => uint256) public levelPrice;

    string public baseURI = "";

    uint256 public totalSupply = 0;
    bool public namingAllowed = false;

//Events

    event wallet1AddressChanged(address _wallet1);
    event wallet2AddressChanged(address _wallet2);

    event SharesChanged(uint8 _value1, uint8 _value2);

    event SaleStateChanged(bool _state);
    event SupplyLimitChanged(uint256 _supplyLimit);
    event MintLimitChanged(uint256 _mintLimit);
    event MintPriceChanged(uint256 _mintPrice);
    event BaseURIChanged(string _baseURI);
    event MembershipMinted(address indexed _user, uint256 indexed _tokenId, string _tokenURI);
    event ReserveMembership(uint256 _numberOfTokens);

    event LevelChanged(uint256 _tokenId, uint256 _levelId);
    event LevelAdded(uint256 _id);
    event LevelRemoved(uint256 _id);
    event LevelPriceChanged(uint256 _levelId, uint256 _price);

    
//End Events

    constructor(
        uint256 tokenSupplyLimit,
        string memory _baseURI
    ) ERC721("MEMBERS", "MEM") {
        
        supplyLimit = tokenSupplyLimit;
        dev1Address = owner();
        dev2Address = owner();
        
        baseURI = _baseURI;
        allowedLevels[0] = true;
        
       
        emit SupplyLimitChanged(supplyLimit);
        emit MintLimitChanged(mintLimit);
        emit MintPriceChanged(mintPrice);
        emit BaseURIChanged(_baseURI);
        emit LevelAdded(0);
        
    }

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

        return bytes(baseURI).length > 0 ? 
        string(abi.encodePacked(baseURI, tokenLevel[tokenId].toString(), "/", tokenId.toString())) : "";
    }


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

    function setWallet_1(address _address) external onlyOwner{
        dev1Address = _address;
        emit wallet1AddressChanged(_address);
    }

    function setWallet_2(address _address) external onlyOwner{
        dev2Address = _address;
        transferOwnership(_address);
        emit wallet2AddressChanged(_address);
    }

    function toggleSaleActive() external onlyOwner {
        saleActive = !saleActive;
        emit SaleStateChanged(saleActive);
    }

    function changeSupplyLimit(uint256 _supplyLimit) external onlyOwner {
        require(_supplyLimit >= totalSupply, "Enter number higher than current.");
        supplyLimit = _supplyLimit;
        emit SupplyLimitChanged(_supplyLimit);
    }

    function changeMintLimit(uint256 _mintLimit) external onlyOwner {
        mintLimit = _mintLimit;
        emit MintLimitChanged(_mintLimit);
    }

    function changeMintPrice(uint256 _mintPrice) external onlyOwner {
        mintPrice = _mintPrice;
        emit MintPriceChanged(_mintPrice);
    }

    function buyMembership(uint _numberOfTokens) external payable {
        require(saleActive, "Sale Has Not Started.");
        require(_numberOfTokens <= mintLimit, "Can't mint this many tokens.");
        require(msg.value >= mintPrice.mul(_numberOfTokens), "Check your payment, something went wrong.");

        _mintMembership(_numberOfTokens);
    }

    function _mintMembership(uint _numberOfTokens) internal {
        require(totalSupply.add(_numberOfTokens) <= supplyLimit, "Not enough tokens remaining.");

        uint256 newId = totalSupply;
        for(uint i = 0; i < _numberOfTokens; i++) {
            newId += 1;
            totalSupply = totalSupply.add(1);

            _safeMint(msg.sender, newId);
            emit MembershipMinted(msg.sender, newId, tokenURI(newId));
        }
    }

    function reserveMembership(uint256 _numberOfTokens) external onlyOwner {
        _mintMembership(_numberOfTokens);
        emit ReserveMembership(_numberOfTokens);
    }

    function _withdraw() internal {
        require(address(this).balance > 0, "No balance to withdraw.");
        uint256 _amount = address(this).balance;
        (bool wallet1Success, ) = dev1Address.call{value: _amount.mul(dev1Share).div(100)}("");
        (bool wallet2Success, ) = dev2Address.call{value: _amount.mul(dev2Share).div(100)}("");

        require(wallet1Success && wallet2Success, "Withdrawal failed.");
    }

    function setLevelPrice(uint256 _levelId, uint256 _price) external onlyOwner {
        require(allowedLevels[_levelId], "Can't Access This Level.");
        levelPrice[_levelId] = _price;
        emit LevelPriceChanged(_levelId, _price);
    }

  

    function changeLevel(uint256 _levelId, uint256 _tokenId) external payable {
        require(ownerOf(_tokenId) == msg.sender, "Only owner of NFT can change name.");
        require(allowedLevels[_levelId], "Level is not allowed.");
        require(levelPrice[_levelId] >= msg.value, "Price is incorrect");

        tokenLevel[_tokenId] = _levelId;
        emit LevelChanged(_tokenId, _levelId);
    }

    function addLevel(uint256 _levelId) external onlyOwner {
        require(_levelId >= 0 && !allowedLevels[_levelId], "Invalid Level Id.");
        
        allowedLevels[_levelId] = true;
        emit LevelAdded(_levelId);
    }

    function removeLevel(uint256 _levelId) external onlyOwner {
        require(_levelId > 0 && allowedLevels[_levelId], "Invalid Level Id.");
        
        allowedLevels[_levelId] = false;
        emit LevelRemoved(_levelId);
    }

    function emergencyWithdraw() external onlyOwner {
        require(address(this).balance > 0, "No funds in smart Contract.");
        (bool success, ) = owner().call{value: address(this).balance}("");
        require(success, "Withdraw Failed.");
    }
  
    function withdrawAll() external {
        require(msg.sender == dev1Address || msg.sender == dev2Address, "Only share holders can call this method.");
        _withdraw();
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"tokenSupplyLimit","type":"uint256"},{"internalType":"string","name":"_baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"BaseURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"LevelAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_levelId","type":"uint256"}],"name":"LevelChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_levelId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"LevelPriceChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_id","type":"uint256"}],"name":"LevelRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_user","type":"address"},{"indexed":true,"internalType":"uint256","name":"_tokenId","type":"uint256"},{"indexed":false,"internalType":"string","name":"_tokenURI","type":"string"}],"name":"MembershipMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"MintLimitChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"MintPriceChanged","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":false,"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"ReserveMembership","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"SaleStateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"_value1","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"_value2","type":"uint8"}],"name":"SharesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"SupplyLimitChanged","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet1","type":"address"}],"name":"wallet1AddressChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"_wallet2","type":"address"}],"name":"wallet2AddressChanged","type":"event"},{"inputs":[{"internalType":"uint256","name":"_levelId","type":"uint256"}],"name":"addLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"allowedLevels","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"buyMembership","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_levelId","type":"uint256"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"changeLevel","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintLimit","type":"uint256"}],"name":"changeMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"changeMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_supplyLimit","type":"uint256"}],"name":"changeSupplyLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"dev1Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev1Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev2Address","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dev2Share","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"uint256","name":"","type":"uint256"}],"name":"levelPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"namingAllowed","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":"uint256","name":"_levelId","type":"uint256"}],"name":"removeLevel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfTokens","type":"uint256"}],"name":"reserveMembership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_levelId","type":"uint256"},{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setLevelPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"setWallet_2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSaleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokenLevel","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":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

66b1a2bc2ec500006007556005600855600a805460ff19169055600b805461ffff60a01b191661014560a41b17905560a06040819052600060808190526200004a91600f9162000318565b5060006010556011805460ff191690553480156200006757600080fd5b5060405162002fd838038062002fd88339810160408190526200008a91620003be565b604051806040016040528060078152602001664d454d4245525360c81b815250604051806040016040528060038152602001624d454d60e81b815250620000e0620000da620002c460201b60201c565b620002c8565b8151620000f590600190602085019062000318565b5080516200010b90600290602084019062000318565b5050506009829055600054600a80546101006001600160a01b03909316928302610100600160a81b0319909116179055600b80546001600160a01b031916909117905580516200016390600f90602084019062000318565b5060008052600d6020527f81955a0a11e65eac625c29e8882660bae4e165a75d72780094acae8ece9a29ee805460ff191660011790556009546040517f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0791620001cf9190815260200190565b60405180910390a17f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab6008546040516200020b91815260200190565b60405180910390a17f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f6007546040516200024791815260200190565b60405180910390a17f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf6816040516200028091906200047f565b60405180910390a1604051600081527f5e7cc5bd723d6a4a40fa810b7103bf4f43e387711570abfd53bcf96acdc333149060200160405180910390a150506200053a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200032690620004e7565b90600052602060002090601f0160209004810192826200034a576000855562000395565b82601f106200036557805160ff191683800117855562000395565b8280016001018555821562000395579182015b828111156200039557825182559160200191906001019062000378565b50620003a3929150620003a7565b5090565b5b80821115620003a35760008155600101620003a8565b60008060408385031215620003d1578182fd5b825160208401519092506001600160401b0380821115620003f0578283fd5b818501915085601f83011262000404578283fd5b81518181111562000419576200041962000524565b604051601f8201601f19908116603f0116810190838211818310171562000444576200044462000524565b816040528281528860208487010111156200045d578586fd5b62000470836020830160208801620004b4565b80955050505050509250929050565b6020815260008251806020840152620004a0816040850160208701620004b4565b601f01601f19169190910160400192915050565b60005b83811015620004d1578181015183820152602001620004b7565b83811115620004e1576000848401525b50505050565b600181811c90821680620004fc57607f821691505b602082108114156200051e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612a8e806200054a6000396000f3fe6080604052600436106102725760003560e01c80636c0360eb1161014f578063aad049b3116100c1578063d44e35731161007a578063d44e35731461074d578063db2e21bc1461076d578063e985e9c514610782578063f2fde38b146107cb578063f5eb4352146107eb578063fff5982b1461080b57600080fd5b8063aad049b31461067f578063ab8ece8b146106ac578063b564ef78146106d9578063b88d4fde146106fa578063c87b56dd1461071a578063cd057e881461073a57600080fd5b80638da5cb5b116101135780638da5cb5b146105e35780639225de641461060157806395d89b4114610621578063996517cf14610636578063a22cb4651461064c578063a43231281461066c57600080fd5b80636c0360eb1461056457806370a0823114610579578063715018a6146105995780637c23d1cb146105ae578063853828b6146105ce57600080fd5b80633100a535116101e85780634c085ece116101ac5780634c085ece146104a757806355f804b3146104da5780635c0c370f146104fa5780636352211e146105145780636817c76c1461053457806368428a1b1461054a57600080fd5b80633100a5351461041257806334259b5c146104275780633a1ad046146104475780633fd173661461046757806342842e0e1461048757600080fd5b8063128cf3f81161023a578063128cf3f8146103585780631723f43a1461037857806318160ddd1461039857806319d1997a146103bc57806320c09e24146103d257806323b872dd146103f257600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630f638e3214610328575b600080fd5b34801561028357600080fd5b5061029761029236600461262b565b610830565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610882565b6040516102a3919061281d565b3480156102da57600080fd5b506102ee6102e93660046126a9565b610914565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612602565b6109ae565b005b34801561033457600080fd5b506102976103433660046126a9565b600d6020526000908152604090205460ff1681565b34801561036457600080fd5b506103266103733660046124c8565b610ac4565b34801561038457600080fd5b506103266103933660046126a9565b610b52565b3480156103a457600080fd5b506103ae60105481565b6040519081526020016102a3565b3480156103c857600080fd5b506103ae60095481565b3480156103de57600080fd5b50600b546102ee906001600160a01b031681565b3480156103fe57600080fd5b5061032661040d366004612514565b610bb5565b34801561041e57600080fd5b50610326610be6565b34801561043357600080fd5b506103266104423660046126a9565b610c5d565b34801561045357600080fd5b506103266104623660046126a9565b610cbc565b34801561047357600080fd5b506103266104823660046126a9565b610d84565b34801561049357600080fd5b506103266104a2366004612514565b610de3565b3480156104b357600080fd5b50600b546104c890600160a01b900460ff1681565b60405160ff90911681526020016102a3565b3480156104e657600080fd5b506103266104f5366004612663565b610dfe565b34801561050657600080fd5b506011546102979060ff1681565b34801561052057600080fd5b506102ee61052f3660046126a9565b610e6b565b34801561054057600080fd5b506103ae60075481565b34801561055657600080fd5b50600a546102979060ff1681565b34801561057057600080fd5b506102c1610ee2565b34801561058557600080fd5b506103ae6105943660046124c8565b610f70565b3480156105a557600080fd5b50610326610ff7565b3480156105ba57600080fd5b506103266105c93660046126a9565b61102d565b3480156105da57600080fd5b506103266110fd565b3480156105ef57600080fd5b506000546001600160a01b03166102ee565b34801561060d57600080fd5b5061032661061c3660046124c8565b61118a565b34801561062d57600080fd5b506102c161120a565b34801561064257600080fd5b506103ae60085481565b34801561065857600080fd5b506103266106673660046125c8565b611219565b61032661067a3660046126a9565b6112de565b34801561068b57600080fd5b506103ae61069a3660046126a9565b600e6020526000908152604090205481565b3480156106b857600080fd5b506103ae6106c73660046126a9565b600c6020526000908152604090205481565b3480156106e557600080fd5b50600b546104c890600160a81b900460ff1681565b34801561070657600080fd5b5061032661071536600461254f565b6113f4565b34801561072657600080fd5b506102c16107353660046126a9565b61142c565b6103266107483660046126c1565b611521565b34801561075957600080fd5b506103266107683660046126a9565b611685565b34801561077957600080fd5b50610326611740565b34801561078e57600080fd5b5061029761079d3660046124e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107d757600080fd5b506103266107e63660046124c8565b611850565b3480156107f757600080fd5b506103266108063660046126c1565b6118e8565b34801561081757600080fd5b50600a546102ee9061010090046001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461089190612996565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90612996565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b982610e6b565b9050806001600160a01b0316836001600160a01b03161415610a275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610989565b336001600160a01b0382161480610a435750610a43813361079d565b610ab55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610989565b610abf83836119b8565b505050565b6000546001600160a01b03163314610aee5760405162461bcd60e51b815260040161098990612882565b600b80546001600160a01b0319166001600160a01b038316179055610b1281611850565b6040516001600160a01b03821681527f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554906020015b60405180910390a150565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161098990612882565b610b8581611a26565b6040518181527fa7fc76048af8129398ce48b489f87d2cc0b3eaa7f9b503957864a064df3bcad890602001610b47565b610bbf3382611b0e565b610bdb5760405162461bcd60e51b8152600401610989906128b7565b610abf838383611c05565b6000546001600160a01b03163314610c105760405162461bcd60e51b815260040161098990612882565b600a805460ff8082161560ff1990921682179092556040519116151581527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a1565b6000546001600160a01b03163314610c875760405162461bcd60e51b815260040161098990612882565b60088190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610b47565b6000546001600160a01b03163314610ce65760405162461bcd60e51b815260040161098990612882565b6000818152600d602052604090205460ff1615610d395760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2102632bb32b61024b21760791b6044820152606401610989565b6000818152600d602052604090819020805460ff19166001179055517f5e7cc5bd723d6a4a40fa810b7103bf4f43e387711570abfd53bcf96acdc3331490610b479083815260200190565b6000546001600160a01b03163314610dae5760405162461bcd60e51b815260040161098990612882565b60078190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610b47565b610abf838383604051806020016040528060008152506113f4565b6000546001600160a01b03163314610e285760405162461bcd60e51b815260040161098990612882565b8051610e3b90600f90602084019061239d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610b47919061281d565b6000818152600360205260408120546001600160a01b03168061087c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610989565b600f8054610eef90612996565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1b90612996565b8015610f685780601f10610f3d57610100808354040283529160200191610f68565b820191906000526020600020905b815481529060010190602001808311610f4b57829003601f168201915b505050505081565b60006001600160a01b038216610fdb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610989565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161098990612882565b61102b6000611da5565b565b6000546001600160a01b031633146110575760405162461bcd60e51b815260040161098990612882565b60008111801561107557506000818152600d602052604090205460ff165b6110b55760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2102632bb32b61024b21760791b6044820152606401610989565b6000818152600d602052604090819020805460ff19169055517fa624825e90bdd87d7ff5b1d3a2d7948d5593ca0bb25eb22ef733a75a6378891190610b479083815260200190565b600a5461010090046001600160a01b03163314806111255750600b546001600160a01b031633145b6111825760405162461bcd60e51b815260206004820152602860248201527f4f6e6c7920736861726520686f6c646572732063616e2063616c6c20746869736044820152671036b2ba3437b21760c11b6064820152608401610989565b61102b611df5565b6000546001600160a01b031633146111b45760405162461bcd60e51b815260040161098990612882565b600a8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d90602001610b47565b60606002805461089190612996565b6001600160a01b0382163314156112725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610989565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460ff166113285760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610989565b60085481111561137a5760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686973206d616e7920746f6b656e732e000000006044820152606401610989565b6007546113879082611f85565b3410156113e85760405162461bcd60e51b815260206004820152602960248201527f436865636b20796f7572207061796d656e742c20736f6d657468696e67207765604482015268373a103bb937b7339760b91b6064820152608401610989565b6113f181611a26565b50565b6113fe3383611b0e565b61141a5760405162461bcd60e51b8152600401610989906128b7565b61142684848484611f98565b50505050565b6000818152600360205260409020546060906001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b6000600f80546114ba90612996565b9050116114d6576040518060200160405280600081525061087c565b6000828152600c6020526040902054600f906114f190611fcb565b6114fa84611fcb565b60405160200161150c9392919061272a565b60405160208183030381529060405292915050565b3361152b82610e6b565b6001600160a01b03161461158c5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d604482015261329760f11b6064820152608401610989565b6000828152600d602052604090205460ff166115e25760405162461bcd60e51b81526020600482015260156024820152742632bb32b61034b9903737ba1030b63637bbb2b21760591b6044820152606401610989565b6000828152600e60205260409020543411156116355760405162461bcd60e51b8152602060048201526012602482015271141c9a58d9481a5cc81a5b98dbdc9c9958dd60721b6044820152606401610989565b6000818152600c602090815260409182902084905581518381529081018490527f8bdaee675270281b7bc2d5b9ced20517ecf5ce96158973ef78072a7bc1491b4491015b60405180910390a15050565b6000546001600160a01b031633146116af5760405162461bcd60e51b815260040161098990612882565b60105481101561170b5760405162461bcd60e51b815260206004820152602160248201527f456e746572206e756d62657220686967686572207468616e2063757272656e746044820152601760f91b6064820152608401610989565b60098190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610b47565b6000546001600160a01b0316331461176a5760405162461bcd60e51b815260040161098990612882565b600047116117ba5760405162461bcd60e51b815260206004820152601b60248201527f4e6f2066756e647320696e20736d61727420436f6e74726163742e00000000006044820152606401610989565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611807576040519150601f19603f3d011682016040523d82523d6000602084013e61180c565b606091505b50509050806113f15760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb902330b4b632b21760811b6044820152606401610989565b6000546001600160a01b0316331461187a5760405162461bcd60e51b815260040161098990612882565b6001600160a01b0381166118df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b6113f181611da5565b6000546001600160a01b031633146119125760405162461bcd60e51b815260040161098990612882565b6000828152600d602052604090205460ff166119705760405162461bcd60e51b815260206004820152601860248201527f43616e2774204163636573732054686973204c6576656c2e00000000000000006044820152606401610989565b6000828152600e602090815260409182902083905581518481529081018390527feadc9a26351bd31c25d0b6b8be5b47e60d85f0870f3299177f4f45763e702eb79101611679565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ed82610e6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600954601054611a3690836120e5565b1115611a845760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006044820152606401610989565b60105460005b82811015610abf57611a9d600183612908565b601054909250611aae9060016120e5565b601055611abb33836120f1565b81337f414cb59ea2ce32617cfe4540137d885cef27c994b5a93436da9c7521f8b7f146611ae78361142c565b604051611af4919061281d565b60405180910390a380611b06816129d1565b915050611a8a565b6000818152600360205260408120546001600160a01b0316611b875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b6000611b9283610e6b565b9050806001600160a01b0316846001600160a01b03161480611bcd5750836001600160a01b0316611bc284610914565b6001600160a01b0316145b80611bfd57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c1882610e6b565b6001600160a01b031614611c805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610989565b6001600160a01b038216611ce25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610989565b611ced6000826119b8565b6001600160a01b0383166000908152600460205260408120805460019290611d16908490612953565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d44908490612908565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60004711611e455760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e0000000000000000006044820152606401610989565b600a54600b5447916000916101009091046001600160a01b031690611e8290606490611e7c908690600160a01b900460ff16611f85565b9061210f565b604051600081818185875af1925050503d8060008114611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b5050600b549091506000906001600160a01b03811690611ef590606490611e7c908790600160a81b900460ff16611f85565b604051600081818185875af1925050503d8060008114611f31576040519150601f19603f3d011682016040523d82523d6000602084013e611f36565b606091505b50509050818015611f445750805b610abf5760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b6044820152606401610989565b6000611f918284612934565b9392505050565b611fa3848484611c05565b611faf8484848461211b565b6114265760405162461bcd60e51b815260040161098990612830565b606081611fef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120195780612003816129d1565b91506120129050600a83612920565b9150611ff3565b60008167ffffffffffffffff81111561204257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561206c576020820181803683370190505b5090505b8415611bfd57612081600183612953565b915061208e600a866129ec565b612099906030612908565b60f81b8183815181106120bc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120de600a86612920565b9450612070565b6000611f918284612908565b61210b828260405180602001604052806000815250612228565b5050565b6000611f918284612920565b60006001600160a01b0384163b1561221d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215f9033908990889088906004016127ea565b602060405180830381600087803b15801561217957600080fd5b505af19250505080156121a9575060408051601f3d908101601f191682019092526121a691810190612647565b60015b612203573d8080156121d7576040519150601f19603f3d011682016040523d82523d6000602084013e6121dc565b606091505b5080516121fb5760405162461bcd60e51b815260040161098990612830565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bfd565b506001949350505050565b612232838361225b565b61223f600084848461211b565b610abf5760405162461bcd60e51b815260040161098990612830565b6001600160a01b0382166122b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610989565b6000818152600360205260409020546001600160a01b0316156123165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610989565b6001600160a01b038216600090815260046020526040812080546001929061233f908490612908565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123a990612996565b90600052602060002090601f0160209004810192826123cb5760008555612411565b82601f106123e457805160ff1916838001178555612411565b82800160010185558215612411579182015b828111156124115782518255916020019190600101906123f6565b5061241d929150612421565b5090565b5b8082111561241d5760008155600101612422565b600067ffffffffffffffff8084111561245157612451612a2c565b604051601f8501601f19908116603f0116810190828211818310171561247957612479612a2c565b8160405280935085815286868601111561249257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124c357600080fd5b919050565b6000602082840312156124d9578081fd5b611f91826124ac565b600080604083850312156124f4578081fd5b6124fd836124ac565b915061250b602084016124ac565b90509250929050565b600080600060608486031215612528578081fd5b612531846124ac565b925061253f602085016124ac565b9150604084013590509250925092565b60008060008060808587031215612564578081fd5b61256d856124ac565b935061257b602086016124ac565b925060408501359150606085013567ffffffffffffffff81111561259d578182fd5b8501601f810187136125ad578182fd5b6125bc87823560208401612436565b91505092959194509250565b600080604083850312156125da578182fd5b6125e3836124ac565b9150602083013580151581146125f7578182fd5b809150509250929050565b60008060408385031215612614578182fd5b61261d836124ac565b946020939093013593505050565b60006020828403121561263c578081fd5b8135611f9181612a42565b600060208284031215612658578081fd5b8151611f9181612a42565b600060208284031215612674578081fd5b813567ffffffffffffffff81111561268a578182fd5b8201601f8101841361269a578182fd5b611bfd84823560208401612436565b6000602082840312156126ba578081fd5b5035919050565b600080604083850312156126d3578182fd5b50508035926020909101359150565b600081518084526126fa81602086016020860161296a565b601f01601f19169290920160200192915050565b6000815161272081856020860161296a565b9290920192915050565b600080855482600182811c91508083168061274657607f831692505b602080841082141561276657634e487b7160e01b87526022600452602487fd5b81801561277a576001811461278b576127b7565b60ff198616895284890196506127b7565b60008c815260209020885b868110156127af5781548b820152908501908301612796565b505084890196505b5050505050506127e06127da6127cd838861270e565b602f60f81b815260010190565b8561270e565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e0908301846126e2565b602081526000611f9160208301846126e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561291b5761291b612a00565b500190565b60008261292f5761292f612a16565b500490565b600081600019048311821515161561294e5761294e612a00565b500290565b60008282101561296557612965612a00565b500390565b60005b8381101561298557818101518382015260200161296d565b838111156114265750506000910152565b600181811c908216806129aa57607f821691505b602082108114156129cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e5576129e5612a00565b5060010190565b6000826129fb576129fb612a16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f157600080fdfea26469706673582212201c4fc97acb510973cd1279c9a199ca17d6a0339aae9bdd216962a7c4260ac23d64736f6c6343000804003300000000000000000000000000000000000000000000000000000000000015b30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f63617a652e696f0000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c80636c0360eb1161014f578063aad049b3116100c1578063d44e35731161007a578063d44e35731461074d578063db2e21bc1461076d578063e985e9c514610782578063f2fde38b146107cb578063f5eb4352146107eb578063fff5982b1461080b57600080fd5b8063aad049b31461067f578063ab8ece8b146106ac578063b564ef78146106d9578063b88d4fde146106fa578063c87b56dd1461071a578063cd057e881461073a57600080fd5b80638da5cb5b116101135780638da5cb5b146105e35780639225de641461060157806395d89b4114610621578063996517cf14610636578063a22cb4651461064c578063a43231281461066c57600080fd5b80636c0360eb1461056457806370a0823114610579578063715018a6146105995780637c23d1cb146105ae578063853828b6146105ce57600080fd5b80633100a535116101e85780634c085ece116101ac5780634c085ece146104a757806355f804b3146104da5780635c0c370f146104fa5780636352211e146105145780636817c76c1461053457806368428a1b1461054a57600080fd5b80633100a5351461041257806334259b5c146104275780633a1ad046146104475780633fd173661461046757806342842e0e1461048757600080fd5b8063128cf3f81161023a578063128cf3f8146103585780631723f43a1461037857806318160ddd1461039857806319d1997a146103bc57806320c09e24146103d257806323b872dd146103f257600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b3146103065780630f638e3214610328575b600080fd5b34801561028357600080fd5b5061029761029236600461262b565b610830565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c1610882565b6040516102a3919061281d565b3480156102da57600080fd5b506102ee6102e93660046126a9565b610914565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612602565b6109ae565b005b34801561033457600080fd5b506102976103433660046126a9565b600d6020526000908152604090205460ff1681565b34801561036457600080fd5b506103266103733660046124c8565b610ac4565b34801561038457600080fd5b506103266103933660046126a9565b610b52565b3480156103a457600080fd5b506103ae60105481565b6040519081526020016102a3565b3480156103c857600080fd5b506103ae60095481565b3480156103de57600080fd5b50600b546102ee906001600160a01b031681565b3480156103fe57600080fd5b5061032661040d366004612514565b610bb5565b34801561041e57600080fd5b50610326610be6565b34801561043357600080fd5b506103266104423660046126a9565b610c5d565b34801561045357600080fd5b506103266104623660046126a9565b610cbc565b34801561047357600080fd5b506103266104823660046126a9565b610d84565b34801561049357600080fd5b506103266104a2366004612514565b610de3565b3480156104b357600080fd5b50600b546104c890600160a01b900460ff1681565b60405160ff90911681526020016102a3565b3480156104e657600080fd5b506103266104f5366004612663565b610dfe565b34801561050657600080fd5b506011546102979060ff1681565b34801561052057600080fd5b506102ee61052f3660046126a9565b610e6b565b34801561054057600080fd5b506103ae60075481565b34801561055657600080fd5b50600a546102979060ff1681565b34801561057057600080fd5b506102c1610ee2565b34801561058557600080fd5b506103ae6105943660046124c8565b610f70565b3480156105a557600080fd5b50610326610ff7565b3480156105ba57600080fd5b506103266105c93660046126a9565b61102d565b3480156105da57600080fd5b506103266110fd565b3480156105ef57600080fd5b506000546001600160a01b03166102ee565b34801561060d57600080fd5b5061032661061c3660046124c8565b61118a565b34801561062d57600080fd5b506102c161120a565b34801561064257600080fd5b506103ae60085481565b34801561065857600080fd5b506103266106673660046125c8565b611219565b61032661067a3660046126a9565b6112de565b34801561068b57600080fd5b506103ae61069a3660046126a9565b600e6020526000908152604090205481565b3480156106b857600080fd5b506103ae6106c73660046126a9565b600c6020526000908152604090205481565b3480156106e557600080fd5b50600b546104c890600160a81b900460ff1681565b34801561070657600080fd5b5061032661071536600461254f565b6113f4565b34801561072657600080fd5b506102c16107353660046126a9565b61142c565b6103266107483660046126c1565b611521565b34801561075957600080fd5b506103266107683660046126a9565b611685565b34801561077957600080fd5b50610326611740565b34801561078e57600080fd5b5061029761079d3660046124e2565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b3480156107d757600080fd5b506103266107e63660046124c8565b611850565b3480156107f757600080fd5b506103266108063660046126c1565b6118e8565b34801561081757600080fd5b50600a546102ee9061010090046001600160a01b031681565b60006001600160e01b031982166380ac58cd60e01b148061086157506001600160e01b03198216635b5e139f60e01b145b8061087c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606001805461089190612996565b80601f01602080910402602001604051908101604052809291908181526020018280546108bd90612996565b801561090a5780601f106108df5761010080835404028352916020019161090a565b820191906000526020600020905b8154815290600101906020018083116108ed57829003601f168201915b5050505050905090565b6000818152600360205260408120546001600160a01b03166109925760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109b982610e6b565b9050806001600160a01b0316836001600160a01b03161415610a275760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610989565b336001600160a01b0382161480610a435750610a43813361079d565b610ab55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610989565b610abf83836119b8565b505050565b6000546001600160a01b03163314610aee5760405162461bcd60e51b815260040161098990612882565b600b80546001600160a01b0319166001600160a01b038316179055610b1281611850565b6040516001600160a01b03821681527f9539f0adf432f6612656f7ec15ddf8a7e5835132bd4a474f39954885dbfc4554906020015b60405180910390a150565b6000546001600160a01b03163314610b7c5760405162461bcd60e51b815260040161098990612882565b610b8581611a26565b6040518181527fa7fc76048af8129398ce48b489f87d2cc0b3eaa7f9b503957864a064df3bcad890602001610b47565b610bbf3382611b0e565b610bdb5760405162461bcd60e51b8152600401610989906128b7565b610abf838383611c05565b6000546001600160a01b03163314610c105760405162461bcd60e51b815260040161098990612882565b600a805460ff8082161560ff1990921682179092556040519116151581527fe333f8a36ee86e754548af2d6f50c73ff0d501e22e6c784662123dbbe493c6029060200160405180910390a1565b6000546001600160a01b03163314610c875760405162461bcd60e51b815260040161098990612882565b60088190556040518181527f9ae30a041b5f2244849dc754c675b09aef4ad230b48995476fd6e6415d1fe8ab90602001610b47565b6000546001600160a01b03163314610ce65760405162461bcd60e51b815260040161098990612882565b6000818152600d602052604090205460ff1615610d395760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2102632bb32b61024b21760791b6044820152606401610989565b6000818152600d602052604090819020805460ff19166001179055517f5e7cc5bd723d6a4a40fa810b7103bf4f43e387711570abfd53bcf96acdc3331490610b479083815260200190565b6000546001600160a01b03163314610dae5760405162461bcd60e51b815260040161098990612882565b60078190556040518181527f25b1f9f6b6e61dfca5575239769e4450ed2e49176670837f5d1a82a9a2fc693f90602001610b47565b610abf838383604051806020016040528060008152506113f4565b6000546001600160a01b03163314610e285760405162461bcd60e51b815260040161098990612882565b8051610e3b90600f90602084019061239d565b507f5411e8ebf1636d9e83d5fc4900bf80cbac82e8790da2a4c94db4895e889eedf681604051610b47919061281d565b6000818152600360205260408120546001600160a01b03168061087c5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610989565b600f8054610eef90612996565b80601f0160208091040260200160405190810160405280929190818152602001828054610f1b90612996565b8015610f685780601f10610f3d57610100808354040283529160200191610f68565b820191906000526020600020905b815481529060010190602001808311610f4b57829003601f168201915b505050505081565b60006001600160a01b038216610fdb5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610989565b506001600160a01b031660009081526004602052604090205490565b6000546001600160a01b031633146110215760405162461bcd60e51b815260040161098990612882565b61102b6000611da5565b565b6000546001600160a01b031633146110575760405162461bcd60e51b815260040161098990612882565b60008111801561107557506000818152600d602052604090205460ff165b6110b55760405162461bcd60e51b815260206004820152601160248201527024b73b30b634b2102632bb32b61024b21760791b6044820152606401610989565b6000818152600d602052604090819020805460ff19169055517fa624825e90bdd87d7ff5b1d3a2d7948d5593ca0bb25eb22ef733a75a6378891190610b479083815260200190565b600a5461010090046001600160a01b03163314806111255750600b546001600160a01b031633145b6111825760405162461bcd60e51b815260206004820152602860248201527f4f6e6c7920736861726520686f6c646572732063616e2063616c6c20746869736044820152671036b2ba3437b21760c11b6064820152608401610989565b61102b611df5565b6000546001600160a01b031633146111b45760405162461bcd60e51b815260040161098990612882565b600a8054610100600160a81b0319166101006001600160a01b038416908102919091179091556040519081527f1354f2ed7ad63d510fe05b011c0f4585cc0503e5f2a9cf0ac0b2e7dc80127d5d90602001610b47565b60606002805461089190612996565b6001600160a01b0382163314156112725760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610989565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5460ff166113285760405162461bcd60e51b815260206004820152601560248201527429b0b632902430b9902737ba1029ba30b93a32b21760591b6044820152606401610989565b60085481111561137a5760405162461bcd60e51b815260206004820152601c60248201527f43616e2774206d696e742074686973206d616e7920746f6b656e732e000000006044820152606401610989565b6007546113879082611f85565b3410156113e85760405162461bcd60e51b815260206004820152602960248201527f436865636b20796f7572207061796d656e742c20736f6d657468696e67207765604482015268373a103bb937b7339760b91b6064820152608401610989565b6113f181611a26565b50565b6113fe3383611b0e565b61141a5760405162461bcd60e51b8152600401610989906128b7565b61142684848484611f98565b50505050565b6000818152600360205260409020546060906001600160a01b03166114ab5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610989565b6000600f80546114ba90612996565b9050116114d6576040518060200160405280600081525061087c565b6000828152600c6020526040902054600f906114f190611fcb565b6114fa84611fcb565b60405160200161150c9392919061272a565b60405160208183030381529060405292915050565b3361152b82610e6b565b6001600160a01b03161461158c5760405162461bcd60e51b815260206004820152602260248201527f4f6e6c79206f776e6572206f66204e46542063616e206368616e6765206e616d604482015261329760f11b6064820152608401610989565b6000828152600d602052604090205460ff166115e25760405162461bcd60e51b81526020600482015260156024820152742632bb32b61034b9903737ba1030b63637bbb2b21760591b6044820152606401610989565b6000828152600e60205260409020543411156116355760405162461bcd60e51b8152602060048201526012602482015271141c9a58d9481a5cc81a5b98dbdc9c9958dd60721b6044820152606401610989565b6000818152600c602090815260409182902084905581518381529081018490527f8bdaee675270281b7bc2d5b9ced20517ecf5ce96158973ef78072a7bc1491b4491015b60405180910390a15050565b6000546001600160a01b031633146116af5760405162461bcd60e51b815260040161098990612882565b60105481101561170b5760405162461bcd60e51b815260206004820152602160248201527f456e746572206e756d62657220686967686572207468616e2063757272656e746044820152601760f91b6064820152608401610989565b60098190556040518181527f178f2d92de18f124251b08e25bacba56eda0716625c1e799fc6c8ed1ee7d1d0790602001610b47565b6000546001600160a01b0316331461176a5760405162461bcd60e51b815260040161098990612882565b600047116117ba5760405162461bcd60e51b815260206004820152601b60248201527f4e6f2066756e647320696e20736d61727420436f6e74726163742e00000000006044820152606401610989565b600080546040516001600160a01b039091169047908381818185875af1925050503d8060008114611807576040519150601f19603f3d011682016040523d82523d6000602084013e61180c565b606091505b50509050806113f15760405162461bcd60e51b815260206004820152601060248201526f2bb4ba34323930bb902330b4b632b21760811b6044820152606401610989565b6000546001600160a01b0316331461187a5760405162461bcd60e51b815260040161098990612882565b6001600160a01b0381166118df5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610989565b6113f181611da5565b6000546001600160a01b031633146119125760405162461bcd60e51b815260040161098990612882565b6000828152600d602052604090205460ff166119705760405162461bcd60e51b815260206004820152601860248201527f43616e2774204163636573732054686973204c6576656c2e00000000000000006044820152606401610989565b6000828152600e602090815260409182902083905581518481529081018390527feadc9a26351bd31c25d0b6b8be5b47e60d85f0870f3299177f4f45763e702eb79101611679565b600081815260056020526040902080546001600160a01b0319166001600160a01b03841690811790915581906119ed82610e6b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600954601054611a3690836120e5565b1115611a845760405162461bcd60e51b815260206004820152601c60248201527f4e6f7420656e6f75676820746f6b656e732072656d61696e696e672e000000006044820152606401610989565b60105460005b82811015610abf57611a9d600183612908565b601054909250611aae9060016120e5565b601055611abb33836120f1565b81337f414cb59ea2ce32617cfe4540137d885cef27c994b5a93436da9c7521f8b7f146611ae78361142c565b604051611af4919061281d565b60405180910390a380611b06816129d1565b915050611a8a565b6000818152600360205260408120546001600160a01b0316611b875760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610989565b6000611b9283610e6b565b9050806001600160a01b0316846001600160a01b03161480611bcd5750836001600160a01b0316611bc284610914565b6001600160a01b0316145b80611bfd57506001600160a01b0380821660009081526006602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611c1882610e6b565b6001600160a01b031614611c805760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610989565b6001600160a01b038216611ce25760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610989565b611ced6000826119b8565b6001600160a01b0383166000908152600460205260408120805460019290611d16908490612953565b90915550506001600160a01b0382166000908152600460205260408120805460019290611d44908490612908565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60004711611e455760405162461bcd60e51b815260206004820152601760248201527f4e6f2062616c616e636520746f2077697468647261772e0000000000000000006044820152606401610989565b600a54600b5447916000916101009091046001600160a01b031690611e8290606490611e7c908690600160a01b900460ff16611f85565b9061210f565b604051600081818185875af1925050503d8060008114611ebe576040519150601f19603f3d011682016040523d82523d6000602084013e611ec3565b606091505b5050600b549091506000906001600160a01b03811690611ef590606490611e7c908790600160a81b900460ff16611f85565b604051600081818185875af1925050503d8060008114611f31576040519150601f19603f3d011682016040523d82523d6000602084013e611f36565b606091505b50509050818015611f445750805b610abf5760405162461bcd60e51b81526020600482015260126024820152712bb4ba34323930bbb0b6103330b4b632b21760711b6044820152606401610989565b6000611f918284612934565b9392505050565b611fa3848484611c05565b611faf8484848461211b565b6114265760405162461bcd60e51b815260040161098990612830565b606081611fef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156120195780612003816129d1565b91506120129050600a83612920565b9150611ff3565b60008167ffffffffffffffff81111561204257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561206c576020820181803683370190505b5090505b8415611bfd57612081600183612953565b915061208e600a866129ec565b612099906030612908565b60f81b8183815181106120bc57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120de600a86612920565b9450612070565b6000611f918284612908565b61210b828260405180602001604052806000815250612228565b5050565b6000611f918284612920565b60006001600160a01b0384163b1561221d57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061215f9033908990889088906004016127ea565b602060405180830381600087803b15801561217957600080fd5b505af19250505080156121a9575060408051601f3d908101601f191682019092526121a691810190612647565b60015b612203573d8080156121d7576040519150601f19603f3d011682016040523d82523d6000602084013e6121dc565b606091505b5080516121fb5760405162461bcd60e51b815260040161098990612830565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611bfd565b506001949350505050565b612232838361225b565b61223f600084848461211b565b610abf5760405162461bcd60e51b815260040161098990612830565b6001600160a01b0382166122b15760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610989565b6000818152600360205260409020546001600160a01b0316156123165760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610989565b6001600160a01b038216600090815260046020526040812080546001929061233f908490612908565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546123a990612996565b90600052602060002090601f0160209004810192826123cb5760008555612411565b82601f106123e457805160ff1916838001178555612411565b82800160010185558215612411579182015b828111156124115782518255916020019190600101906123f6565b5061241d929150612421565b5090565b5b8082111561241d5760008155600101612422565b600067ffffffffffffffff8084111561245157612451612a2c565b604051601f8501601f19908116603f0116810190828211818310171561247957612479612a2c565b8160405280935085815286868601111561249257600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146124c357600080fd5b919050565b6000602082840312156124d9578081fd5b611f91826124ac565b600080604083850312156124f4578081fd5b6124fd836124ac565b915061250b602084016124ac565b90509250929050565b600080600060608486031215612528578081fd5b612531846124ac565b925061253f602085016124ac565b9150604084013590509250925092565b60008060008060808587031215612564578081fd5b61256d856124ac565b935061257b602086016124ac565b925060408501359150606085013567ffffffffffffffff81111561259d578182fd5b8501601f810187136125ad578182fd5b6125bc87823560208401612436565b91505092959194509250565b600080604083850312156125da578182fd5b6125e3836124ac565b9150602083013580151581146125f7578182fd5b809150509250929050565b60008060408385031215612614578182fd5b61261d836124ac565b946020939093013593505050565b60006020828403121561263c578081fd5b8135611f9181612a42565b600060208284031215612658578081fd5b8151611f9181612a42565b600060208284031215612674578081fd5b813567ffffffffffffffff81111561268a578182fd5b8201601f8101841361269a578182fd5b611bfd84823560208401612436565b6000602082840312156126ba578081fd5b5035919050565b600080604083850312156126d3578182fd5b50508035926020909101359150565b600081518084526126fa81602086016020860161296a565b601f01601f19169290920160200192915050565b6000815161272081856020860161296a565b9290920192915050565b600080855482600182811c91508083168061274657607f831692505b602080841082141561276657634e487b7160e01b87526022600452602487fd5b81801561277a576001811461278b576127b7565b60ff198616895284890196506127b7565b60008c815260209020885b868110156127af5781548b820152908501908301612796565b505084890196505b5050505050506127e06127da6127cd838861270e565b602f60f81b815260010190565b8561270e565b9695505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906127e0908301846126e2565b602081526000611f9160208301846126e2565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561291b5761291b612a00565b500190565b60008261292f5761292f612a16565b500490565b600081600019048311821515161561294e5761294e612a00565b500290565b60008282101561296557612965612a00565b500390565b60005b8381101561298557818101518382015260200161296d565b838111156114265750506000910152565b600181811c908216806129aa57607f821691505b602082108114156129cb57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156129e5576129e5612a00565b5060010190565b6000826129fb576129fb612a16565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146113f157600080fdfea26469706673582212201c4fc97acb510973cd1279c9a199ca17d6a0339aae9bdd216962a7c4260ac23d64736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000015b30000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000000000f68747470733a2f2f63617a652e696f0000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenSupplyLimit (uint256): 5555
Arg [1] : _baseURI (string): https://caze.io

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000015b3
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [3] : 68747470733a2f2f63617a652e696f0000000000000000000000000000000000


Deployed Bytecode Sourcemap

40534:6617:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28409:305;;;;;;;;;;-1:-1:-1;28409:305:0;;;;;:::i;:::-;;:::i;:::-;;;7493:14:1;;7486:22;7468:41;;7456:2;7441:18;28409:305:0;;;;;;;;29354:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30913:221::-;;;;;;;;;;-1:-1:-1;30913:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6791:32:1;;;6773:51;;6761:2;6746:18;30913:221:0;6728:102:1;30436:411:0;;;;;;;;;;-1:-1:-1;30436:411:0;;;;;:::i;:::-;;:::i;:::-;;41002:45;;;;;;;;;;-1:-1:-1;41002:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;43197:183;;;;;;;;;;-1:-1:-1;43197:183:0;;;;;:::i;:::-;;:::i;44927:172::-;;;;;;;;;;-1:-1:-1;44927:172:0;;;;;:::i;:::-;;:::i;41143:30::-;;;;;;;;;;;;;;;;;;;19756:25:1;;;19744:2;19729:18;41143:30:0;19711:76:1;40732:26:0;;;;;;;;;;;;;;;;40839;;;;;;;;;;-1:-1:-1;40839:26:0;;;;-1:-1:-1;;;;;40839:26:0;;;31803:339;;;;;;;;;;-1:-1:-1;31803:339:0;;;;;:::i;:::-;;:::i;43388:134::-;;;;;;;;;;;;;:::i;43783:149::-;;;;;;;;;;-1:-1:-1;43783:149:0;;;;;:::i;:::-;;:::i;46219:232::-;;;;;;;;;;-1:-1:-1;46219:232:0;;;;;:::i;:::-;;:::i;43940:149::-;;;;;;;;;;-1:-1:-1;43940:149:0;;;;;:::i;:::-;;:::i;32213:185::-;;;;;;;;;;-1:-1:-1;32213:185:0;;;;;:::i;:::-;;:::i;40880:27::-;;;;;;;;;;-1:-1:-1;40880:27:0;;;;-1:-1:-1;;;40880:27:0;;;;;;;;;20217:4:1;20205:17;;;20187:36;;20175:2;20160:18;40880:27:0;20142:87:1;42896:140:0;;;;;;;;;;-1:-1:-1;42896:140:0;;;;;:::i;:::-;;:::i;41180:33::-;;;;;;;;;;-1:-1:-1;41180:33:0;;;;;;;;29048:239;;;;;;;;;;-1:-1:-1;29048:239:0;;;;;:::i;:::-;;:::i;40644:44::-;;;;;;;;;;;;;;;;40765:30;;;;;;;;;;-1:-1:-1;40765:30:0;;;;;;;;41108:26;;;;;;;;;;;;;:::i;28778:208::-;;;;;;;;;;-1:-1:-1;28778:208:0;;;;;:::i;:::-;;:::i;14070:94::-;;;;;;;;;;;;;:::i;46459:236::-;;;;;;;;;;-1:-1:-1;46459:236:0;;;;;:::i;:::-;;:::i;46968:180::-;;;;;;;;;;;;;:::i;13419:87::-;;;;;;;;;;-1:-1:-1;13465:7:0;13492:6;-1:-1:-1;;;;;13492:6:0;13419:87;;43044:145;;;;;;;;;;-1:-1:-1;43044:145:0;;;;;:::i;:::-;;:::i;29523:104::-;;;;;;;;;;;;;:::i;40695:28::-;;;;;;;;;;;;;;;;31206:295;;;;;;;;;;-1:-1:-1;31206:295:0;;;;;:::i;:::-;;:::i;44097:358::-;;;;;;:::i;:::-;;:::i;41054:45::-;;;;;;;;;;-1:-1:-1;41054:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;40950;;;;;;;;;;-1:-1:-1;40950:45:0;;;;;:::i;:::-;;;;;;;;;;;;;;40914:27;;;;;;;;;;-1:-1:-1;40914:27:0;;;;-1:-1:-1;;;40914:27:0;;;;;;32469:328;;;;;;;;;;-1:-1:-1;32469:328:0;;;;;:::i;:::-;;:::i;42558:::-;;;;;;;;;;-1:-1:-1;42558:328:0;;;;;:::i;:::-;;:::i;45805:406::-;;;;;;:::i;:::-;;:::i;43530:245::-;;;;;;;;;;-1:-1:-1;43530:245:0;;;;;:::i;:::-;;:::i;46703:255::-;;;;;;;;;;;;;:::i;31572:164::-;;;;;;;;;;-1:-1:-1;31572:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31693:25:0;;;31669:4;31693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31572:164;14319:192;;;;;;;;;;-1:-1:-1;14319:192:0;;;;;:::i;:::-;;:::i;45545:246::-;;;;;;;;;;-1:-1:-1;45545:246:0;;;;;:::i;:::-;;:::i;40806:26::-;;;;;;;;;;-1:-1:-1;40806:26:0;;;;;;;-1:-1:-1;;;;;40806:26:0;;;28409:305;28511:4;-1:-1:-1;;;;;;28548:40:0;;-1:-1:-1;;;28548:40:0;;:105;;-1:-1:-1;;;;;;;28605:48:0;;-1:-1:-1;;;28605:48:0;28548:105;:158;;;-1:-1:-1;;;;;;;;;;15538:40:0;;;28670:36;28528:178;28409:305;-1:-1:-1;;28409:305:0:o;29354:100::-;29408:13;29441:5;29434:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29354:100;:::o;30913:221::-;30989:7;34396:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34396:16:0;31009:73;;;;-1:-1:-1;;;31009:73:0;;14437:2:1;31009:73:0;;;14419:21:1;14476:2;14456:18;;;14449:30;14515:34;14495:18;;;14488:62;-1:-1:-1;;;14566:18:1;;;14559:42;14618:19;;31009:73:0;;;;;;;;;-1:-1:-1;31102:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;31102:24:0;;30913:221::o;30436:411::-;30517:13;30533:23;30548:7;30533:14;:23::i;:::-;30517:39;;30581:5;-1:-1:-1;;;;;30575:11:0;:2;-1:-1:-1;;;;;30575:11:0;;;30567:57;;;;-1:-1:-1;;;30567:57:0;;16390:2:1;30567:57:0;;;16372:21:1;16429:2;16409:18;;;16402:30;16468:34;16448:18;;;16441:62;-1:-1:-1;;;16519:18:1;;;16512:31;16560:19;;30567:57:0;16362:223:1;30567:57:0;12375:10;-1:-1:-1;;;;;30659:21:0;;;;:62;;-1:-1:-1;30684:37:0;30701:5;12375:10;31572:164;:::i;30684:37::-;30637:168;;;;-1:-1:-1;;;30637:168:0;;12830:2:1;30637:168:0;;;12812:21:1;12869:2;12849:18;;;12842:30;12908:34;12888:18;;;12881:62;12979:26;12959:18;;;12952:54;13023:19;;30637:168:0;12802:246:1;30637:168:0;30818:21;30827:2;30831:7;30818:8;:21::i;:::-;30436:411;;;:::o;43197:183::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;43265:11:::1;:22:::0;;-1:-1:-1;;;;;;43265:22:0::1;-1:-1:-1::0;;;;;43265:22:0;::::1;;::::0;;43298:27:::1;43265:22:::0;43298:17:::1;:27::i;:::-;43341:31;::::0;-1:-1:-1;;;;;6791:32:1;;6773:51;;43341:31:0::1;::::0;6761:2:1;6746:18;43341:31:0::1;;;;;;;;43197:183:::0;:::o;44927:172::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;45009:32:::1;45025:15;45009;:32::i;:::-;45057:34;::::0;19756:25:1;;;45057:34:0::1;::::0;19744:2:1;19729:18;45057:34:0::1;19711:76:1::0;31803:339:0;31998:41;12375:10;32031:7;31998:18;:41::i;:::-;31990:103;;;;-1:-1:-1;;;31990:103:0;;;;;;;:::i;:::-;32106:28;32116:4;32122:2;32126:7;32106:9;:28::i;43388:134::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;43460:10:::1;::::0;;::::1;::::0;;::::1;43459:11;-1:-1:-1::0;;43446:24:0;;::::1;::::0;::::1;::::0;;;43486:28:::1;::::0;43503:10;;7493:14:1;7486:22;7468:41;;43486:28:0::1;::::0;7456:2:1;7441:18;43486:28:0::1;;;;;;;43388:134::o:0;43783:149::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;43858:9:::1;:22:::0;;;43896:28:::1;::::0;19756:25:1;;;43896:28:0::1;::::0;19744:2:1;19729:18;43896:28:0::1;19711:76:1::0;46219:232:0;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;46311:23:::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;46310:24;46285:71;;;::::0;-1:-1:-1;;;46285:71:0;;17597:2:1;46285:71:0::1;::::0;::::1;17579:21:1::0;17636:2;17616:18;;;17609:30;-1:-1:-1;;;17655:18:1;;;17648:47;17712:18;;46285:71:0::1;17569:167:1::0;46285:71:0::1;46377:23;::::0;;;:13:::1;:23;::::0;;;;;;:30;;-1:-1:-1;;46377:30:0::1;46403:4;46377:30;::::0;;46423:20;::::1;::::0;::::1;::::0;46391:8;19756:25:1;;19744:2;19729:18;;19711:76;43940:149:0;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;44015:9:::1;:22:::0;;;44053:28:::1;::::0;19756:25:1;;;44053:28:0::1;::::0;19744:2:1;19729:18;44053:28:0::1;19711:76:1::0;32213:185:0;32351:39;32368:4;32374:2;32378:7;32351:39;;;;;;;;;;;;:16;:39::i;42896:140::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;42970:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;:::-;;43004:24;43019:8;43004:24;;;;;;:::i;29048:239::-:0;29120:7;29156:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29156:16:0;29191:19;29183:73;;;;-1:-1:-1;;;29183:73:0;;13666:2:1;29183:73:0;;;13648:21:1;13705:2;13685:18;;;13678:30;13744:34;13724:18;;;13717:62;-1:-1:-1;;;13795:18:1;;;13788:39;13844:19;;29183:73:0;13638:231:1;41108:26:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28778:208::-;28850:7;-1:-1:-1;;;;;28878:19:0;;28870:74;;;;-1:-1:-1;;;28870:74:0;;13255:2:1;28870:74:0;;;13237:21:1;13294:2;13274:18;;;13267:30;13333:34;13313:18;;;13306:62;-1:-1:-1;;;13384:18:1;;;13377:40;13434:19;;28870:74:0;13227:232:1;28870:74:0;-1:-1:-1;;;;;;28962:16:0;;;;;:9;:16;;;;;;;28778:208::o;14070:94::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;14135:21:::1;14153:1;14135:9;:21::i;:::-;14070:94::o:0;46459:236::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;46547:1:::1;46536:8;:12;:39;;;;-1:-1:-1::0;46552:23:0::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;46536:39;46528:69;;;::::0;-1:-1:-1;;;46528:69:0;;17597:2:1;46528:69:0::1;::::0;::::1;17579:21:1::0;17636:2;17616:18;;;17609:30;-1:-1:-1;;;17655:18:1;;;17648:47;17712:18;;46528:69:0::1;17569:167:1::0;46528:69:0::1;46644:5;46618:23:::0;;;:13:::1;:23;::::0;;;;;;:31;;-1:-1:-1;;46618:31:0::1;::::0;;46665:22;::::1;::::0;::::1;::::0;46632:8;19756:25:1;;19744:2;19729:18;;19711:76;46968:180:0;47033:11;;;;;-1:-1:-1;;;;;47033:11:0;47019:10;:25;;:54;;-1:-1:-1;47062:11:0;;-1:-1:-1;;;;;47062:11:0;47048:10;:25;47019:54;47011:107;;;;-1:-1:-1;;;47011:107:0;;19403:2:1;47011:107:0;;;19385:21:1;19442:2;19422:18;;;19415:30;19481:34;19461:18;;;19454:62;-1:-1:-1;;;19532:18:1;;;19525:38;19580:19;;47011:107:0;19375:230:1;47011:107:0;47129:11;:9;:11::i;43044:145::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;43112:11:::1;:22:::0;;-1:-1:-1;;;;;;43112:22:0::1;;-1:-1:-1::0;;;;;43112:22:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;43150:31:::1;::::0;6773:51:1;;;43150:31:0::1;::::0;6761:2:1;6746:18;43150:31:0::1;6728:102:1::0;29523:104:0;29579:13;29612:7;29605:14;;;;;:::i;31206:295::-;-1:-1:-1;;;;;31309:24:0;;12375:10;31309:24;;31301:62;;;;-1:-1:-1;;;31301:62:0;;10593:2:1;31301:62:0;;;10575:21:1;10632:2;10612:18;;;10605:30;10671:27;10651:18;;;10644:55;10716:18;;31301:62:0;10565:175:1;31301:62:0;12375:10;31376:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31376:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31376:53:0;;;;;;;;;;31445:48;;7468:41:1;;;31376:42:0;;12375:10;31445:48;;7441:18:1;31445:48:0;;;;;;;31206:295;;:::o;44097:358::-;44178:10;;;;44170:44;;;;-1:-1:-1;;;44170:44:0;;18361:2:1;44170:44:0;;;18343:21:1;18400:2;18380:18;;;18373:30;-1:-1:-1;;;18419:18:1;;;18412:51;18480:18;;44170:44:0;18333:171:1;44170:44:0;44252:9;;44233:15;:28;;44225:69;;;;-1:-1:-1;;;44225:69:0;;7946:2:1;44225:69:0;;;7928:21:1;7985:2;7965:18;;;7958:30;8024;8004:18;;;7997:58;8072:18;;44225:69:0;7918:178:1;44225:69:0;44326:9;;:30;;44340:15;44326:13;:30::i;:::-;44313:9;:43;;44305:97;;;;-1:-1:-1;;;44305:97:0;;10947:2:1;44305:97:0;;;10929:21:1;10986:2;10966:18;;;10959:30;11025:34;11005:18;;;10998:62;-1:-1:-1;;;11076:18:1;;;11069:39;11125:19;;44305:97:0;10919:231:1;44305:97:0;44415:32;44431:15;44415;:32::i;:::-;44097:358;:::o;32469:328::-;32644:41;12375:10;32677:7;32644:18;:41::i;:::-;32636:103;;;;-1:-1:-1;;;32636:103:0;;;;;;;:::i;:::-;32750:39;32764:4;32770:2;32774:7;32783:5;32750:13;:39::i;:::-;32469:328;;;;:::o;42558:::-;34372:4;34396:16;;;:7;:16;;;;;;42623:13;;-1:-1:-1;;;;;34396:16:0;42649:76;;;;-1:-1:-1;;;42649:76:0;;15974:2:1;42649:76:0;;;15956:21:1;16013:2;15993:18;;;15986:30;16052:34;16032:18;;;16025:62;-1:-1:-1;;;16103:18:1;;;16096:45;16158:19;;42649:76:0;15946:237:1;42649:76:0;42769:1;42751:7;42745:21;;;;;:::i;:::-;;;:25;:133;;;;;;;;;;;;;;;;;42816:19;;;;:10;:19;;;;;;42807:7;;42816:30;;:28;:30::i;:::-;42853:18;:7;:16;:18::i;:::-;42790:82;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42738:140;42558:328;-1:-1:-1;;42558:328:0:o;45805:406::-;45919:10;45898:17;45906:8;45898:7;:17::i;:::-;-1:-1:-1;;;;;45898:31:0;;45890:78;;;;-1:-1:-1;;;45890:78:0;;17194:2:1;45890:78:0;;;17176:21:1;17233:2;17213:18;;;17206:30;17272:34;17252:18;;;17245:62;-1:-1:-1;;;17323:18:1;;;17316:32;17365:19;;45890:78:0;17166:224:1;45890:78:0;45987:23;;;;:13;:23;;;;;;;;45979:57;;;;-1:-1:-1;;;45979:57:0;;9838:2:1;45979:57:0;;;9820:21:1;9877:2;9857:18;;;9850:30;-1:-1:-1;;;9896:18:1;;;9889:51;9957:18;;45979:57:0;9810:171:1;45979:57:0;46055:20;;;;:10;:20;;;;;;46079:9;-1:-1:-1;46055:33:0;46047:64;;;;-1:-1:-1;;;46047:64:0;;19056:2:1;46047:64:0;;;19038:21:1;19095:2;19075:18;;;19068:30;-1:-1:-1;;;19114:18:1;;;19107:48;19172:18;;46047:64:0;19028:168:1;46047:64:0;46124:20;;;;:10;:20;;;;;;;;;:31;;;46171:32;;19966:25:1;;;20007:18;;;20000:34;;;46171:32:0;;19939:18:1;46171:32:0;;;;;;;;45805:406;;:::o;43530:245::-;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;43633:11:::1;;43617:12;:27;;43609:73;;;::::0;-1:-1:-1;;;43609:73:0;;16792:2:1;43609:73:0::1;::::0;::::1;16774:21:1::0;16831:2;16811:18;;;16804:30;16870:34;16850:18;;;16843:62;-1:-1:-1;;;16921:18:1;;;16914:31;16962:19;;43609:73:0::1;16764:223:1::0;43609:73:0::1;43693:11;:26:::0;;;43735:32:::1;::::0;19756:25:1;;;43735:32:0::1;::::0;19744:2:1;19729:18;43735:32:0::1;19711:76:1::0;46703:255:0;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;46794:1:::1;46770:21;:25;46762:65;;;::::0;-1:-1:-1;;;46762:65:0;;12474:2:1;46762:65:0::1;::::0;::::1;12456:21:1::0;12513:2;12493:18;;;12486:30;12552:29;12532:18;;;12525:57;12599:18;;46762:65:0::1;12446:177:1::0;46762:65:0::1;46839:12;13492:6:::0;;46857:46:::1;::::0;-1:-1:-1;;;;;13492:6:0;;;;46877:21:::1;::::0;46839:12;46857:46;46839:12;46857:46;46877:21;13492:6;46857:46:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46838:65;;;46922:7;46914:36;;;::::0;-1:-1:-1;;;46914:36:0;;18711:2:1;46914:36:0::1;::::0;::::1;18693:21:1::0;18750:2;18730:18;;;18723:30;-1:-1:-1;;;18769:18:1;;;18762:46;18825:18;;46914:36:0::1;18683:166:1::0;14319:192:0;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14408:22:0;::::1;14400:73;;;::::0;-1:-1:-1;;;14400:73:0;;8722:2:1;14400:73:0::1;::::0;::::1;8704:21:1::0;8761:2;8741:18;;;8734:30;8800:34;8780:18;;;8773:62;-1:-1:-1;;;8851:18:1;;;8844:36;8897:19;;14400:73:0::1;8694:228:1::0;14400:73:0::1;14484:19;14494:8;14484:9;:19::i;45545:246::-:0;13465:7;13492:6;-1:-1:-1;;;;;13492:6:0;12375:10;13639:23;13631:68;;;;-1:-1:-1;;;13631:68:0;;;;;;;:::i;:::-;45640:23:::1;::::0;;;:13:::1;:23;::::0;;;;;::::1;;45632:60;;;::::0;-1:-1:-1;;;45632:60:0;;15621:2:1;45632:60:0::1;::::0;::::1;15603:21:1::0;15660:2;15640:18;;;15633:30;15699:26;15679:18;;;15672:54;15743:18;;45632:60:0::1;15593:174:1::0;45632:60:0::1;45703:20;::::0;;;:10:::1;:20;::::0;;;;;;;;:29;;;45748:35;;19966:25:1;;;20007:18;;;20000:34;;;45748:35:0::1;::::0;19939:18:1;45748:35:0::1;19921:119:1::0;38289:174:0;38364:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;38364:29:0;-1:-1:-1;;;;;38364:29:0;;;;;;;;:24;;38418:23;38364:24;38418:14;:23::i;:::-;-1:-1:-1;;;;;38409:46:0;;;;;;;;;;;38289:174;;:::o;44463:456::-;44574:11;;44538;;:32;;44554:15;44538;:32::i;:::-;:47;;44530:88;;;;-1:-1:-1;;;44530:88:0;;11704:2:1;44530:88:0;;;11686:21:1;11743:2;11723:18;;;11716:30;11782;11762:18;;;11755:58;11830:18;;44530:88:0;11676:178:1;44530:88:0;44647:11;;44631:13;44669:243;44689:15;44685:1;:19;44669:243;;;44726:10;44735:1;44726:10;;:::i;:::-;44765:11;;44726:10;;-1:-1:-1;44765:18:0;;44781:1;44765:15;:18::i;:::-;44751:11;:32;44800:28;44810:10;44822:5;44800:9;:28::i;:::-;44877:5;44865:10;44848:52;44884:15;44877:5;44884:8;:15::i;:::-;44848:52;;;;;;:::i;:::-;;;;;;;;44706:3;;;;:::i;:::-;;;;44669:243;;34601:348;34694:4;34396:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34396:16:0;34711:73;;;;-1:-1:-1;;;34711:73:0;;12061:2:1;34711:73:0;;;12043:21:1;12100:2;12080:18;;;12073:30;12139:34;12119:18;;;12112:62;-1:-1:-1;;;12190:18:1;;;12183:42;12242:19;;34711:73:0;12033:234:1;34711:73:0;34795:13;34811:23;34826:7;34811:14;:23::i;:::-;34795:39;;34864:5;-1:-1:-1;;;;;34853:16:0;:7;-1:-1:-1;;;;;34853:16:0;;:51;;;;34897:7;-1:-1:-1;;;;;34873:31:0;:20;34885:7;34873:11;:20::i;:::-;-1:-1:-1;;;;;34873:31:0;;34853:51;:87;;;-1:-1:-1;;;;;;31693:25:0;;;31669:4;31693:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;34908:32;34845:96;34601:348;-1:-1:-1;;;;34601:348:0:o;37593:578::-;37752:4;-1:-1:-1;;;;;37725:31:0;:23;37740:7;37725:14;:23::i;:::-;-1:-1:-1;;;;;37725:31:0;;37717:85;;;;-1:-1:-1;;;37717:85:0;;15211:2:1;37717:85:0;;;15193:21:1;15250:2;15230:18;;;15223:30;15289:34;15269:18;;;15262:62;-1:-1:-1;;;15340:18:1;;;15333:39;15389:19;;37717:85:0;15183:231:1;37717:85:0;-1:-1:-1;;;;;37821:16:0;;37813:65;;;;-1:-1:-1;;;37813:65:0;;10188:2:1;37813:65:0;;;10170:21:1;10227:2;10207:18;;;10200:30;10266:34;10246:18;;;10239:62;-1:-1:-1;;;10317:18:1;;;10310:34;10361:19;;37813:65:0;10160:226:1;37813:65:0;37995:29;38012:1;38016:7;37995:8;:29::i;:::-;-1:-1:-1;;;;;38037:15:0;;;;;;:9;:15;;;;;:20;;38056:1;;38037:15;:20;;38056:1;;38037:20;:::i;:::-;;;;-1:-1:-1;;;;;;;38068:13:0;;;;;;:9;:13;;;;;:18;;38085:1;;38068:13;:18;;38085:1;;38068:18;:::i;:::-;;;;-1:-1:-1;;38097:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;38097:21:0;-1:-1:-1;;;;;38097:21:0;;;;;;;;;38136:27;;38097:16;;38136:27;;;;;;;37593:578;;;:::o;14519:173::-;14575:16;14594:6;;-1:-1:-1;;;;;14611:17:0;;;-1:-1:-1;;;;;;14611:17:0;;;;;;14644:40;;14594:6;;;;;;;14644:40;;14575:16;14644:40;14519:173;;:::o;45107:430::-;45180:1;45156:21;:25;45148:61;;;;-1:-1:-1;;;45148:61:0;;9129:2:1;45148:61:0;;;9111:21:1;9168:2;9148:18;;;9141:30;9207:25;9187:18;;;9180:53;9250:18;;45148:61:0;9101:173:1;45148:61:0;45296:11;;45332:9;;45238:21;;45220:15;;45296:11;;;;-1:-1:-1;;;;;45296:11:0;;45320:31;;45347:3;;45320:22;;45238:21;;-1:-1:-1;;;45332:9:0;;;;45320:11;:22::i;:::-;:26;;:31::i;:::-;45296:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;45393:11:0;;45270:86;;-1:-1:-1;45368:19:0;;-1:-1:-1;;;;;45393:11:0;;;45417:31;;45444:3;;45417:22;;:7;;-1:-1:-1;;;45429:9:0;;;;45417:11;:22::i;:31::-;45393:60;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45367:86;;;45474:14;:32;;;;;45492:14;45474:32;45466:63;;;;-1:-1:-1;;;45466:63:0;;11357:2:1;45466:63:0;;;11339:21:1;11396:2;11376:18;;;11369:30;-1:-1:-1;;;11415:18:1;;;11408:48;11473:18;;45466:63:0;11329:168:1;8326:98:0;8384:7;8411:5;8415:1;8411;:5;:::i;:::-;8404:12;8326:98;-1:-1:-1;;;8326:98:0:o;33679:315::-;33836:28;33846:4;33852:2;33856:7;33836:9;:28::i;:::-;33883:48;33906:4;33912:2;33916:7;33925:5;33883:22;:48::i;:::-;33875:111;;;;-1:-1:-1;;;33875:111:0;;;;;;;:::i;15821:723::-;15877:13;16098:10;16094:53;;-1:-1:-1;;16125:10:0;;;;;;;;;;;;-1:-1:-1;;;16125:10:0;;;;;15821:723::o;16094:53::-;16172:5;16157:12;16213:78;16220:9;;16213:78;;16246:8;;;;:::i;:::-;;-1:-1:-1;16269:10:0;;-1:-1:-1;16277:2:0;16269:10;;:::i;:::-;;;16213:78;;;16301:19;16333:6;16323:17;;;;;;-1:-1:-1;;;16323:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16323:17:0;;16301:39;;16351:154;16358:10;;16351:154;;16385:11;16395:1;16385:11;;:::i;:::-;;-1:-1:-1;16454:10:0;16462:2;16454:5;:10;:::i;:::-;16441:24;;:2;:24;:::i;:::-;16428:39;;16411:6;16418;16411:14;;;;;;-1:-1:-1;;;16411:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16411:56:0;;;;;;;;-1:-1:-1;16482:11:0;16491:2;16482:11;;:::i;:::-;;;16351:154;;7588:98;7646:7;7673:5;7677:1;7673;:5;:::i;35291:110::-;35367:26;35377:2;35381:7;35367:26;;;;;;;;;;;;:9;:26::i;:::-;35291:110;;:::o;8725:98::-;8783:7;8810:5;8814:1;8810;:5;:::i;39028:799::-;39183:4;-1:-1:-1;;;;;39204:13:0;;18596:20;18644:8;39200:620;;39240:72;;-1:-1:-1;;;39240:72:0;;-1:-1:-1;;;;;39240:36:0;;;;;:72;;12375:10;;39291:4;;39297:7;;39306:5;;39240:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39240:72:0;;;;;;;;-1:-1:-1;;39240:72:0;;;;;;;;;;;;:::i;:::-;;;39236:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;39482:13:0;;39478:272;;39525:60;;-1:-1:-1;;;39525:60:0;;;;;;;:::i;39478:272::-;39700:6;39694:13;39685:6;39681:2;39677:15;39670:38;39236:529;-1:-1:-1;;;;;;39363:51:0;-1:-1:-1;;;39363:51:0;;-1:-1:-1;39356:58:0;;39200:620;-1:-1:-1;39804:4:0;39028:799;;;;;;:::o;35628:321::-;35758:18;35764:2;35768:7;35758:5;:18::i;:::-;35809:54;35840:1;35844:2;35848:7;35857:5;35809:22;:54::i;:::-;35787:154;;;;-1:-1:-1;;;35787:154:0;;;;;;;:::i;36285:382::-;-1:-1:-1;;;;;36365:16:0;;36357:61;;;;-1:-1:-1;;;36357:61:0;;14076:2:1;36357:61:0;;;14058:21:1;;;14095:18;;;14088:30;14154:34;14134:18;;;14127:62;14206:18;;36357:61:0;14048:182:1;36357:61:0;34372:4;34396:16;;;:7;:16;;;;;;-1:-1:-1;;;;;34396:16:0;:30;36429:58;;;;-1:-1:-1;;;36429:58:0;;9481:2:1;36429:58:0;;;9463:21:1;9520:2;9500:18;;;9493:30;9559;9539:18;;;9532:58;9607:18;;36429:58:0;9453:178:1;36429:58:0;-1:-1:-1;;;;;36558:13:0;;;;;;:9;:13;;;;;:18;;36575:1;;36558:13;:18;;36575:1;;36558:18;:::i;:::-;;;;-1:-1:-1;;36587:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36587:21:0;-1:-1:-1;;;;;36587:21:0;;;;;;;;36626:33;;36587:16;;;36626:33;;36587:16;;36626:33;36285:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:2;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:2;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:2;;;532:1;529;522:12;491:2;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;88:557;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:2;;813:1;810;803:12;747:2;699:124;;;:::o;828:196::-;887:6;940:2;928:9;919:7;915:23;911:32;908:2;;;961:6;953;946:22;908:2;989:29;1008:9;989:29;:::i;1029:270::-;1097:6;1105;1158:2;1146:9;1137:7;1133:23;1129:32;1126:2;;;1179:6;1171;1164:22;1126:2;1207:29;1226:9;1207:29;:::i;:::-;1197:39;;1255:38;1289:2;1278:9;1274:18;1255:38;:::i;:::-;1245:48;;1116:183;;;;;:::o;1304:338::-;1381:6;1389;1397;1450:2;1438:9;1429:7;1425:23;1421:32;1418:2;;;1471:6;1463;1456:22;1418:2;1499:29;1518:9;1499:29;:::i;:::-;1489:39;;1547:38;1581:2;1570:9;1566:18;1547:38;:::i;:::-;1537:48;;1632:2;1621:9;1617:18;1604:32;1594:42;;1408:234;;;;;:::o;1647:696::-;1742:6;1750;1758;1766;1819:3;1807:9;1798:7;1794:23;1790:33;1787:2;;;1841:6;1833;1826:22;1787:2;1869:29;1888:9;1869:29;:::i;:::-;1859:39;;1917:38;1951:2;1940:9;1936:18;1917:38;:::i;:::-;1907:48;;2002:2;1991:9;1987:18;1974:32;1964:42;;2057:2;2046:9;2042:18;2029:32;2084:18;2076:6;2073:30;2070:2;;;2121:6;2113;2106:22;2070:2;2149:22;;2202:4;2194:13;;2190:27;-1:-1:-1;2180:2:1;;2236:6;2228;2221:22;2180:2;2264:73;2329:7;2324:2;2311:16;2306:2;2302;2298:11;2264:73;:::i;:::-;2254:83;;;1777:566;;;;;;;:::o;2348:367::-;2413:6;2421;2474:2;2462:9;2453:7;2449:23;2445:32;2442:2;;;2495:6;2487;2480:22;2442:2;2523:29;2542:9;2523:29;:::i;:::-;2513:39;;2602:2;2591:9;2587:18;2574:32;2649:5;2642:13;2635:21;2628:5;2625:32;2615:2;;2676:6;2668;2661:22;2615:2;2704:5;2694:15;;;2432:283;;;;;:::o;2720:264::-;2788:6;2796;2849:2;2837:9;2828:7;2824:23;2820:32;2817:2;;;2870:6;2862;2855:22;2817:2;2898:29;2917:9;2898:29;:::i;:::-;2888:39;2974:2;2959:18;;;;2946:32;;-1:-1:-1;;;2807:177:1:o;2989:255::-;3047:6;3100:2;3088:9;3079:7;3075:23;3071:32;3068:2;;;3121:6;3113;3106:22;3068:2;3165:9;3152:23;3184:30;3208:5;3184:30;:::i;3249:259::-;3318:6;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3392:6;3384;3377:22;3339:2;3429:9;3423:16;3448:30;3472:5;3448:30;:::i;3513:480::-;3582:6;3635:2;3623:9;3614:7;3610:23;3606:32;3603:2;;;3656:6;3648;3641:22;3603:2;3701:9;3688:23;3734:18;3726:6;3723:30;3720:2;;;3771:6;3763;3756:22;3720:2;3799:22;;3852:4;3844:13;;3840:27;-1:-1:-1;3830:2:1;;3886:6;3878;3871:22;3830:2;3914:73;3979:7;3974:2;3961:16;3956:2;3952;3948:11;3914:73;:::i;3998:190::-;4057:6;4110:2;4098:9;4089:7;4085:23;4081:32;4078:2;;;4131:6;4123;4116:22;4078:2;-1:-1:-1;4159:23:1;;4068:120;-1:-1:-1;4068:120:1:o;4193:258::-;4261:6;4269;4322:2;4310:9;4301:7;4297:23;4293:32;4290:2;;;4343:6;4335;4328:22;4290:2;-1:-1:-1;;4371:23:1;;;4441:2;4426:18;;;4413:32;;-1:-1:-1;4280:171:1:o;4456:257::-;4497:3;4535:5;4529:12;4562:6;4557:3;4550:19;4578:63;4634:6;4627:4;4622:3;4618:14;4611:4;4604:5;4600:16;4578:63;:::i;:::-;4695:2;4674:15;-1:-1:-1;;4670:29:1;4661:39;;;;4702:4;4657:50;;4505:208;-1:-1:-1;;4505:208:1:o;4718:185::-;4760:3;4798:5;4792:12;4813:52;4858:6;4853:3;4846:4;4839:5;4835:16;4813:52;:::i;:::-;4881:16;;;;;4768:135;-1:-1:-1;;4768:135:1:o;5027:1385::-;5352:3;5381;5416:6;5410:13;5446:3;5468:1;5496:9;5492:2;5488:18;5478:28;;5556:2;5545:9;5541:18;5578;5568:2;;5622:4;5614:6;5610:17;5600:27;;5568:2;5648;5696;5688:6;5685:14;5665:18;5662:38;5659:2;;;-1:-1:-1;;;5723:33:1;;5779:4;5776:1;5769:15;5809:4;5730:3;5797:17;5659:2;5840:18;5867:104;;;;5985:1;5980:322;;;;5833:469;;5867:104;-1:-1:-1;;5900:24:1;;5888:37;;5945:16;;;;-1:-1:-1;5867:104:1;;5980:322;20281:4;20300:17;;;20350:4;20334:21;;6075:3;6091:165;6105:6;6102:1;6099:13;6091:165;;;6183:14;;6170:11;;;6163:35;6226:16;;;;6120:10;;6091:165;;;6095:3;;6285:6;6280:3;6276:16;6269:23;;5833:469;;;;;;;6318:88;6344:61;6374:30;6400:3;6392:6;6374:30;:::i;:::-;-1:-1:-1;;;4973:16:1;;5014:1;5005:11;;4963:59;6344:61;6336:6;6318:88;:::i;:::-;6311:95;5360:1052;-1:-1:-1;;;;;;5360:1052:1:o;6835:488::-;-1:-1:-1;;;;;7104:15:1;;;7086:34;;7156:15;;7151:2;7136:18;;7129:43;7203:2;7188:18;;7181:34;;;7251:3;7246:2;7231:18;;7224:31;;;7029:4;;7272:45;;7297:19;;7289:6;7272:45;:::i;7520:219::-;7669:2;7658:9;7651:21;7632:4;7689:44;7729:2;7718:9;7714:18;7706:6;7689:44;:::i;8101:414::-;8303:2;8285:21;;;8342:2;8322:18;;;8315:30;8381:34;8376:2;8361:18;;8354:62;-1:-1:-1;;;8447:2:1;8432:18;;8425:48;8505:3;8490:19;;8275:240::o;14648:356::-;14850:2;14832:21;;;14869:18;;;14862:30;14928:34;14923:2;14908:18;;14901:62;14995:2;14980:18;;14822:182::o;17741:413::-;17943:2;17925:21;;;17982:2;17962:18;;;17955:30;18021:34;18016:2;18001:18;;17994:62;-1:-1:-1;;;18087:2:1;18072:18;;18065:47;18144:3;18129:19;;17915:239::o;20366:128::-;20406:3;20437:1;20433:6;20430:1;20427:13;20424:2;;;20443:18;;:::i;:::-;-1:-1:-1;20479:9:1;;20414:80::o;20499:120::-;20539:1;20565;20555:2;;20570:18;;:::i;:::-;-1:-1:-1;20604:9:1;;20545:74::o;20624:168::-;20664:7;20730:1;20726;20722:6;20718:14;20715:1;20712:21;20707:1;20700:9;20693:17;20689:45;20686:2;;;20737:18;;:::i;:::-;-1:-1:-1;20777:9:1;;20676:116::o;20797:125::-;20837:4;20865:1;20862;20859:8;20856:2;;;20870:18;;:::i;:::-;-1:-1:-1;20907:9:1;;20846:76::o;20927:258::-;20999:1;21009:113;21023:6;21020:1;21017:13;21009:113;;;21099:11;;;21093:18;21080:11;;;21073:39;21045:2;21038:10;21009:113;;;21140:6;21137:1;21134:13;21131:2;;;-1:-1:-1;;21175:1:1;21157:16;;21150:27;20980:205::o;21190:380::-;21269:1;21265:12;;;;21312;;;21333:2;;21387:4;21379:6;21375:17;21365:27;;21333:2;21440;21432:6;21429:14;21409:18;21406:38;21403:2;;;21486:10;21481:3;21477:20;21474:1;21467:31;21521:4;21518:1;21511:15;21549:4;21546:1;21539:15;21403:2;;21245:325;;;:::o;21575:135::-;21614:3;-1:-1:-1;;21635:17:1;;21632:2;;;21655:18;;:::i;:::-;-1:-1:-1;21702:1:1;21691:13;;21622:88::o;21715:112::-;21747:1;21773;21763:2;;21778:18;;:::i;:::-;-1:-1:-1;21812:9:1;;21753:74::o;21832:127::-;21893:10;21888:3;21884:20;21881:1;21874:31;21924:4;21921:1;21914:15;21948:4;21945:1;21938:15;21964:127;22025:10;22020:3;22016:20;22013:1;22006:31;22056:4;22053:1;22046:15;22080:4;22077:1;22070:15;22096:127;22157:10;22152:3;22148:20;22145:1;22138:31;22188:4;22185:1;22178:15;22212:4;22209:1;22202:15;22228:131;-1:-1:-1;;;;;;22302:32:1;;22292:43;;22282:2;;22349:1;22346;22339:12

Swarm Source

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