ETH Price: $2,516.11 (-0.96%)

Token

Quant Role Play (QRP)
 

Overview

Max Total Supply

91 QRP

Holders

72

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 QRP
0x0000000000000000000000000000000000000000
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:
QuantRolePlay

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-03
*/

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;








error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view override returns (address) {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
            return retval == IERC721Receiver(to).onERC721Received.selector;
        } catch (bytes memory reason) {
            if (reason.length == 0) {
                revert TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

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

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

// File: Quant Role Play.sol



pragma solidity 0.8.4;


contract QuantRolePlay is ERC721A{
    
    string public baseTokenURI;
    string public tokenURI1 = "https://ivory-causal-goat-321.mypinata.cloud/ipfs/QmUFZWdB7VCatTuU6AricXSm3bPXyNcNCpqrPPSNsiL1qg/";

    bool checkWL;
    bool checkGuaranteed;
    bool checkAllNFT;

    uint countWL;
    uint countGuaranteed;

    mapping (address => uint256) WLadr;
    mapping (address => uint256) Guaranteedadr;
 
    address owner;

    constructor() ERC721A("Quant Role Play", "QRP"){

       owner = 0xBe1438E47b0161611245691C9999B046216AbE33;

       countWL = 1500;
       countGuaranteed = 500;
       checkWL = true;
       checkGuaranteed = true;

    }

    function mintComandDevelopers() public {
         require(msg.sender == owner);
       for(uint256 i = 0; i < 222;i++){
          _mint(0xBE235Cc0f6bA151D473b818Eb24e21a741898D70,1,"",false);
       }
    }

  
    function CheckOwner() public view returns  (address){
       return  owner;
    }

    function TransferOwnersRules(address newOwner) public {
        require(msg.sender == owner);
        owner = newOwner;
    }

    function WL() public payable   {
       require(checkWL == true, "not active");
       require(countWL > 0,"Lost count");
       require(msg.value >= 0.009 ether, "No ETHER");
       require(WLadr[msg.sender] <2,"you received more than 1 nft");
       _mint(msg.sender,1,"",false);
      WLadr[msg.sender]++;

       countWL--;
         
    }

    
    
      function Guaranteed() public payable   {
      require(checkGuaranteed == true, "not active");
      require(countGuaranteed > 0,"Lost count");
      require(msg.value >= 0.009 ether, "No ETHER");
      require(Guaranteedadr[msg.sender] < 2,"you received more than 1 nft");
      Guaranteedadr[msg.sender]++;

       _mint(msg.sender,1,"",false);

      countGuaranteed--;
         
    }

    function AllNFT() public payable   {
         require(checkAllNFT == true, "not active");
       require(msg.value >= 0.012 ether, "No ETHER");
       _mint(msg.sender,1,"",false);
         
    }

    function SetcheckGuaranteed() public {
         require(msg.sender == owner);
         checkGuaranteed = !checkGuaranteed;
    }
    
    function SetcheckAllNFT() public {
         require(msg.sender == owner);
         checkAllNFT = !checkAllNFT;
    }

     function SetcheckWL() public {
         require(msg.sender == owner);
         checkWL = !checkWL;
    }

    function Withdraw() public  {
       require(msg.sender == owner);
       payable(msg.sender).transfer(address(this).balance);
    }

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

    function setBaseTokenURI(string memory _baseTokenURI) public {
    baseTokenURI = _baseTokenURI;
    }

    function setURI(string memory newURI) public {
       tokenURI1 = newURI;
    } 

   function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        return string(string(abi.encodePacked( tokenURI1, 
        Strings.toString(tokenId),
        ".json")));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"AllNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"CheckOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Guaranteed","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SetcheckAllNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetcheckGuaranteed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"SetcheckWL","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"TransferOwnersRules","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"Withdraw","outputs":[],"stateMutability":"nonpayable","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mintComandDevelopers","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_baseTokenURI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenURI1","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"}]

610120604052606160808181529062001d3360a03980516200002a91600991602090910190620000f1565b503480156200003857600080fd5b50604080518082018252600f81526e5175616e7420526f6c6520506c617960881b60208083019182528351808501909452600384526205152560ec1b9084015281519192916200008b91600291620000f1565b508051620000a1906003906020840190620000f1565b50600080555050600f80546001600160a01b03191673be1438e47b0161611245691c9999b046216abe331790556105dc600b556101f4600c55600a805461010161ffff19909116179055620001d4565b828054620000ff9062000197565b90600052602060002090601f0160209004810192826200012357600085556200016e565b82601f106200013e57805160ff19168380011785556200016e565b828001600101855582156200016e579182015b828111156200016e57825182559160200191906001019062000151565b506200017c92915062000180565b5090565b5b808211156200017c576000815560010162000181565b600181811c90821680620001ac57607f821691505b60208210811415620001ce57634e487b7160e01b600052602260045260246000fd5b50919050565b611b4f80620001e46000396000f3fe6080604052600436106101b75760003560e01c80636352211e116100ec578063ac62597b1161008a578063c99845e211610064578063c99845e214610473578063d547cfb71461047b578063e985e9c514610490578063fb0c6bfb146104d957600080fd5b8063ac62597b1461041e578063b88d4fde14610433578063c87b56dd1461045357600080fd5b806396314b72116100c657806396314b72146103c15780639e4a19b7146103e1578063a22cb465146103f6578063a23922311461041657600080fd5b80636352211e1461036c57806370a082311461038c57806395d89b41146103ac57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030d5780634d0830fb1461032d57806357ea89b614610342578063612640b31461035757600080fd5b806323b872dd146102b857806330176e13146102d8578063307f1a6e146102f857600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d5780631a1feb92146102b057600080fd5b806301ffc9a7146101bc57806302fe5305146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046117a3565b6104f7565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c3660046117db565b610549565b005b34801561021f57600080fd5b50610228610560565b6040516101e89190611978565b34801561024157600080fd5b50610255610250366004611821565b6105f2565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b5061021161028836600461177a565b610636565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b6102116106c4565b3480156102c457600080fd5b506102116102d336600461168c565b61080d565b3480156102e457600080fd5b506102116102f33660046117db565b610818565b34801561030457600080fd5b5061021161082b565b34801561031957600080fd5b5061021161032836600461168c565b610894565b34801561033957600080fd5b506102116108af565b34801561034e57600080fd5b506102116108e3565b34801561036357600080fd5b50610228610926565b34801561037857600080fd5b50610255610387366004611821565b6109b4565b34801561039857600080fd5b506102a26103a7366004611639565b6109c6565b3480156103b857600080fd5b50610228610a15565b3480156103cd57600080fd5b506102116103dc366004611639565b610a24565b3480156103ed57600080fd5b50610211610a5d565b34801561040257600080fd5b50610211610411366004611740565b610a93565b610211610b29565b34801561042a57600080fd5b50610211610b9c565b34801561043f57600080fd5b5061021161044e3660046116c7565b610bc7565b34801561045f57600080fd5b5061022861046e366004611821565b610c18565b610211610c4c565b34801561048757600080fd5b50610228610d8b565b34801561049c57600080fd5b506101dc6104ab36600461165a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e557600080fd5b50600f546001600160a01b0316610255565b60006001600160e01b031982166380ac58cd60e01b148061052857506001600160e01b03198216635b5e139f60e01b145b8061054357506301ffc9a760e01b6001600160e01b03198316145b92915050565b805161055c90600990602084019061150e565b5050565b60606002805461056f90611a57565b80601f016020809104026020016040519081016040528092919081815260200182805461059b90611a57565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b60006105fd82610d98565b61061a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610641826109b4565b9050806001600160a01b0316836001600160a01b031614156106765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610696575061069481336104ab565b155b156106b4576040516367d9dca160e11b815260040160405180910390fd5b6106bf838383610dc3565b505050565b600a5460ff1615156001146106f45760405162461bcd60e51b81526004016106eb9061198b565b60405180910390fd5b6000600b54116107335760405162461bcd60e51b815260206004820152600a602482015269131bdcdd0818dbdd5b9d60b21b60448201526064016106eb565b661ff973cafa800034101561075a5760405162461bcd60e51b81526004016106eb906119af565b336000908152600d60205260409020546002116107b95760405162461bcd60e51b815260206004820152601c60248201527f796f75207265636569766564206d6f7265207468616e2031206e66740000000060448201526064016106eb565b6107d6336001604051806020016040528060008152506000610e1f565b336000908152600d602052604081208054916107f183611a92565b9091555050600b805490600061080683611a40565b9190505550565b6106bf838383610ff3565b805161055c90600890602084019061150e565b600f546001600160a01b0316331461084257600080fd5b60005b60de8110156108915761087f73be235cc0f6ba151d473b818eb24e21a741898d706001604051806020016040528060008152506000610e1f565b8061088981611a92565b915050610845565b50565b6106bf83838360405180602001604052806000815250610bc7565b600f546001600160a01b031633146108c657600080fd5b600a805461ff001981166101009182900460ff1615909102179055565b600f546001600160a01b031633146108fa57600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610891573d6000803e3d6000fd5b6009805461093390611a57565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90611a57565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b505050505081565b60006109bf826111e0565b5192915050565b60006001600160a01b0382166109ef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b60606003805461056f90611a57565b600f546001600160a01b03163314610a3b57600080fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b03163314610a7457600080fd5b600a805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b038216331415610abd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5462010000900460ff161515600114610b565760405162461bcd60e51b81526004016106eb9061198b565b662aa1efb94e0000341015610b7d5760405162461bcd60e51b81526004016106eb906119af565b610b9a336001604051806020016040528060008152506000610e1f565b565b600f546001600160a01b03163314610bb357600080fd5b600a805460ff19811660ff90911615179055565b610bd2848484610ff3565b6001600160a01b0383163b15158015610bf45750610bf2848484846112fc565b155b15610c12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606009610c25836113f4565b604051602001610c36929190611881565b6040516020818303038152906040529050919050565b600a5460ff610100909104161515600114610c795760405162461bcd60e51b81526004016106eb9061198b565b6000600c5411610cb85760405162461bcd60e51b815260206004820152600a602482015269131bdcdd0818dbdd5b9d60b21b60448201526064016106eb565b661ff973cafa8000341015610cdf5760405162461bcd60e51b81526004016106eb906119af565b336000908152600e6020526040902054600211610d3e5760405162461bcd60e51b815260206004820152601c60248201527f796f75207265636569766564206d6f7265207468616e2031206e66740000000060448201526064016106eb565b336000908152600e60205260408120805491610d5983611a92565b9190505550610d7b336001604051806020016040528060008152506000610e1f565b600c805490600061080683611a40565b6008805461093390611a57565b6000805482108015610543575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b038516610e4857604051622e076360e81b815260040160405180910390fd5b83610e665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f1857506001600160a01b0387163b15155b15610fa1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610f6960008884806001019550886112fc565b610f86576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610f1e578260005414610f9c57600080fd5b610fe7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415610fa2575b506000555b5050505050565b6000610ffe826111e0565b9050836001600160a01b031681600001516001600160a01b0316146110355760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611053575061105385336104ab565b8061106e575033611063846105f2565b6001600160a01b0316145b90508061108e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110b557604051633a954ecd60e21b815260040160405180910390fd5b6110c160008487610dc3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611197576000548214611197578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fec565b6040805160608101825260008082526020820181905291810191909152816000548110156112e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e15780516001600160a01b031615611277579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112dc579392505050565b611277565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061133190339089908890889060040161193b565b602060405180830381600087803b15801561134b57600080fd5b505af192505050801561137b575060408051601f3d908101601f19168201909252611378918101906117bf565b60015b6113d6573d8080156113a9576040519150601f19603f3d011682016040523d82523d6000602084013e6113ae565b606091505b5080516113ce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816114185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611442578061142c81611a92565b915061143b9050600a836119e9565b915061141c565b60008167ffffffffffffffff81111561146b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611495576020820181803683370190505b5090505b84156113ec576114aa6001836119fd565b91506114b7600a86611aad565b6114c29060306119d1565b60f81b8183815181106114e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611507600a866119e9565b9450611499565b82805461151a90611a57565b90600052602060002090601f01602090048101928261153c5760008555611582565b82601f1061155557805160ff1916838001178555611582565b82800160010185558215611582579182015b82811115611582578251825591602001919060010190611567565b5061158e929150611592565b5090565b5b8082111561158e5760008155600101611593565b600067ffffffffffffffff808411156115c2576115c2611aed565b604051601f8501601f19908116603f011681019082821181831017156115ea576115ea611aed565b8160405280935085815286868601111561160357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461163457600080fd5b919050565b60006020828403121561164a578081fd5b6116538261161d565b9392505050565b6000806040838503121561166c578081fd5b6116758361161d565b91506116836020840161161d565b90509250929050565b6000806000606084860312156116a0578081fd5b6116a98461161d565b92506116b76020850161161d565b9150604084013590509250925092565b600080600080608085870312156116dc578081fd5b6116e58561161d565b93506116f36020860161161d565b925060408501359150606085013567ffffffffffffffff811115611715578182fd5b8501601f81018713611725578182fd5b611734878235602084016115a7565b91505092959194509250565b60008060408385031215611752578182fd5b61175b8361161d565b91506020830135801515811461176f578182fd5b809150509250929050565b6000806040838503121561178c578182fd5b6117958361161d565b946020939093013593505050565b6000602082840312156117b4578081fd5b813561165381611b03565b6000602082840312156117d0578081fd5b815161165381611b03565b6000602082840312156117ec578081fd5b813567ffffffffffffffff811115611802578182fd5b8201601f81018413611812578182fd5b6113ec848235602084016115a7565b600060208284031215611832578081fd5b5035919050565b60008151808452611851816020860160208601611a14565b601f01601f19169290920160200192915050565b60008151611877818560208601611a14565b9290920192915050565b600080845482600182811c91508083168061189d57607f831692505b60208084108214156118bd57634e487b7160e01b87526022600452602487fd5b8180156118d157600181146118e25761190e565b60ff1986168952848901965061190e565b60008b815260209020885b868110156119065781548b8201529085019083016118ed565b505084890196505b5050505050506119326119218286611865565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061196e90830184611839565b9695505050505050565b6020815260006116536020830184611839565b6020808252600a90820152696e6f742061637469766560b01b604082015260600190565b60208082526008908201526727379022aa2422a960c11b604082015260600190565b600082198211156119e4576119e4611ac1565b500190565b6000826119f8576119f8611ad7565b500490565b600082821015611a0f57611a0f611ac1565b500390565b60005b83811015611a2f578181015183820152602001611a17565b83811115610c125750506000910152565b600081611a4f57611a4f611ac1565b506000190190565b600181811c90821680611a6b57607f821691505b60208210811415611a8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611aa657611aa6611ac1565b5060010190565b600082611abc57611abc611ad7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461089157600080fdfea264697066735822122047ddacc01ca4219396cd05b8d4e35d85040b2a749b3d14595a1f397dc57e291764736f6c6343000804003368747470733a2f2f69766f72792d63617573616c2d676f61742d3332312e6d7970696e6174612e636c6f75642f697066732f516d55465a5764423756436174547555364172696358536d33625058794e634e437071725050534e73694c3171672f

Deployed Bytecode

0x6080604052600436106101b75760003560e01c80636352211e116100ec578063ac62597b1161008a578063c99845e211610064578063c99845e214610473578063d547cfb71461047b578063e985e9c514610490578063fb0c6bfb146104d957600080fd5b8063ac62597b1461041e578063b88d4fde14610433578063c87b56dd1461045357600080fd5b806396314b72116100c657806396314b72146103c15780639e4a19b7146103e1578063a22cb465146103f6578063a23922311461041657600080fd5b80636352211e1461036c57806370a082311461038c57806395d89b41146103ac57600080fd5b806323b872dd1161015957806342842e0e1161013357806342842e0e1461030d5780634d0830fb1461032d57806357ea89b614610342578063612640b31461035757600080fd5b806323b872dd146102b857806330176e13146102d8578063307f1a6e146102f857600080fd5b8063081812fc11610195578063081812fc14610235578063095ea7b31461026d57806318160ddd1461028d5780631a1feb92146102b057600080fd5b806301ffc9a7146101bc57806302fe5305146101f157806306fdde0314610213575b600080fd5b3480156101c857600080fd5b506101dc6101d73660046117a3565b6104f7565b60405190151581526020015b60405180910390f35b3480156101fd57600080fd5b5061021161020c3660046117db565b610549565b005b34801561021f57600080fd5b50610228610560565b6040516101e89190611978565b34801561024157600080fd5b50610255610250366004611821565b6105f2565b6040516001600160a01b0390911681526020016101e8565b34801561027957600080fd5b5061021161028836600461177a565b610636565b34801561029957600080fd5b50600154600054035b6040519081526020016101e8565b6102116106c4565b3480156102c457600080fd5b506102116102d336600461168c565b61080d565b3480156102e457600080fd5b506102116102f33660046117db565b610818565b34801561030457600080fd5b5061021161082b565b34801561031957600080fd5b5061021161032836600461168c565b610894565b34801561033957600080fd5b506102116108af565b34801561034e57600080fd5b506102116108e3565b34801561036357600080fd5b50610228610926565b34801561037857600080fd5b50610255610387366004611821565b6109b4565b34801561039857600080fd5b506102a26103a7366004611639565b6109c6565b3480156103b857600080fd5b50610228610a15565b3480156103cd57600080fd5b506102116103dc366004611639565b610a24565b3480156103ed57600080fd5b50610211610a5d565b34801561040257600080fd5b50610211610411366004611740565b610a93565b610211610b29565b34801561042a57600080fd5b50610211610b9c565b34801561043f57600080fd5b5061021161044e3660046116c7565b610bc7565b34801561045f57600080fd5b5061022861046e366004611821565b610c18565b610211610c4c565b34801561048757600080fd5b50610228610d8b565b34801561049c57600080fd5b506101dc6104ab36600461165a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104e557600080fd5b50600f546001600160a01b0316610255565b60006001600160e01b031982166380ac58cd60e01b148061052857506001600160e01b03198216635b5e139f60e01b145b8061054357506301ffc9a760e01b6001600160e01b03198316145b92915050565b805161055c90600990602084019061150e565b5050565b60606002805461056f90611a57565b80601f016020809104026020016040519081016040528092919081815260200182805461059b90611a57565b80156105e85780601f106105bd576101008083540402835291602001916105e8565b820191906000526020600020905b8154815290600101906020018083116105cb57829003601f168201915b5050505050905090565b60006105fd82610d98565b61061a576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610641826109b4565b9050806001600160a01b0316836001600160a01b031614156106765760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610696575061069481336104ab565b155b156106b4576040516367d9dca160e11b815260040160405180910390fd5b6106bf838383610dc3565b505050565b600a5460ff1615156001146106f45760405162461bcd60e51b81526004016106eb9061198b565b60405180910390fd5b6000600b54116107335760405162461bcd60e51b815260206004820152600a602482015269131bdcdd0818dbdd5b9d60b21b60448201526064016106eb565b661ff973cafa800034101561075a5760405162461bcd60e51b81526004016106eb906119af565b336000908152600d60205260409020546002116107b95760405162461bcd60e51b815260206004820152601c60248201527f796f75207265636569766564206d6f7265207468616e2031206e66740000000060448201526064016106eb565b6107d6336001604051806020016040528060008152506000610e1f565b336000908152600d602052604081208054916107f183611a92565b9091555050600b805490600061080683611a40565b9190505550565b6106bf838383610ff3565b805161055c90600890602084019061150e565b600f546001600160a01b0316331461084257600080fd5b60005b60de8110156108915761087f73be235cc0f6ba151d473b818eb24e21a741898d706001604051806020016040528060008152506000610e1f565b8061088981611a92565b915050610845565b50565b6106bf83838360405180602001604052806000815250610bc7565b600f546001600160a01b031633146108c657600080fd5b600a805461ff001981166101009182900460ff1615909102179055565b600f546001600160a01b031633146108fa57600080fd5b60405133904780156108fc02916000818181858888f19350505050158015610891573d6000803e3d6000fd5b6009805461093390611a57565b80601f016020809104026020016040519081016040528092919081815260200182805461095f90611a57565b80156109ac5780601f10610981576101008083540402835291602001916109ac565b820191906000526020600020905b81548152906001019060200180831161098f57829003601f168201915b505050505081565b60006109bf826111e0565b5192915050565b60006001600160a01b0382166109ef576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b60606003805461056f90611a57565b600f546001600160a01b03163314610a3b57600080fd5b600f80546001600160a01b0319166001600160a01b0392909216919091179055565b600f546001600160a01b03163314610a7457600080fd5b600a805462ff0000198116620100009182900460ff1615909102179055565b6001600160a01b038216331415610abd5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a5462010000900460ff161515600114610b565760405162461bcd60e51b81526004016106eb9061198b565b662aa1efb94e0000341015610b7d5760405162461bcd60e51b81526004016106eb906119af565b610b9a336001604051806020016040528060008152506000610e1f565b565b600f546001600160a01b03163314610bb357600080fd5b600a805460ff19811660ff90911615179055565b610bd2848484610ff3565b6001600160a01b0383163b15158015610bf45750610bf2848484846112fc565b155b15610c12576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606009610c25836113f4565b604051602001610c36929190611881565b6040516020818303038152906040529050919050565b600a5460ff610100909104161515600114610c795760405162461bcd60e51b81526004016106eb9061198b565b6000600c5411610cb85760405162461bcd60e51b815260206004820152600a602482015269131bdcdd0818dbdd5b9d60b21b60448201526064016106eb565b661ff973cafa8000341015610cdf5760405162461bcd60e51b81526004016106eb906119af565b336000908152600e6020526040902054600211610d3e5760405162461bcd60e51b815260206004820152601c60248201527f796f75207265636569766564206d6f7265207468616e2031206e66740000000060448201526064016106eb565b336000908152600e60205260408120805491610d5983611a92565b9190505550610d7b336001604051806020016040528060008152506000610e1f565b600c805490600061080683611a40565b6008805461093390611a57565b6000805482108015610543575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000546001600160a01b038516610e4857604051622e076360e81b815260040160405180910390fd5b83610e665760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015610f1857506001600160a01b0387163b15155b15610fa1575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4610f6960008884806001019550886112fc565b610f86576040516368d2bf6b60e11b815260040160405180910390fd5b80821415610f1e578260005414610f9c57600080fd5b610fe7565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821415610fa2575b506000555b5050505050565b6000610ffe826111e0565b9050836001600160a01b031681600001516001600160a01b0316146110355760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611053575061105385336104ab565b8061106e575033611063846105f2565b6001600160a01b0316145b90508061108e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b0384166110b557604051633a954ecd60e21b815260040160405180910390fd5b6110c160008487610dc3565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611197576000548214611197578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610fec565b6040805160608101825260008082526020820181905291810191909152816000548110156112e357600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906112e15780516001600160a01b031615611277579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156112dc579392505050565b611277565b505b604051636f96cda160e11b815260040160405180910390fd5b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061133190339089908890889060040161193b565b602060405180830381600087803b15801561134b57600080fd5b505af192505050801561137b575060408051601f3d908101601f19168201909252611378918101906117bf565b60015b6113d6573d8080156113a9576040519150601f19603f3d011682016040523d82523d6000602084013e6113ae565b606091505b5080516113ce576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816114185750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611442578061142c81611a92565b915061143b9050600a836119e9565b915061141c565b60008167ffffffffffffffff81111561146b57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611495576020820181803683370190505b5090505b84156113ec576114aa6001836119fd565b91506114b7600a86611aad565b6114c29060306119d1565b60f81b8183815181106114e557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611507600a866119e9565b9450611499565b82805461151a90611a57565b90600052602060002090601f01602090048101928261153c5760008555611582565b82601f1061155557805160ff1916838001178555611582565b82800160010185558215611582579182015b82811115611582578251825591602001919060010190611567565b5061158e929150611592565b5090565b5b8082111561158e5760008155600101611593565b600067ffffffffffffffff808411156115c2576115c2611aed565b604051601f8501601f19908116603f011681019082821181831017156115ea576115ea611aed565b8160405280935085815286868601111561160357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b038116811461163457600080fd5b919050565b60006020828403121561164a578081fd5b6116538261161d565b9392505050565b6000806040838503121561166c578081fd5b6116758361161d565b91506116836020840161161d565b90509250929050565b6000806000606084860312156116a0578081fd5b6116a98461161d565b92506116b76020850161161d565b9150604084013590509250925092565b600080600080608085870312156116dc578081fd5b6116e58561161d565b93506116f36020860161161d565b925060408501359150606085013567ffffffffffffffff811115611715578182fd5b8501601f81018713611725578182fd5b611734878235602084016115a7565b91505092959194509250565b60008060408385031215611752578182fd5b61175b8361161d565b91506020830135801515811461176f578182fd5b809150509250929050565b6000806040838503121561178c578182fd5b6117958361161d565b946020939093013593505050565b6000602082840312156117b4578081fd5b813561165381611b03565b6000602082840312156117d0578081fd5b815161165381611b03565b6000602082840312156117ec578081fd5b813567ffffffffffffffff811115611802578182fd5b8201601f81018413611812578182fd5b6113ec848235602084016115a7565b600060208284031215611832578081fd5b5035919050565b60008151808452611851816020860160208601611a14565b601f01601f19169290920160200192915050565b60008151611877818560208601611a14565b9290920192915050565b600080845482600182811c91508083168061189d57607f831692505b60208084108214156118bd57634e487b7160e01b87526022600452602487fd5b8180156118d157600181146118e25761190e565b60ff1986168952848901965061190e565b60008b815260209020885b868110156119065781548b8201529085019083016118ed565b505084890196505b5050505050506119326119218286611865565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061196e90830184611839565b9695505050505050565b6020815260006116536020830184611839565b6020808252600a90820152696e6f742061637469766560b01b604082015260600190565b60208082526008908201526727379022aa2422a960c11b604082015260600190565b600082198211156119e4576119e4611ac1565b500190565b6000826119f8576119f8611ad7565b500490565b600082821015611a0f57611a0f611ac1565b500390565b60005b83811015611a2f578181015183820152602001611a17565b83811115610c125750506000910152565b600081611a4f57611a4f611ac1565b506000190190565b600181811c90821680611a6b57607f821691505b60208210811415611a8c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611aa657611aa6611ac1565b5060010190565b600082611abc57611abc611ad7565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461089157600080fdfea264697066735822122047ddacc01ca4219396cd05b8d4e35d85040b2a749b3d14595a1f397dc57e291764736f6c63430008040033

Deployed Bytecode Sourcemap

42264:3191:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24442:305;;;;;;;;;;-1:-1:-1;24442:305:0;;;;;:::i;:::-;;:::i;:::-;;;6939:14:1;;6932:22;6914:41;;6902:2;6887:18;24442:305:0;;;;;;;;45150:81;;;;;;;;;;-1:-1:-1;45150:81:0;;;;;:::i;:::-;;:::i;:::-;;27555:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29058:204::-;;;;;;;;;;-1:-1:-1;29058:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6237:32:1;;;6219:51;;6207:2;6192:18;29058:204:0;6174:102:1;28621:371:0;;;;;;;;;;-1:-1:-1;28621:371:0;;;;;:::i;:::-;;:::i;23691:303::-;;;;;;;;;;-1:-1:-1;23945:12:0;;23735:7;23929:13;:28;23691:303;;;8707:25:1;;;8695:2;8680:18;23691:303:0;8662:76:1;43401:353:0;;;:::i;29923:170::-;;;;;;;;;;-1:-1:-1;29923:170:0;;;;;:::i;:::-;;:::i;45038:104::-;;;;;;;;;;-1:-1:-1;45038:104:0;;;;;:::i;:::-;;:::i;42951:211::-;;;;;;;;;;;;;:::i;30164:185::-;;;;;;;;;;-1:-1:-1;30164:185:0;;;;;:::i;:::-;;:::i;44392:131::-;;;;;;;;;;;;;:::i;44778:135::-;;;;;;;;;;;;;:::i;42343:125::-;;;;;;;;;;;;;:::i;27363:::-;;;;;;;;;;-1:-1:-1;27363:125:0;;;;;:::i;:::-;;:::i;24811:206::-;;;;;;;;;;-1:-1:-1;24811:206:0;;;;;:::i;:::-;;:::i;27724:104::-;;;;;;;;;;;;;:::i;43265:128::-;;;;;;;;;;-1:-1:-1;43265:128:0;;;;;:::i;:::-;;:::i;44535:119::-;;;;;;;;;;;;;:::i;29334:287::-;;;;;;;;;;-1:-1:-1;29334:287:0;;;;;:::i;:::-;;:::i;44183:201::-;;;:::i;44663:107::-;;;;;;;;;;;;;:::i;30420:369::-;;;;;;;;;;-1:-1:-1;30420:369:0;;;;;:::i;:::-;;:::i;45239:213::-;;;;;;;;;;-1:-1:-1;45239:213:0;;;;;:::i;:::-;;:::i;43776:399::-;;;:::i;42310:26::-;;;;;;;;;;;;;:::i;29692:164::-;;;;;;;;;;-1:-1:-1;29692:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;29813:25:0;;;29789:4;29813:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29692:164;43174:83;;;;;;;;;;-1:-1:-1;43244:5:0;;-1:-1:-1;;;;;43244:5:0;43174:83;;24442:305;24544:4;-1:-1:-1;;;;;;24581:40:0;;-1:-1:-1;;;24581:40:0;;:105;;-1:-1:-1;;;;;;;24638:48:0;;-1:-1:-1;;;24638:48:0;24581:105;:158;;;-1:-1:-1;;;;;;;;;;14442:40:0;;;24703:36;24561:178;24442:305;-1:-1:-1;;24442:305:0:o;45150:81::-;45205:18;;;;:9;;:18;;;;;:::i;:::-;;45150:81;:::o;27555:100::-;27609:13;27642:5;27635:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27555:100;:::o;29058:204::-;29126:7;29151:16;29159:7;29151;:16::i;:::-;29146:64;;29176:34;;-1:-1:-1;;;29176:34:0;;;;;;;;;;;29146:64;-1:-1:-1;29230:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29230:24:0;;29058:204::o;28621:371::-;28694:13;28710:24;28726:7;28710:15;:24::i;:::-;28694:40;;28755:5;-1:-1:-1;;;;;28749:11:0;:2;-1:-1:-1;;;;;28749:11:0;;28745:48;;;28769:24;;-1:-1:-1;;;28769:24:0;;;;;;;;;;;28745:48;2883:10;-1:-1:-1;;;;;28810:21:0;;;;;;:63;;-1:-1:-1;28836:37:0;28853:5;2883:10;29692:164;:::i;28836:37::-;28835:38;28810:63;28806:138;;;28897:35;;-1:-1:-1;;;28897:35:0;;;;;;;;;;;28806:138;28956:28;28965:2;28969:7;28978:5;28956:8;:28::i;:::-;28621:371;;;:::o;43401:353::-;43450:7;;;;:15;;:7;:15;43442:38;;;;-1:-1:-1;;;43442:38:0;;;;;;;:::i;:::-;;;;;;;;;43508:1;43498:7;;:11;43490:33;;;;-1:-1:-1;;;43490:33:0;;7749:2:1;43490:33:0;;;7731:21:1;7788:2;7768:18;;;7761:30;-1:-1:-1;;;7807:18:1;;;7800:40;7857:18;;43490:33:0;7721:160:1;43490:33:0;43554:11;43541:9;:24;;43533:45;;;;-1:-1:-1;;;43533:45:0;;;;;;;:::i;:::-;43602:10;43596:17;;;;:5;:17;;;;;;43615:1;-1:-1:-1;43588:60:0;;;;-1:-1:-1;;;43588:60:0;;7392:2:1;43588:60:0;;;7374:21:1;7431:2;7411:18;;;7404:30;7470;7450:18;;;7443:58;7518:18;;43588:60:0;7364:178:1;43588:60:0;43658:28;43664:10;43675:1;43658:28;;;;;;;;;;;;43680:5;43658;:28::i;:::-;43701:10;43695:17;;;;:5;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;43726:7:0;:9;;;:7;:9;;;:::i;:::-;;;;;;43401:353::o;29923:170::-;30057:28;30067:4;30073:2;30077:7;30057:9;:28::i;45038:104::-;45106:28;;;;:12;;:28;;;;;:::i;42951:211::-;43024:5;;-1:-1:-1;;;;;43024:5:0;43010:10;:19;43002:28;;;;;;43044:9;43040:115;43063:3;43059:1;:7;43040:115;;;43084:60;43090:42;43133:1;43084:60;;;;;;;;;;;;43138:5;43084;:60::i;:::-;43067:3;;;;:::i;:::-;;;;43040:115;;;;42951:211::o;30164:185::-;30302:39;30319:4;30325:2;30329:7;30302:39;;;;;;;;;;;;:16;:39::i;44392:131::-;44463:5;;-1:-1:-1;;;;;44463:5:0;44449:10;:19;44441:28;;;;;;44500:15;;;-1:-1:-1;;44481:34:0;;44500:15;;;;;;;44499:16;44481:34;;;;;;44392:131::o;44778:135::-;44838:5;;-1:-1:-1;;;;;44838:5:0;44824:10;:19;44816:28;;;;;;44854:51;;44862:10;;44883:21;44854:51;;;;;;;;;44883:21;44862:10;44854:51;;;;;;;;;;;;;;;;;;;42343:125;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27363:::-;27427:7;27454:21;27467:7;27454:12;:21::i;:::-;:26;;27363:125;-1:-1:-1;;27363:125:0:o;24811:206::-;24875:7;-1:-1:-1;;;;;24899:19:0;;24895:60;;24927:28;;-1:-1:-1;;;24927:28:0;;;;;;;;;;;24895:60;-1:-1:-1;;;;;;24981:19:0;;;;;:12;:19;;;;;:27;;;;24811:206::o;27724:104::-;27780:13;27813:7;27806:14;;;;;:::i;43265:128::-;43352:5;;-1:-1:-1;;;;;43352:5:0;43338:10;:19;43330:28;;;;;;43369:5;:16;;-1:-1:-1;;;;;;43369:16:0;-1:-1:-1;;;;;43369:16:0;;;;;;;;;;43265:128::o;44535:119::-;44602:5;;-1:-1:-1;;;;;44602:5:0;44588:10;:19;44580:28;;;;;;44635:11;;;-1:-1:-1;;44620:26:0;;44635:11;;;;;;;44634:12;44620:26;;;;;;44535:119::o;29334:287::-;-1:-1:-1;;;;;29433:24:0;;2883:10;29433:24;29429:54;;;29466:17;;-1:-1:-1;;;29466:17:0;;;;;;;;;;;29429:54;2883:10;29496:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29496:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29496:53:0;;;;;;;;;;29565:48;;6914:41:1;;;29496:42:0;;2883:10;29565:48;;6887:18:1;29565:48:0;;;;;;;29334:287;;:::o;44183:201::-;44238:11;;;;;;;:19;;44253:4;44238:19;44230:42;;;;-1:-1:-1;;;44230:42:0;;;;;;;:::i;:::-;44303:11;44290:9;:24;;44282:45;;;;-1:-1:-1;;;44282:45:0;;;;;;;:::i;:::-;44337:28;44343:10;44354:1;44337:28;;;;;;;;;;;;44359:5;44337;:28::i;:::-;44183:201::o;44663:107::-;44726:5;;-1:-1:-1;;;;;44726:5:0;44712:10;:19;44704:28;;;;;;44755:7;;;-1:-1:-1;;44744:18:0;;44755:7;;;;44754:8;44744:18;;;44663:107::o;30420:369::-;30587:28;30597:4;30603:2;30607:7;30587:9;:28::i;:::-;-1:-1:-1;;;;;30630:13:0;;4545:19;:23;;30630:76;;;;;30650:56;30681:4;30687:2;30691:7;30700:5;30650:30;:56::i;:::-;30649:57;30630:76;30626:156;;;30730:40;;-1:-1:-1;;;30730:40:0;;;;;;;;;;;30626:156;30420:369;;;;:::o;45239:213::-;45312:13;45377:9;45398:25;45415:7;45398:16;:25::i;:::-;45359:83;;;;;;;;;:::i;:::-;;;;;;;;;;;;;45338:106;;45239:213;;;:::o;43776:399::-;43832:15;;;;;;;;:23;;:15;:23;43824:46;;;;-1:-1:-1;;;43824:46:0;;;;;;;:::i;:::-;43905:1;43887:15;;:19;43879:41;;;;-1:-1:-1;;;43879:41:0;;7749:2:1;43879:41:0;;;7731:21:1;7788:2;7768:18;;;7761:30;-1:-1:-1;;;7807:18:1;;;7800:40;7857:18;;43879:41:0;7721:160:1;43879:41:0;43950:11;43937:9;:24;;43929:45;;;;-1:-1:-1;;;43929:45:0;;;;;;;:::i;:::-;44005:10;43991:25;;;;:13;:25;;;;;;44019:1;-1:-1:-1;43983:69:0;;;;-1:-1:-1;;;43983:69:0;;7392:2:1;43983:69:0;;;7374:21:1;7431:2;7411:18;;;7404:30;7470;7450:18;;;7443:58;7518:18;;43983:69:0;7364:178:1;43983:69:0;44075:10;44061:25;;;;:13;:25;;;;;:27;;;;;;:::i;:::-;;;;;;44100:28;44106:10;44117:1;44100:28;;;;;;;;;;;;44122:5;44100;:28::i;:::-;44139:15;:17;;;:15;:17;;;:::i;42310:26::-;;;;;;;:::i;31044:187::-;31101:4;31165:13;;31155:7;:23;31125:98;;;;-1:-1:-1;;31196:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;31196:27:0;;;;31195:28;;31044:187::o;39214:196::-;39329:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;39329:29:0;-1:-1:-1;;;;;39329:29:0;;;;;;;;;39374:28;;39329:24;;39374:28;;;;;;;39214:196;;;:::o;32128:1775::-;32267:20;32290:13;-1:-1:-1;;;;;32318:16:0;;32314:48;;32343:19;;-1:-1:-1;;;32343:19:0;;;;;;;;;;;32314:48;32377:13;32373:44;;32399:18;;-1:-1:-1;;;32399:18:0;;;;;;;;;;;32373:44;-1:-1:-1;;;;;32768:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;32827:49:0;;32768:44;;;;;;;;32827:49;;;;-1:-1:-1;;32768:44:0;;;;;;32827:49;;;;;;;;;;;;;;;;32893:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;32943:66:0;;;;-1:-1:-1;;;32993:15:0;32943:66;;;;;;;;;;32893:25;33090:23;;;33134:4;:23;;;;-1:-1:-1;;;;;;33142:13:0;;4545:19;:23;;33142:15;33130:641;;;33178:314;33209:38;;33234:12;;-1:-1:-1;;;;;33209:38:0;;;33226:1;;33209:38;;33226:1;;33209:38;33275:69;33314:1;33318:2;33322:14;;;;;;33338:5;33275:30;:69::i;:::-;33270:174;;33380:40;;-1:-1:-1;;;33380:40:0;;;;;;;;;;;33270:174;33487:3;33471:12;:19;;33178:314;;33573:12;33556:13;;:29;33552:43;;33587:8;;;33552:43;33130:641;;;33636:120;33667:40;;33692:14;;;;;-1:-1:-1;;;;;33667:40:0;;;33684:1;;33667:40;;33684:1;;33667:40;33751:3;33735:12;:19;;33636:120;;33130:641;-1:-1:-1;33785:13:0;:28;33835:60;32128:1775;;;;;:::o;34157:2130::-;34272:35;34310:21;34323:7;34310:12;:21::i;:::-;34272:59;;34370:4;-1:-1:-1;;;;;34348:26:0;:13;:18;;;-1:-1:-1;;;;;34348:26:0;;34344:67;;34383:28;;-1:-1:-1;;;34383:28:0;;;;;;;;;;;34344:67;34424:22;2883:10;-1:-1:-1;;;;;34450:20:0;;;;:73;;-1:-1:-1;34487:36:0;34504:4;2883:10;29692:164;:::i;34487:36::-;34450:126;;;-1:-1:-1;2883:10:0;34540:20;34552:7;34540:11;:20::i;:::-;-1:-1:-1;;;;;34540:36:0;;34450:126;34424:153;;34595:17;34590:66;;34621:35;;-1:-1:-1;;;34621:35:0;;;;;;;;;;;34590:66;-1:-1:-1;;;;;34671:16:0;;34667:52;;34696:23;;-1:-1:-1;;;34696:23:0;;;;;;;;;;;34667:52;34840:35;34857:1;34861:7;34870:4;34840:8;:35::i;:::-;-1:-1:-1;;;;;35171:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;35171:31:0;;;;;;;-1:-1:-1;;35171:31:0;;;;;;;35217:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;35217:29:0;;;;;;;;;;;35297:20;;;:11;:20;;;;;;35332:18;;-1:-1:-1;;;;;;35365:49:0;;;;-1:-1:-1;;;35398:15:0;35365:49;;;;;;;;;;35688:11;;35748:24;;;;;35791:13;;35297:20;;35748:24;;35791:13;35787:384;;36001:13;;35986:11;:28;35982:174;;36039:20;;36108:28;;;;36082:54;;-1:-1:-1;;;36082:54:0;-1:-1:-1;;;;;;36082:54:0;;;-1:-1:-1;;;;;36039:20:0;;36082:54;;;;35982:174;34157:2130;;;36218:7;36214:2;-1:-1:-1;;;;;36199:27:0;36208:4;-1:-1:-1;;;;;36199:27:0;;;;;;;;;;;36237:42;30420:369;26192:1109;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;26303:7:0;26386:13;;26379:4;:20;26348:886;;;26420:31;26454:17;;;:11;:17;;;;;;;;;26420:51;;;;;;;;;-1:-1:-1;;;;;26420:51:0;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;-1:-1:-1;;;26420:51:0;;;;;;;;;;;;;;26490:729;;26540:14;;-1:-1:-1;;;;;26540:28:0;;26536:101;;26604:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;26536:101::-;-1:-1:-1;;;26979:6:0;27024:17;;;;:11;:17;;;;;;;;;27012:29;;;;;;;;;-1:-1:-1;;;;;27012:29:0;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;-1:-1:-1;;;27012:29:0;;;;;;;;;;;;;27072:28;27068:109;;27140:9;26192:1109;-1:-1:-1;;;26192:1109:0:o;27068:109::-;26939:261;;;26348:886;;27262:31;;-1:-1:-1;;;27262:31:0;;;;;;;;;;;39902:667;40086:72;;-1:-1:-1;;;40086:72:0;;40065:4;;-1:-1:-1;;;;;40086:36:0;;;;;:72;;2883:10;;40137:4;;40143:7;;40152:5;;40086:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40086:72:0;;;;;;;;-1:-1:-1;;40086:72:0;;;;;;;;;;;;:::i;:::-;;;40082:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40320:13:0;;40316:235;;40366:40;;-1:-1:-1;;;40366:40:0;;;;;;;;;;;40316:235;40509:6;40503:13;40494:6;40490:2;40486:15;40479:38;40082:480;-1:-1:-1;;;;;;40205:55:0;-1:-1:-1;;;40205:55:0;;-1:-1:-1;40082:480:0;39902:667;;;;;;:::o;365:723::-;421:13;642:10;638:53;;-1:-1:-1;;669:10:0;;;;;;;;;;;;-1:-1:-1;;;669:10:0;;;;;365:723::o;638:53::-;716:5;701:12;757:78;764:9;;757:78;;790:8;;;;:::i;:::-;;-1:-1:-1;813:10:0;;-1:-1:-1;821:2:0;813:10;;:::i;:::-;;;757:78;;;845:19;877:6;867:17;;;;;;-1:-1:-1;;;867:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;867:17:0;;845:39;;895:154;902:10;;895:154;;929:11;939:1;929:11;;:::i;:::-;;-1:-1:-1;998:10:0;1006:2;998:5;:10;:::i;:::-;985:24;;:2;:24;:::i;:::-;972:39;;955:6;962;955:14;;;;;;-1:-1:-1;;;955:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;955:56:0;;;;;;;;-1:-1:-1;1026:11:0;1035:2;1026:11;;:::i;:::-;;;895:154;;-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;:::-;979:39;898:126;-1:-1:-1;;;898:126:1:o;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:257::-;4234:3;4272:5;4266:12;4299:6;4294:3;4287:19;4315:63;4371:6;4364:4;4359:3;4355:14;4348:4;4341:5;4337:16;4315:63;:::i;:::-;4432:2;4411:15;-1:-1:-1;;4407:29:1;4398:39;;;;4439:4;4394:50;;4242:208;-1:-1:-1;;4242:208:1:o;4455:185::-;4497:3;4535:5;4529:12;4550:52;4595:6;4590:3;4583:4;4576:5;4572:16;4550:52;:::i;:::-;4618:16;;;;;4505:135;-1:-1:-1;;4505:135:1:o;4763:1305::-;5040:3;5069;5104:6;5098:13;5134:3;5156:1;5184:9;5180:2;5176:18;5166:28;;5244:2;5233:9;5229:18;5266;5256:2;;5310:4;5302:6;5298:17;5288:27;;5256:2;5336;5384;5376:6;5373:14;5353:18;5350:38;5347:2;;;-1:-1:-1;;;5411:33:1;;5467:4;5464:1;5457:15;5497:4;5418:3;5485:17;5347:2;5528:18;5555:104;;;;5673:1;5668:322;;;;5521:469;;5555:104;-1:-1:-1;;5588:24:1;;5576:37;;5633:16;;;;-1:-1:-1;5555:104:1;;5668:322;8790:4;8809:17;;;8859:4;8843:21;;5763:3;5779:165;5793:6;5790:1;5787:13;5779:165;;;5871:14;;5858:11;;;5851:35;5914:16;;;;5808:10;;5779:165;;;5783:3;;5973:6;5968:3;5964:16;5957:23;;5521:469;;;;;;;6006:56;6031:30;6057:3;6049:6;6031:30;:::i;:::-;-1:-1:-1;;;4705:20:1;;4750:1;4741:11;;4695:63;6006:56;5999:63;5048:1020;-1:-1:-1;;;;;5048:1020:1:o;6281:488::-;-1:-1:-1;;;;;6550:15:1;;;6532:34;;6602:15;;6597:2;6582:18;;6575:43;6649:2;6634:18;;6627:34;;;6697:3;6692:2;6677:18;;6670:31;;;6475:4;;6718:45;;6743:19;;6735:6;6718:45;:::i;:::-;6710:53;6484:285;-1:-1:-1;;;;;;6484:285:1:o;6966:219::-;7115:2;7104:9;7097:21;7078:4;7135:44;7175:2;7164:9;7160:18;7152:6;7135:44;:::i;7886:334::-;8088:2;8070:21;;;8127:2;8107:18;;;8100:30;-1:-1:-1;;;8161:2:1;8146:18;;8139:40;8211:2;8196:18;;8060:160::o;8225:331::-;8427:2;8409:21;;;8466:1;8446:18;;;8439:29;-1:-1:-1;;;8499:2:1;8484:18;;8477:38;8547:2;8532:18;;8399:157::o;8875:128::-;8915:3;8946:1;8942:6;8939:1;8936:13;8933:2;;;8952:18;;:::i;:::-;-1:-1:-1;8988:9:1;;8923:80::o;9008:120::-;9048:1;9074;9064:2;;9079:18;;:::i;:::-;-1:-1:-1;9113:9:1;;9054:74::o;9133:125::-;9173:4;9201:1;9198;9195:8;9192:2;;;9206:18;;:::i;:::-;-1:-1:-1;9243:9:1;;9182:76::o;9263:258::-;9335:1;9345:113;9359:6;9356:1;9353:13;9345:113;;;9435:11;;;9429:18;9416:11;;;9409:39;9381:2;9374:10;9345:113;;;9476:6;9473:1;9470:13;9467:2;;;-1:-1:-1;;9511:1:1;9493:16;;9486:27;9316:205::o;9526:136::-;9565:3;9593:5;9583:2;;9602:18;;:::i;:::-;-1:-1:-1;;;9638:18:1;;9573:89::o;9667:380::-;9746:1;9742:12;;;;9789;;;9810:2;;9864:4;9856:6;9852:17;9842:27;;9810:2;9917;9909:6;9906:14;9886:18;9883:38;9880:2;;;9963:10;9958:3;9954:20;9951:1;9944:31;9998:4;9995:1;9988:15;10026:4;10023:1;10016:15;9880:2;;9722:325;;;:::o;10052:135::-;10091:3;-1:-1:-1;;10112:17:1;;10109:2;;;10132:18;;:::i;:::-;-1:-1:-1;10179:1:1;10168:13;;10099:88::o;10192:112::-;10224:1;10250;10240:2;;10255:18;;:::i;:::-;-1:-1:-1;10289:9:1;;10230:74::o;10309:127::-;10370:10;10365:3;10361:20;10358:1;10351:31;10401:4;10398:1;10391:15;10425:4;10422:1;10415:15;10441:127;10502:10;10497:3;10493:20;10490:1;10483:31;10533:4;10530:1;10523:15;10557:4;10554:1;10547:15;10573:127;10634:10;10629:3;10625:20;10622:1;10615:31;10665:4;10662:1;10655:15;10689:4;10686:1;10679:15;10705:131;-1:-1:-1;;;;;;10779:32:1;;10769:43;;10759:2;;10826:1;10823;10816:12

Swarm Source

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