ETH Price: $3,001.91 (+5.30%)
Gas: 2 Gwei

Token

Space Riders OG Pass (SROG)
 

Overview

Max Total Supply

1,000 SROG

Holders

784

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
0 SROG
0xf09ab3a60df25f2c64969cda84841d581bd066ba
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:
SpaceRidersOGPass

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

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

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// OpenZeppelin Contracts 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: contracts/IERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     *
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

// File: contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

    // 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 override 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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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: contracts/SpaceRidersOGPass.sol

pragma solidity >=0.8.0 <0.9.0;

interface StarToken {
    function updateReward(address _from, address _to) external;

    function spend(address _from, uint256 _amount) external;

    function balanceOf(address _address)
        external
        view
        returns (uint256 balance);
}

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

error Paused();
error NoSpaceRider();
error MaxMintAmountExceed();
error SupplyExceeded();
error NotWhitelisted();
error InsufficientStar();
error EthSalePaused();
error InvalidValue();
error NewClaimableReserveToHigh();
error NewSupplyToLow();
error NewSupplyToHigh();
error NoBalanceToWithdraw();
error WithdrawFailed();

contract SpaceRidersOGPass is ERC721A, Ownable {
    using Strings for uint256;
    using MerkleProof for bytes32[];

    bytes32 merkleRoot;

    string public baseURI;

    bool public isPaused = true;
    bool public isEthSalePaused = true;

    uint256 public MAX_SUPPLY = 1000;
    uint256 public constant MAX_MINT_AMOUNT = 1;
    uint256 public cost = 0.02 ether;
    uint256 public starCost = 1000 ether;
    uint256 public claimableReserve = 750;

    StarToken public starToken =
        StarToken(0xDaa58A1851672a6490E2bb9Fdc8868918cDd86e6);
    SpaceRiders public spaceRiders =
        SpaceRiders(0xC9d198089D6c31d0Ca5Cc5B92C97a57A97BBfdE2);

    event NewOGPassMinted(address sender);

    constructor(string memory _initialBaseURI)
        ERC721A("Space Riders OG Pass", "SROG")
    {
        setBaseURI(_initialBaseURI);
    }

    modifier mustPassChecks() {
        if (isPaused) revert Paused();
        if (spaceRiders.balanceOf(msg.sender) < 1) revert NoSpaceRider();
        if (_numberMinted(msg.sender) >= MAX_MINT_AMOUNT)
            revert MaxMintAmountExceed();
        _;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

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

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        string memory currentBaseURI = _baseURI();
        return
            bytes(currentBaseURI).length > 0
                ? string(
                    abi.encodePacked(
                        currentBaseURI,
                        tokenId.toString(),
                        ".json"
                    )
                )
                : "";
    }

    function claim(bytes32[] memory proof) public mustPassChecks {
        if (totalSupply() >= MAX_SUPPLY) revert SupplyExceeded();
        if (!proof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))))
            revert NotWhitelisted();
        _safeMint(msg.sender, 1);
        claimableReserve--;
        emit NewOGPassMinted(msg.sender);
    }

    function mintWithStar() public mustPassChecks {
        if (totalSupply() >= MAX_SUPPLY - claimableReserve)
            revert SupplyExceeded();
        if (starToken.balanceOf(msg.sender) < starCost)
            revert InsufficientStar();
        starToken.spend(msg.sender, starCost);
        _safeMint(msg.sender, 1);
        emit NewOGPassMinted(msg.sender);
    }

    function mintWithEth() public payable mustPassChecks {
        if (isEthSalePaused) revert EthSalePaused();
        if (totalSupply() >= MAX_SUPPLY - claimableReserve)
            revert SupplyExceeded();
        if (msg.value != cost) revert InvalidValue();
        _safeMint(msg.sender, 1);
        emit NewOGPassMinted(msg.sender);
    }

    function mintedTotalOf(address _owner) public view returns (uint256) {
        return _numberMinted(_owner);
    }

    function mintToAddress(address _address) public onlyOwner {
        if (totalSupply() >= MAX_SUPPLY - claimableReserve)
            revert SupplyExceeded();
        _safeMint(_address, 1);
        emit NewOGPassMinted(msg.sender);
    }

    function toggleIsPaused() public onlyOwner {
        isPaused = !isPaused;
    }

    function toggleIsEthSalePaused() public onlyOwner {
        isEthSalePaused = !isEthSalePaused;
    }

    function setToken(address _contract) external onlyOwner {
        starToken = StarToken(_contract);
    }

    function setSpaceRiders(address _contract) external onlyOwner {
        spaceRiders = SpaceRiders(_contract);
    }

    function setCost(uint256 _newCost) public onlyOwner {
        cost = _newCost;
    }

    function setStarCost(uint256 _newStarCost) public onlyOwner {
        starCost = _newStarCost;
    }

    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    function setClaimableReserve(uint256 _newClaimableReserve)
        public
        onlyOwner
    {
        if (_newClaimableReserve > MAX_SUPPLY - totalSupply())
            revert NewClaimableReserveToHigh();

        claimableReserve = _newClaimableReserve;
    }

    function setMaxSupply(uint256 _newMaxSupply) public onlyOwner {
        if (_newMaxSupply < totalSupply() + claimableReserve)
            revert NewSupplyToLow();
        if (_newMaxSupply > MAX_SUPPLY) revert NewSupplyToHigh();
        MAX_SUPPLY = _newMaxSupply;
    }

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

    function withdraw() public payable onlyOwner {
        uint256 balance = address(this).balance;
        if (balance == 0) revert NoBalanceToWithdraw();
        (bool success, ) = payable(0x2A76bAA2F2cFB1b17aE672C995B3C41398e86cCD)
            .call{value: balance}("");
        if (!success) revert WithdrawFailed();
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 tokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, tokenId, quantity);
        starToken.updateReward(from, to);
    }

    function spendTokens(uint256 _amount) external {
        starToken.spend(msg.sender, _amount);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initialBaseURI","type":"string"}],"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":"EthSalePaused","type":"error"},{"inputs":[],"name":"InsufficientStar","type":"error"},{"inputs":[],"name":"InvalidValue","type":"error"},{"inputs":[],"name":"MaxMintAmountExceed","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"NewClaimableReserveToHigh","type":"error"},{"inputs":[],"name":"NewSupplyToHigh","type":"error"},{"inputs":[],"name":"NewSupplyToLow","type":"error"},{"inputs":[],"name":"NoBalanceToWithdraw","type":"error"},{"inputs":[],"name":"NoSpaceRider","type":"error"},{"inputs":[],"name":"NotWhitelisted","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"Paused","type":"error"},{"inputs":[],"name":"SupplyExceeded","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"WithdrawFailed","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":false,"internalType":"address","name":"sender","type":"address"}],"name":"NewOGPassMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINT_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimableReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"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":"isEthSalePaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintWithEth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintWithStar","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"mintedTotalOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newClaimableReserve","type":"uint256"}],"name":"setClaimableReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxSupply","type":"uint256"}],"name":"setMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setSpaceRiders","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newStarCost","type":"uint256"}],"name":"setStarCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"spaceRiders","outputs":[{"internalType":"contract SpaceRiders","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"spendTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"starCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"starToken","outputs":[{"internalType":"contract StarToken","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleIsEthSalePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleIsPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

6080604052600b805461010161ffff199091161790556103e8600c5566470de4df820000600d55683635c9adc5dea00000600e556102ee600f55601080546001600160a01b031990811673daa58a1851672a6490e2bb9fdc8868918cdd86e6179091556011805490911673c9d198089d6c31d0ca5cc5b92c97a57a97bbfde21790553480156200008e57600080fd5b5060405162002a8b38038062002a8b833981016040819052620000b191620002bd565b604080518082018252601481527f537061636520526964657273204f47205061737300000000000000000000000060208083019182528351808501909452600484526353524f4760e01b908401528151919291620001129160029162000217565b5080516200012890600390602084019062000217565b50506001600055506200013b336200014d565b62000146816200019f565b50620003ec565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200021390600a90602084019062000217565b5050565b828054620002259062000399565b90600052602060002090601f01602090048101928262000249576000855562000294565b82601f106200026457805160ff191683800117855562000294565b8280016001018555821562000294579182015b828111156200029457825182559160200191906001019062000277565b50620002a2929150620002a6565b5090565b5b80821115620002a25760008155600101620002a7565b60006020808385031215620002d157600080fd5b82516001600160401b0380821115620002e957600080fd5b818501915085601f830112620002fe57600080fd5b815181811115620003135762000313620003d6565b604051601f8201601f19908116603f011681019083821181831017156200033e576200033e620003d6565b8160405282815288868487010111156200035757600080fd5b600093505b828410156200037b57848401860151818501870152928501926200035c565b828411156200038d5760008684830101525b98975050505050505050565b600181811c90821680620003ae57607f821691505b60208210811415620003d057634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61268f80620003fc6000396000f3fe6080604052600436106102675760003560e01c80637cb6475911610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146106d3578063f2fde38b1461071c578063f9613d7f1461073c578063fa9b701814610751578063fc0e134b14610766578063ffd4aa551461077b57600080fd5b8063b88d4fde14610648578063c87b56dd14610668578063ce0126dc14610688578063d17f46be1461069e578063d707a56b146106b357600080fd5b806395d89b411161010857806395d89b411461059a578063a061f714146105af578063a22cb465146105ce578063b187bd26146105ee578063b391c50814610608578063b7ca51e81461062857600080fd5b80637cb64759146105065780638da5cb5b146105265780638e39f5151461054457806391c106f21461056457806391fec48c1461058457600080fd5b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461045c5780636c0360eb1461047c5780636e9b2dc0146104915780636f8b44b0146104b157806370a08231146104d1578063715018a6146104f157600080fd5b80633ccfd60b146103d457806342842e0e146103dc5780634432fcd5146103fc57806344a0d68a1461041c57806355f804b31461043c57600080fd5b806313faede61161022f57806313faede614610325578063144fa6d71461034957806318160ddd146103695780632266f12f1461037e57806323b872dd1461039e57806332cb6b0c146103be57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630ad641f11461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612340565b61079b565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107ed565b6040516102989190612483565b3480156102cf57600080fd5b506102e36102de366004612327565b61087f565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612251565b6108c3565b005b61031b610951565b34801561033157600080fd5b5061033b600d5481565b604051908152602001610298565b34801561035557600080fd5b5061031b610364366004612110565b610afa565b34801561037557600080fd5b5061033b610b4f565b34801561038a57600080fd5b5061031b610399366004612327565b610b5d565b3480156103aa57600080fd5b5061031b6103b936600461215e565b610bc1565b3480156103ca57600080fd5b5061033b600c5481565b61031b610bcc565b3480156103e857600080fd5b5061031b6103f736600461215e565b610c96565b34801561040857600080fd5b5061033b610417366004612110565b610cb1565b34801561042857600080fd5b5061031b610437366004612327565b610cbc565b34801561044857600080fd5b5061031b61045736600461237a565b610ceb565b34801561046857600080fd5b506102e3610477366004612327565b610d28565b34801561048857600080fd5b506102b6610d3a565b34801561049d57600080fd5b5061031b6104ac366004612327565b610dc8565b3480156104bd57600080fd5b5061031b6104cc366004612327565b610df7565b3480156104dd57600080fd5b5061033b6104ec366004612110565b610e7e565b3480156104fd57600080fd5b5061031b610ecc565b34801561051257600080fd5b5061031b610521366004612327565b610f02565b34801561053257600080fd5b506008546001600160a01b03166102e3565b34801561055057600080fd5b5061031b61055f366004612327565b610f31565b34801561057057600080fd5b506011546102e3906001600160a01b031681565b34801561059057600080fd5b5061033b600f5481565b3480156105a657600080fd5b506102b6610f98565b3480156105bb57600080fd5b50600b5461028c90610100900460ff1681565b3480156105da57600080fd5b5061031b6105e9366004612215565b610fa7565b3480156105fa57600080fd5b50600b5461028c9060ff1681565b34801561061457600080fd5b5061031b61062336600461227b565b61103d565b34801561063457600080fd5b506010546102e3906001600160a01b031681565b34801561065457600080fd5b5061031b61066336600461219a565b61120e565b34801561067457600080fd5b506102b6610683366004612327565b61125f565b34801561069457600080fd5b5061033b600e5481565b3480156106aa57600080fd5b5061031b6112bd565b3480156106bf57600080fd5b5061031b6106ce366004612110565b6114eb565b3480156106df57600080fd5b5061028c6106ee36600461212b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b5061031b610737366004612110565b611537565b34801561074857600080fd5b5061031b6115d2565b34801561075d57600080fd5b5061033b600181565b34801561077257600080fd5b5061031b611610565b34801561078757600080fd5b5061031b610796366004612110565b611657565b60006001600160e01b031982166380ac58cd60e01b14806107cc57506001600160e01b03198216635b5e139f60e01b145b806107e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107fc90612581565b80601f016020809104026020016040519081016040528092919081815260200182805461082890612581565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088a826116f2565b6108a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ce82610d28565b9050806001600160a01b0316836001600160a01b031614156109035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610923575061092181336106ee565b155b15610941576040516367d9dca160e11b815260040160405180910390fd5b61094c83838361172b565b505050565b600b5460ff1615610975576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b1580156109b957600080fd5b505afa1580156109cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f191906123c2565b1015610a1057604051635806c58560e11b815260040160405180910390fd5b6001610a1b33611787565b10610a39576040516323153d8560e21b815260040160405180910390fd5b600b54610100900460ff1615610a6257604051631698e69360e21b815260040160405180910390fd5b600f54600c54610a729190612527565b610a7a610b4f565b10610a9857604051637d3d824960e01b815260040160405180910390fd5b600d543414610aba57604051632a9ffab760e21b815260040160405180910390fd5b610ac53360016117b2565b6040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae979060200160405180910390a1565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612496565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600154600054036000190190565b6008546001600160a01b03163314610b875760405162461bcd60e51b8152600401610b2490612496565b610b8f610b4f565b600c54610b9c9190612527565b811115610bbc5760405163e4ef4e4360e01b815260040160405180910390fd5b600f55565b61094c8383836117cc565b6008546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610b2490612496565b4780610c155760405163177b02e160e31b815260040160405180910390fd5b604051600090732a76baa2f2cfb1b17ae672c995b3c41398e86ccd9083908381818185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c9257604051631d42c86760e21b815260040160405180910390fd5b5050565b61094c8383836040518060200160405280600081525061120e565b60006107e782611787565b6008546001600160a01b03163314610ce65760405162461bcd60e51b8152600401610b2490612496565b600d55565b6008546001600160a01b03163314610d155760405162461bcd60e51b8152600401610b2490612496565b8051610c9290600a906020840190612004565b6000610d33826119c4565b5192915050565b600a8054610d4790612581565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7390612581565b8015610dc05780601f10610d9557610100808354040283529160200191610dc0565b820191906000526020600020905b815481529060010190602001808311610da357829003601f168201915b505050505081565b6008546001600160a01b03163314610df25760405162461bcd60e51b8152600401610b2490612496565b600e55565b6008546001600160a01b03163314610e215760405162461bcd60e51b8152600401610b2490612496565b600f54610e2c610b4f565b610e3691906124fb565b811015610e5657604051631fd7d66f60e01b815260040160405180910390fd5b600c54811115610e7957604051634a2d567f60e01b815260040160405180910390fd5b600c55565b60006001600160a01b038216610ea7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ef65760405162461bcd60e51b8152600401610b2490612496565b610f006000611aeb565b565b6008546001600160a01b03163314610f2c5760405162461bcd60e51b8152600401610b2490612496565b600955565b60105460405163af7d6ca360e01b8152336004820152602481018390526001600160a01b039091169063af7d6ca390604401600060405180830381600087803b158015610f7d57600080fd5b505af1158015610f91573d6000803e3d6000fd5b5050505050565b6060600380546107fc90612581565b6001600160a01b038216331415610fd15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b5460ff1615611061576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b1580156110a557600080fd5b505afa1580156110b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dd91906123c2565b10156110fc57604051635806c58560e11b815260040160405180910390fd5b600161110733611787565b10611125576040516323153d8560e21b815260040160405180910390fd5b600c54611130610b4f565b1061114e57604051637d3d824960e01b815260040160405180910390fd5b6009546040516bffffffffffffffffffffffff193360601b16602082015261119a91906034016040516020818303038152906040528051906020012083611b3d9092919063ffffffff16565b6111b757604051630b094f2760e31b815260040160405180910390fd5b6111c23360016117b2565b600f80549060006111d28361256a565b90915550506040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae97906020015b60405180910390a150565b6112198484846117cc565b6001600160a01b0383163b1515801561123b575061123984848484611b53565b155b15611259576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600061126b611c4b565b9050600081511161128b57604051806020016040528060008152506112b6565b8061129584611c5a565b6040516020016112a6929190612407565b6040516020818303038152906040525b9392505050565b600b5460ff16156112e1576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b15801561132557600080fd5b505afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d91906123c2565b101561137c57604051635806c58560e11b815260040160405180910390fd5b600161138733611787565b106113a5576040516323153d8560e21b815260040160405180910390fd5b600f54600c546113b59190612527565b6113bd610b4f565b106113db57604051637d3d824960e01b815260040160405180910390fd5b600e546010546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145991906123c2565b1015611478576040516326b2b89960e11b815260040160405180910390fd5b601054600e5460405163af7d6ca360e01b815233600482015260248101919091526001600160a01b039091169063af7d6ca390604401600060405180830381600087803b1580156114c857600080fd5b505af11580156114dc573d6000803e3d6000fd5b50505050610ac53360016117b2565b6008546001600160a01b031633146115155760405162461bcd60e51b8152600401610b2490612496565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146115615760405162461bcd60e51b8152600401610b2490612496565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6115cf81611aeb565b50565b6008546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610b2490612496565b600b805460ff19811660ff90911615179055565b6008546001600160a01b0316331461163a5760405162461bcd60e51b8152600401610b2490612496565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116815760405162461bcd60e51b8152600401610b2490612496565b600f54600c546116919190612527565b611699610b4f565b106116b757604051637d3d824960e01b815260040160405180910390fd5b6116c28160016117b2565b6040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae9790602001611203565b600081600111158015611706575060005482105b80156107e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610c92828260405180602001604052806000815250611d57565b60006117d7826119c4565b9050836001600160a01b031681600001516001600160a01b03161461180e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182c575061182c85336106ee565b8061184757503361183c8461087f565b6001600160a01b0316145b90508061186757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188e57604051633a954ecd60e21b815260040160405180910390fd5b61189b8585856001611f23565b6118a76000848761172b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661197b57600054821461197b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f91565b604080516060810182526000808252602082018190529181019190915281806001111580156119f4575060005481105b15611ad257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ad05780516001600160a01b031615611a67579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611acb579392505050565b611a67565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b4a8584611f90565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b88903390899088908890600401612446565b602060405180830381600087803b158015611ba257600080fd5b505af1925050508015611bd2575060408051601f3d908101601f19168201909252611bcf9181019061235d565b60015b611c2d573d808015611c00576040519150601f19603f3d011682016040523d82523d6000602084013e611c05565b606091505b508051611c25576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107fc90612581565b606081611c7e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca85780611c92816125bc565b9150611ca19050600a83612513565b9150611c82565b6000816001600160401b03811115611cc257611cc261262d565b6040519080825280601f01601f191660200182016040528015611cec576020820181803683370190505b5090505b8415611c4357611d01600183612527565b9150611d0e600a866125d7565b611d199060306124fb565b60f81b818381518110611d2e57611d2e612617565b60200101906001600160f81b031916908160001a905350611d50600a86612513565b9450611cf0565b6000546001600160a01b038416611d8057604051622e076360e81b815260040160405180910390fd5b82611d9e5760405163b562e8dd60e01b815260040160405180910390fd5b611dab6000858386611f23565b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ece575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e976000878480600101955087611b53565b611eb4576040516368d2bf6b60e11b815260040160405180910390fd5b808210611e4c578260005414611ec957600080fd5b611f13565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ecf575b5060009081556112599085838684565b601054604051636918579d60e11b81526001600160a01b03868116600483015285811660248301529091169063d230af3a90604401600060405180830381600087803b158015611f7257600080fd5b505af1158015611f86573d6000803e3d6000fd5b5050505050505050565b600081815b8451811015611ffc576000858281518110611fb257611fb2612617565b60200260200101519050808311611fd85760008381526020829052604090209250611fe9565b600081815260208490526040902092505b5080611ff4816125bc565b915050611f95565b509392505050565b82805461201090612581565b90600052602060002090601f0160209004810192826120325760008555612078565b82601f1061204b57805160ff1916838001178555612078565b82800160010185558215612078579182015b8281111561207857825182559160200191906001019061205d565b50612084929150612088565b5090565b5b808211156120845760008155600101612089565b60006001600160401b038311156120b6576120b661262d565b6120c9601f8401601f19166020016124cb565b90508281528383830111156120dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461210b57600080fd5b919050565b60006020828403121561212257600080fd5b6112b6826120f4565b6000806040838503121561213e57600080fd5b612147836120f4565b9150612155602084016120f4565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120f4565b925061218a602085016120f4565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120f4565b93506121c7602086016120f4565b92506040850135915060608501356001600160401b038111156121e957600080fd5b8501601f810187136121fa57600080fd5b6122098782356020840161209d565b91505092959194509250565b6000806040838503121561222857600080fd5b612231836120f4565b91506020830135801515811461224657600080fd5b809150509250929050565b6000806040838503121561226457600080fd5b61226d836120f4565b946020939093013593505050565b6000602080838503121561228e57600080fd5b82356001600160401b03808211156122a557600080fd5b818501915085601f8301126122b957600080fd5b8135818111156122cb576122cb61262d565b8060051b91506122dc8483016124cb565b8181528481019084860184860187018a10156122f757600080fd5b600095505b8386101561231a5780358352600195909501949186019186016122fc565b5098975050505050505050565b60006020828403121561233957600080fd5b5035919050565b60006020828403121561235257600080fd5b81356112b681612643565b60006020828403121561236f57600080fd5b81516112b681612643565b60006020828403121561238c57600080fd5b81356001600160401b038111156123a257600080fd5b8201601f810184136123b357600080fd5b611c438482356020840161209d565b6000602082840312156123d457600080fd5b5051919050565b600081518084526123f381602086016020860161253e565b601f01601f19169290920160200192915050565b6000835161241981846020880161253e565b83519083019061242d81836020880161253e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612479908301846123db565b9695505050505050565b6020815260006112b660208301846123db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156124f3576124f361262d565b604052919050565b6000821982111561250e5761250e6125eb565b500190565b60008261252257612522612601565b500490565b600082821015612539576125396125eb565b500390565b60005b83811015612559578181015183820152602001612541565b838111156112595750506000910152565b600081612579576125796125eb565b506000190190565b600181811c9082168061259557607f821691505b602082108114156125b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d0576125d06125eb565b5060010190565b6000826125e6576125e6612601565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115cf57600080fdfea2646970667358221220f55e533bc3af309b9b7f28168d4779f411e764c18e28342a197d8d1eb6efe04164736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5558454e326b7a6a43456a7342356e6958767546464848776148364d376b67637662644e65715259585574472f00000000000000000000

Deployed Bytecode

0x6080604052600436106102675760003560e01c80637cb6475911610144578063b88d4fde116100b6578063e985e9c51161007a578063e985e9c5146106d3578063f2fde38b1461071c578063f9613d7f1461073c578063fa9b701814610751578063fc0e134b14610766578063ffd4aa551461077b57600080fd5b8063b88d4fde14610648578063c87b56dd14610668578063ce0126dc14610688578063d17f46be1461069e578063d707a56b146106b357600080fd5b806395d89b411161010857806395d89b411461059a578063a061f714146105af578063a22cb465146105ce578063b187bd26146105ee578063b391c50814610608578063b7ca51e81461062857600080fd5b80637cb64759146105065780638da5cb5b146105265780638e39f5151461054457806391c106f21461056457806391fec48c1461058457600080fd5b80633ccfd60b116101dd5780636352211e116101a15780636352211e1461045c5780636c0360eb1461047c5780636e9b2dc0146104915780636f8b44b0146104b157806370a08231146104d1578063715018a6146104f157600080fd5b80633ccfd60b146103d457806342842e0e146103dc5780634432fcd5146103fc57806344a0d68a1461041c57806355f804b31461043c57600080fd5b806313faede61161022f57806313faede614610325578063144fa6d71461034957806318160ddd146103695780632266f12f1461037e57806323b872dd1461039e57806332cb6b0c146103be57600080fd5b806301ffc9a71461026c57806306fdde03146102a1578063081812fc146102c3578063095ea7b3146102fb5780630ad641f11461031d575b600080fd5b34801561027857600080fd5b5061028c610287366004612340565b61079b565b60405190151581526020015b60405180910390f35b3480156102ad57600080fd5b506102b66107ed565b6040516102989190612483565b3480156102cf57600080fd5b506102e36102de366004612327565b61087f565b6040516001600160a01b039091168152602001610298565b34801561030757600080fd5b5061031b610316366004612251565b6108c3565b005b61031b610951565b34801561033157600080fd5b5061033b600d5481565b604051908152602001610298565b34801561035557600080fd5b5061031b610364366004612110565b610afa565b34801561037557600080fd5b5061033b610b4f565b34801561038a57600080fd5b5061031b610399366004612327565b610b5d565b3480156103aa57600080fd5b5061031b6103b936600461215e565b610bc1565b3480156103ca57600080fd5b5061033b600c5481565b61031b610bcc565b3480156103e857600080fd5b5061031b6103f736600461215e565b610c96565b34801561040857600080fd5b5061033b610417366004612110565b610cb1565b34801561042857600080fd5b5061031b610437366004612327565b610cbc565b34801561044857600080fd5b5061031b61045736600461237a565b610ceb565b34801561046857600080fd5b506102e3610477366004612327565b610d28565b34801561048857600080fd5b506102b6610d3a565b34801561049d57600080fd5b5061031b6104ac366004612327565b610dc8565b3480156104bd57600080fd5b5061031b6104cc366004612327565b610df7565b3480156104dd57600080fd5b5061033b6104ec366004612110565b610e7e565b3480156104fd57600080fd5b5061031b610ecc565b34801561051257600080fd5b5061031b610521366004612327565b610f02565b34801561053257600080fd5b506008546001600160a01b03166102e3565b34801561055057600080fd5b5061031b61055f366004612327565b610f31565b34801561057057600080fd5b506011546102e3906001600160a01b031681565b34801561059057600080fd5b5061033b600f5481565b3480156105a657600080fd5b506102b6610f98565b3480156105bb57600080fd5b50600b5461028c90610100900460ff1681565b3480156105da57600080fd5b5061031b6105e9366004612215565b610fa7565b3480156105fa57600080fd5b50600b5461028c9060ff1681565b34801561061457600080fd5b5061031b61062336600461227b565b61103d565b34801561063457600080fd5b506010546102e3906001600160a01b031681565b34801561065457600080fd5b5061031b61066336600461219a565b61120e565b34801561067457600080fd5b506102b6610683366004612327565b61125f565b34801561069457600080fd5b5061033b600e5481565b3480156106aa57600080fd5b5061031b6112bd565b3480156106bf57600080fd5b5061031b6106ce366004612110565b6114eb565b3480156106df57600080fd5b5061028c6106ee36600461212b565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561072857600080fd5b5061031b610737366004612110565b611537565b34801561074857600080fd5b5061031b6115d2565b34801561075d57600080fd5b5061033b600181565b34801561077257600080fd5b5061031b611610565b34801561078757600080fd5b5061031b610796366004612110565b611657565b60006001600160e01b031982166380ac58cd60e01b14806107cc57506001600160e01b03198216635b5e139f60e01b145b806107e757506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107fc90612581565b80601f016020809104026020016040519081016040528092919081815260200182805461082890612581565b80156108755780601f1061084a57610100808354040283529160200191610875565b820191906000526020600020905b81548152906001019060200180831161085857829003601f168201915b5050505050905090565b600061088a826116f2565b6108a7576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108ce82610d28565b9050806001600160a01b0316836001600160a01b031614156109035760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610923575061092181336106ee565b155b15610941576040516367d9dca160e11b815260040160405180910390fd5b61094c83838361172b565b505050565b600b5460ff1615610975576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b1580156109b957600080fd5b505afa1580156109cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f191906123c2565b1015610a1057604051635806c58560e11b815260040160405180910390fd5b6001610a1b33611787565b10610a39576040516323153d8560e21b815260040160405180910390fd5b600b54610100900460ff1615610a6257604051631698e69360e21b815260040160405180910390fd5b600f54600c54610a729190612527565b610a7a610b4f565b10610a9857604051637d3d824960e01b815260040160405180910390fd5b600d543414610aba57604051632a9ffab760e21b815260040160405180910390fd5b610ac53360016117b2565b6040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae979060200160405180910390a1565b6008546001600160a01b03163314610b2d5760405162461bcd60e51b8152600401610b2490612496565b60405180910390fd5b601080546001600160a01b0319166001600160a01b0392909216919091179055565b600154600054036000190190565b6008546001600160a01b03163314610b875760405162461bcd60e51b8152600401610b2490612496565b610b8f610b4f565b600c54610b9c9190612527565b811115610bbc5760405163e4ef4e4360e01b815260040160405180910390fd5b600f55565b61094c8383836117cc565b6008546001600160a01b03163314610bf65760405162461bcd60e51b8152600401610b2490612496565b4780610c155760405163177b02e160e31b815260040160405180910390fd5b604051600090732a76baa2f2cfb1b17ae672c995b3c41398e86ccd9083908381818185875af1925050503d8060008114610c6b576040519150601f19603f3d011682016040523d82523d6000602084013e610c70565b606091505b5050905080610c9257604051631d42c86760e21b815260040160405180910390fd5b5050565b61094c8383836040518060200160405280600081525061120e565b60006107e782611787565b6008546001600160a01b03163314610ce65760405162461bcd60e51b8152600401610b2490612496565b600d55565b6008546001600160a01b03163314610d155760405162461bcd60e51b8152600401610b2490612496565b8051610c9290600a906020840190612004565b6000610d33826119c4565b5192915050565b600a8054610d4790612581565b80601f0160208091040260200160405190810160405280929190818152602001828054610d7390612581565b8015610dc05780601f10610d9557610100808354040283529160200191610dc0565b820191906000526020600020905b815481529060010190602001808311610da357829003601f168201915b505050505081565b6008546001600160a01b03163314610df25760405162461bcd60e51b8152600401610b2490612496565b600e55565b6008546001600160a01b03163314610e215760405162461bcd60e51b8152600401610b2490612496565b600f54610e2c610b4f565b610e3691906124fb565b811015610e5657604051631fd7d66f60e01b815260040160405180910390fd5b600c54811115610e7957604051634a2d567f60e01b815260040160405180910390fd5b600c55565b60006001600160a01b038216610ea7576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610ef65760405162461bcd60e51b8152600401610b2490612496565b610f006000611aeb565b565b6008546001600160a01b03163314610f2c5760405162461bcd60e51b8152600401610b2490612496565b600955565b60105460405163af7d6ca360e01b8152336004820152602481018390526001600160a01b039091169063af7d6ca390604401600060405180830381600087803b158015610f7d57600080fd5b505af1158015610f91573d6000803e3d6000fd5b5050505050565b6060600380546107fc90612581565b6001600160a01b038216331415610fd15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600b5460ff1615611061576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b1580156110a557600080fd5b505afa1580156110b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110dd91906123c2565b10156110fc57604051635806c58560e11b815260040160405180910390fd5b600161110733611787565b10611125576040516323153d8560e21b815260040160405180910390fd5b600c54611130610b4f565b1061114e57604051637d3d824960e01b815260040160405180910390fd5b6009546040516bffffffffffffffffffffffff193360601b16602082015261119a91906034016040516020818303038152906040528051906020012083611b3d9092919063ffffffff16565b6111b757604051630b094f2760e31b815260040160405180910390fd5b6111c23360016117b2565b600f80549060006111d28361256a565b90915550506040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae97906020015b60405180910390a150565b6112198484846117cc565b6001600160a01b0383163b1515801561123b575061123984848484611b53565b155b15611259576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060600061126b611c4b565b9050600081511161128b57604051806020016040528060008152506112b6565b8061129584611c5a565b6040516020016112a6929190612407565b6040516020818303038152906040525b9392505050565b600b5460ff16156112e1576040516313d0ff5960e31b815260040160405180910390fd5b6011546040516370a0823160e01b81523360048201526001916001600160a01b0316906370a082319060240160206040518083038186803b15801561132557600080fd5b505afa158015611339573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135d91906123c2565b101561137c57604051635806c58560e11b815260040160405180910390fd5b600161138733611787565b106113a5576040516323153d8560e21b815260040160405180910390fd5b600f54600c546113b59190612527565b6113bd610b4f565b106113db57604051637d3d824960e01b815260040160405180910390fd5b600e546010546040516370a0823160e01b81523360048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561142157600080fd5b505afa158015611435573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061145991906123c2565b1015611478576040516326b2b89960e11b815260040160405180910390fd5b601054600e5460405163af7d6ca360e01b815233600482015260248101919091526001600160a01b039091169063af7d6ca390604401600060405180830381600087803b1580156114c857600080fd5b505af11580156114dc573d6000803e3d6000fd5b50505050610ac53360016117b2565b6008546001600160a01b031633146115155760405162461bcd60e51b8152600401610b2490612496565b601180546001600160a01b0319166001600160a01b0392909216919091179055565b6008546001600160a01b031633146115615760405162461bcd60e51b8152600401610b2490612496565b6001600160a01b0381166115c65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610b24565b6115cf81611aeb565b50565b6008546001600160a01b031633146115fc5760405162461bcd60e51b8152600401610b2490612496565b600b805460ff19811660ff90911615179055565b6008546001600160a01b0316331461163a5760405162461bcd60e51b8152600401610b2490612496565b600b805461ff001981166101009182900460ff1615909102179055565b6008546001600160a01b031633146116815760405162461bcd60e51b8152600401610b2490612496565b600f54600c546116919190612527565b611699610b4f565b106116b757604051637d3d824960e01b815260040160405180910390fd5b6116c28160016117b2565b6040513381527f71e352ba8ba8ef902c76d5702aad6ab62283283f9f8bbf86da330967bedcae9790602001611203565b600081600111158015611706575060005482105b80156107e7575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6001600160a01b0316600090815260056020526040902054600160401b90046001600160401b031690565b610c92828260405180602001604052806000815250611d57565b60006117d7826119c4565b9050836001600160a01b031681600001516001600160a01b03161461180e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b038616148061182c575061182c85336106ee565b8061184757503361183c8461087f565b6001600160a01b0316145b90508061186757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661188e57604051633a954ecd60e21b815260040160405180910390fd5b61189b8585856001611f23565b6118a76000848761172b565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b4290921691909102178355870180845292208054919390911661197b57600054821461197b57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610f91565b604080516060810182526000808252602082018190529181019190915281806001111580156119f4575060005481105b15611ad257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611ad05780516001600160a01b031615611a67579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611acb579392505050565b611a67565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600082611b4a8584611f90565b14949350505050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611b88903390899088908890600401612446565b602060405180830381600087803b158015611ba257600080fd5b505af1925050508015611bd2575060408051601f3d908101601f19168201909252611bcf9181019061235d565b60015b611c2d573d808015611c00576040519150601f19603f3d011682016040523d82523d6000602084013e611c05565b606091505b508051611c25576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600a80546107fc90612581565b606081611c7e5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611ca85780611c92816125bc565b9150611ca19050600a83612513565b9150611c82565b6000816001600160401b03811115611cc257611cc261262d565b6040519080825280601f01601f191660200182016040528015611cec576020820181803683370190505b5090505b8415611c4357611d01600183612527565b9150611d0e600a866125d7565b611d199060306124fb565b60f81b818381518110611d2e57611d2e612617565b60200101906001600160f81b031916908160001a905350611d50600a86612513565b9450611cf0565b6000546001600160a01b038416611d8057604051622e076360e81b815260040160405180910390fd5b82611d9e5760405163b562e8dd60e01b815260040160405180910390fd5b611dab6000858386611f23565b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b018116918217600160401b67ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611ece575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e976000878480600101955087611b53565b611eb4576040516368d2bf6b60e11b815260040160405180910390fd5b808210611e4c578260005414611ec957600080fd5b611f13565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210611ecf575b5060009081556112599085838684565b601054604051636918579d60e11b81526001600160a01b03868116600483015285811660248301529091169063d230af3a90604401600060405180830381600087803b158015611f7257600080fd5b505af1158015611f86573d6000803e3d6000fd5b5050505050505050565b600081815b8451811015611ffc576000858281518110611fb257611fb2612617565b60200260200101519050808311611fd85760008381526020829052604090209250611fe9565b600081815260208490526040902092505b5080611ff4816125bc565b915050611f95565b509392505050565b82805461201090612581565b90600052602060002090601f0160209004810192826120325760008555612078565b82601f1061204b57805160ff1916838001178555612078565b82800160010185558215612078579182015b8281111561207857825182559160200191906001019061205d565b50612084929150612088565b5090565b5b808211156120845760008155600101612089565b60006001600160401b038311156120b6576120b661262d565b6120c9601f8401601f19166020016124cb565b90508281528383830111156120dd57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b038116811461210b57600080fd5b919050565b60006020828403121561212257600080fd5b6112b6826120f4565b6000806040838503121561213e57600080fd5b612147836120f4565b9150612155602084016120f4565b90509250929050565b60008060006060848603121561217357600080fd5b61217c846120f4565b925061218a602085016120f4565b9150604084013590509250925092565b600080600080608085870312156121b057600080fd5b6121b9856120f4565b93506121c7602086016120f4565b92506040850135915060608501356001600160401b038111156121e957600080fd5b8501601f810187136121fa57600080fd5b6122098782356020840161209d565b91505092959194509250565b6000806040838503121561222857600080fd5b612231836120f4565b91506020830135801515811461224657600080fd5b809150509250929050565b6000806040838503121561226457600080fd5b61226d836120f4565b946020939093013593505050565b6000602080838503121561228e57600080fd5b82356001600160401b03808211156122a557600080fd5b818501915085601f8301126122b957600080fd5b8135818111156122cb576122cb61262d565b8060051b91506122dc8483016124cb565b8181528481019084860184860187018a10156122f757600080fd5b600095505b8386101561231a5780358352600195909501949186019186016122fc565b5098975050505050505050565b60006020828403121561233957600080fd5b5035919050565b60006020828403121561235257600080fd5b81356112b681612643565b60006020828403121561236f57600080fd5b81516112b681612643565b60006020828403121561238c57600080fd5b81356001600160401b038111156123a257600080fd5b8201601f810184136123b357600080fd5b611c438482356020840161209d565b6000602082840312156123d457600080fd5b5051919050565b600081518084526123f381602086016020860161253e565b601f01601f19169290920160200192915050565b6000835161241981846020880161253e565b83519083019061242d81836020880161253e565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612479908301846123db565b9695505050505050565b6020815260006112b660208301846123db565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156124f3576124f361262d565b604052919050565b6000821982111561250e5761250e6125eb565b500190565b60008261252257612522612601565b500490565b600082821015612539576125396125eb565b500390565b60005b83811015612559578181015183820152602001612541565b838111156112595750506000910152565b600081612579576125796125eb565b506000190190565b600181811c9082168061259557607f821691505b602082108114156125b657634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156125d0576125d06125eb565b5060010190565b6000826125e6576125e6612601565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146115cf57600080fdfea2646970667358221220f55e533bc3af309b9b7f28168d4779f411e764c18e28342a197d8d1eb6efe04164736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5558454e326b7a6a43456a7342356e6958767546464848776148364d376b67637662644e65715259585574472f00000000000000000000

-----Decoded View---------------
Arg [0] : _initialBaseURI (string): ipfs://QmUXEN2kzjCEjsB5niXvuFFHHwaH6M7kgcvbdNeqRYXUtG/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5558454e326b7a6a43456a7342356e6958767546464848
Arg [3] : 776148364d376b67637662644e65715259585574472f00000000000000000000


Deployed Bytecode Sourcemap

51977:5520:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31697:355;;;;;;;;;;-1:-1:-1;31697:355:0;;;;;:::i;:::-;;:::i;:::-;;;7956:14:1;;7949:22;7931:41;;7919:2;7904:18;31697:355:0;;;;;;;;34892:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;36492:245::-;;;;;;;;;;-1:-1:-1;36492:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6666:32:1;;;6648:51;;6636:2;6621:18;36492:245:0;6502:203:1;36055:371:0;;;;;;;;;;-1:-1:-1;36055:371:0;;;;;:::i;:::-;;:::i;:::-;;54623:347;;;:::i;52326:32::-;;;;;;;;;;;;;;;;;;;9575:25:1;;;9563:2;9548:18;52326:32:0;9429:177:1;55552:107:0;;;;;;;;;;-1:-1:-1;55552:107:0;;;;;:::i;:::-;;:::i;30937:312::-;;;;;;;;;;;;;:::i;56094:272::-;;;;;;;;;;-1:-1:-1;56094:272:0;;;;;:::i;:::-;;:::i;37480:170::-;;;;;;;;;;-1:-1:-1;37480:170:0;;;;;:::i;:::-;;:::i;52237:32::-;;;;;;;;;;;;;;;;56769:328;;;:::i;37721:185::-;;;;;;;;;;-1:-1:-1;37721:185:0;;;;;:::i;:::-;;:::i;54978:116::-;;;;;;;;;;-1:-1:-1;54978:116:0;;;;;:::i;:::-;;:::i;55792:86::-;;;;;;;;;;-1:-1:-1;55792:86:0;;;;;:::i;:::-;;:::i;56657:104::-;;;;;;;;;;-1:-1:-1;56657:104:0;;;;;:::i;:::-;;:::i;34700:125::-;;;;;;;;;;-1:-1:-1;34700:125:0;;;;;:::i;:::-;;:::i;52130:21::-;;;;;;;;;;;;;:::i;55886:102::-;;;;;;;;;;-1:-1:-1;55886:102:0;;;;;:::i;:::-;;:::i;56374:275::-;;;;;;;;;;-1:-1:-1;56374:275:0;;;;;:::i;:::-;;:::i;32116:206::-;;;;;;;;;;-1:-1:-1;32116:206:0;;;;;:::i;:::-;;:::i;7265:103::-;;;;;;;;;;;;;:::i;55996:90::-;;;;;;;;;;-1:-1:-1;55996:90:0;;;;;:::i;:::-;;:::i;6614:87::-;;;;;;;;;;-1:-1:-1;6687:6:0;;-1:-1:-1;;;;;6687:6:0;6614:87;;57392:102;;;;;;;;;;-1:-1:-1;57392:102:0;;;;;:::i;:::-;;:::i;52552:97::-;;;;;;;;;;-1:-1:-1;52552:97:0;;;;-1:-1:-1;;;;;52552:97:0;;;52408:37;;;;;;;;;;;;;;;;35061:104;;;;;;;;;;;;;:::i;52194:34::-;;;;;;;;;;-1:-1:-1;52194:34:0;;;;;;;;;;;36809:319;;;;;;;;;;-1:-1:-1;36809:319:0;;;;;:::i;:::-;;:::i;52160:27::-;;;;;;;;;;-1:-1:-1;52160:27:0;;;;;;;;53869:362;;;;;;;;;;-1:-1:-1;53869:362:0;;;;;:::i;:::-;;:::i;52454:91::-;;;;;;;;;;-1:-1:-1;52454:91:0;;;;-1:-1:-1;;;;;52454:91:0;;;37977:406;;;;;;;;;;-1:-1:-1;37977:406:0;;;;;:::i;:::-;;:::i;53351:510::-;;;;;;;;;;-1:-1:-1;53351:510:0;;;;;:::i;:::-;;:::i;52365:36::-;;;;;;;;;;;;;;;;54239:376;;;;;;;;;;;;;:::i;55667:117::-;;;;;;;;;;-1:-1:-1;55667:117:0;;;;;:::i;:::-;;:::i;37199:214::-;;;;;;;;;;-1:-1:-1;37199:214:0;;;;;:::i;:::-;-1:-1:-1;;;;;37370:25:0;;;37341:4;37370:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;37199:214;7523:238;;;;;;;;;;-1:-1:-1;7523:238:0;;;;;:::i;:::-;;:::i;55351:82::-;;;;;;;;;;;;;:::i;52276:43::-;;;;;;;;;;;;52318:1;52276:43;;55441:103;;;;;;;;;;;;;:::i;55102:241::-;;;;;;;;;;-1:-1:-1;55102:241:0;;;;;:::i;:::-;;:::i;31697:355::-;31844:4;-1:-1:-1;;;;;;31886:40:0;;-1:-1:-1;;;31886:40:0;;:105;;-1:-1:-1;;;;;;;31943:48:0;;-1:-1:-1;;;31943:48:0;31886:105;:158;;;-1:-1:-1;;;;;;;;;;20051:40:0;;;32008:36;31866:178;31697:355;-1:-1:-1;;31697:355:0:o;34892:100::-;34946:13;34979:5;34972:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34892:100;:::o;36492:245::-;36596:7;36626:16;36634:7;36626;:16::i;:::-;36621:64;;36651:34;;-1:-1:-1;;;36651:34:0;;;;;;;;;;;36621:64;-1:-1:-1;36705:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;36705:24:0;;36492:245::o;36055:371::-;36128:13;36144:24;36160:7;36144:15;:24::i;:::-;36128:40;;36189:5;-1:-1:-1;;;;;36183:11:0;:2;-1:-1:-1;;;;;36183:11:0;;36179:48;;;36203:24;;-1:-1:-1;;;36203:24:0;;;;;;;;;;;36179:48;5397:10;-1:-1:-1;;;;;36244:21:0;;;;;;:63;;-1:-1:-1;36270:37:0;36287:5;5397:10;37199:214;:::i;36270:37::-;36269:38;36244:63;36240:138;;;36331:35;;-1:-1:-1;;;36331:35:0;;;;;;;;;;;36240:138;36390:28;36399:2;36403:7;36412:5;36390:8;:28::i;:::-;36117:309;36055:371;;:::o;54623:347::-;52896:8;;;;52892:29;;;52913:8;;-1:-1:-1;;;52913:8:0;;;;;;;;;;;52892:29;52936:11;;:33;;-1:-1:-1;;;52936:33:0;;52958:10;52936:33;;;6648:51:1;52972:1:0;;-1:-1:-1;;;;;52936:11:0;;:21;;6621:18:1;;52936:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;52932:64;;;52982:14;;-1:-1:-1;;;52982:14:0;;;;;;;;;;;52932:64;52318:1;53011:25;53025:10;53011:13;:25::i;:::-;:44;53007:91;;53077:21;;-1:-1:-1;;;53077:21:0;;;;;;;;;;;53007:91;54691:15:::1;::::0;::::1;::::0;::::1;;;54687:43;;;54715:15;;-1:-1:-1::0;;;54715:15:0::1;;;;;;;;;;;54687:43;54775:16;;54762:10;;:29;;;;:::i;:::-;54745:13;:11;:13::i;:::-;:46;54741:88;;54813:16;;-1:-1:-1::0;;;54813:16:0::1;;;;;;;;;;;54741:88;54857:4;;54844:9;:17;54840:44;;54870:14;;-1:-1:-1::0;;;54870:14:0::1;;;;;;;;;;;54840:44;54895:24;54905:10;54917:1;54895:9;:24::i;:::-;54935:27;::::0;54951:10:::1;6648:51:1::0;;54935:27:0::1;::::0;6636:2:1;6621:18;54935:27:0::1;;;;;;;54623:347::o:0;55552:107::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;;;;;;;;;55619:9:::1;:32:::0;;-1:-1:-1;;;;;;55619:32:0::1;-1:-1:-1::0;;;;;55619:32:0;;;::::1;::::0;;;::::1;::::0;;55552:107::o;30937:312::-;53218:1;31200:12;30990:7;31184:13;:28;-1:-1:-1;;31184:46:0;;30937:312::o;56094:272::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;56244:13:::1;:11;:13::i;:::-;56231:10;;:26;;;;:::i;:::-;56208:20;:49;56204:102;;;56279:27;;-1:-1:-1::0;;;56279:27:0::1;;;;;;;;;;;56204:102;56319:16;:39:::0;56094:272::o;37480:170::-;37614:28;37624:4;37630:2;37634:7;37614:9;:28::i;56769:328::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;56843:21:::1;56879:12:::0;56875:46:::1;;56900:21;;-1:-1:-1::0;;;56900:21:0::1;;;;;;;;;;;56875:46;56951:90;::::0;56933:12:::1;::::0;56959:42:::1;::::0;57029:7;;56933:12;56951:90;56933:12;56951:90;57029:7;56959:42;56951:90:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56932:109;;;57057:7;57052:37;;57073:16;;-1:-1:-1::0;;;57073:16:0::1;;;;;;;;;;;57052:37;56814:283;;56769:328::o:0;37721:185::-;37859:39;37876:4;37882:2;37886:7;37859:39;;;;;;;;;;;;:16;:39::i;54978:116::-;55038:7;55065:21;55079:6;55065:13;:21::i;55792:86::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55855:4:::1;:15:::0;55792:86::o;56657:104::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;56732:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;34700:125::-:0;34764:7;34791:21;34804:7;34791:12;:21::i;:::-;:26;;34700:125;-1:-1:-1;;34700:125:0:o;52130:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;55886:102::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55957:8:::1;:23:::0;55886:102::o;56374:275::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;56483:16:::1;;56467:13;:11;:13::i;:::-;:32;;;;:::i;:::-;56451:13;:48;56447:90;;;56521:16;;-1:-1:-1::0;;;56521:16:0::1;;;;;;;;;;;56447:90;56568:10;;56552:13;:26;56548:56;;;56587:17;;-1:-1:-1::0;;;56587:17:0::1;;;;;;;;;;;56548:56;56615:10;:26:::0;56374:275::o;32116:206::-;32180:7;-1:-1:-1;;;;;32204:19:0;;32200:60;;32232:28;;-1:-1:-1;;;32232:28:0;;;;;;;;;;;32200:60;-1:-1:-1;;;;;;32286:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;32286:27:0;;32116:206::o;7265:103::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;7330:30:::1;7357:1;7330:18;:30::i;:::-;7265:103::o:0;55996:90::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;56061:10:::1;:17:::0;55996:90::o;57392:102::-;57450:9;;:36;;-1:-1:-1;;;57450:36:0;;57466:10;57450:36;;;7686:51:1;7753:18;;;7746:34;;;-1:-1:-1;;;;;57450:9:0;;;;:15;;7659:18:1;;57450:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57392:102;:::o;35061:104::-;35117:13;35150:7;35143:14;;;;;:::i;36809:319::-;-1:-1:-1;;;;;36940:24:0;;5397:10;36940:24;36936:54;;;36973:17;;-1:-1:-1;;;36973:17:0;;;;;;;;;;;36936:54;5397:10;37003:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;37003:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;37003:53:0;;;;;;;;;;37072:48;;7931:41:1;;;37003:42:0;;5397:10;37072:48;;7904:18:1;37072:48:0;;;;;;;36809:319;;:::o;53869:362::-;52896:8;;;;52892:29;;;52913:8;;-1:-1:-1;;;52913:8:0;;;;;;;;;;;52892:29;52936:11;;:33;;-1:-1:-1;;;52936:33:0;;52958:10;52936:33;;;6648:51:1;52972:1:0;;-1:-1:-1;;;;;52936:11:0;;:21;;6621:18:1;;52936:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;52932:64;;;52982:14;;-1:-1:-1;;;52982:14:0;;;;;;;;;;;52932:64;52318:1;53011:25;53025:10;53011:13;:25::i;:::-;:44;53007:91;;53077:21;;-1:-1:-1;;;53077:21:0;;;;;;;;;;;53007:91;53962:10:::1;;53945:13;:11;:13::i;:::-;:27;53941:56;;53981:16;;-1:-1:-1::0;;;53981:16:0::1;;;;;;;;;;;53941:56;54026:10;::::0;54048:28:::1;::::0;-1:-1:-1;;54065:10:0::1;5565:2:1::0;5561:15;5557:53;54048:28:0::1;::::0;::::1;5545:66:1::0;54013:65:0::1;::::0;54026:10;5627:12:1;;54048:28:0::1;;;;;;;;;;;;54038:39;;;;;;54013:5;:12;;:65;;;;;:::i;:::-;54008:108;;54100:16;;-1:-1:-1::0;;;54100:16:0::1;;;;;;;;;;;54008:108;54127:24;54137:10;54149:1;54127:9;:24::i;:::-;54162:16;:18:::0;;;:16:::1;:18;::::0;::::1;:::i;:::-;::::0;;;-1:-1:-1;;54196:27:0::1;::::0;54212:10:::1;6648:51:1::0;;54196:27:0::1;::::0;6636:2:1;6621:18;54196:27:0::1;;;;;;;;53869:362:::0;:::o;37977:406::-;38144:28;38154:4;38160:2;38164:7;38144:9;:28::i;:::-;-1:-1:-1;;;;;38201:13:0;;9645:19;:23;;38201:89;;;;;38234:56;38265:4;38271:2;38275:7;38284:5;38234:30;:56::i;:::-;38233:57;38201:89;38183:193;;;38324:40;;-1:-1:-1;;;38324:40:0;;;;;;;;;;;38183:193;37977:406;;;;:::o;53351:510::-;53469:13;53500:28;53531:10;:8;:10::i;:::-;53500:41;;53603:1;53578:14;53572:28;:32;:281;;;;;;;;;;;;;;;;;53696:14;53737:18;:7;:16;:18::i;:::-;53653:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;53572:281;53552:301;53351:510;-1:-1:-1;;;53351:510:0:o;54239:376::-;52896:8;;;;52892:29;;;52913:8;;-1:-1:-1;;;52913:8:0;;;;;;;;;;;52892:29;52936:11;;:33;;-1:-1:-1;;;52936:33:0;;52958:10;52936:33;;;6648:51:1;52972:1:0;;-1:-1:-1;;;;;52936:11:0;;:21;;6621:18:1;;52936:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;52932:64;;;52982:14;;-1:-1:-1;;;52982:14:0;;;;;;;;;;;52932:64;52318:1;53011:25;53025:10;53011:13;:25::i;:::-;:44;53007:91;;53077:21;;-1:-1:-1;;;53077:21:0;;;;;;;;;;;53007:91;54330:16:::1;;54317:10;;:29;;;;:::i;:::-;54300:13;:11;:13::i;:::-;:46;54296:88;;54368:16;;-1:-1:-1::0;;;54368:16:0::1;;;;;;;;;;;54296:88;54433:8;::::0;54399:9:::1;::::0;:31:::1;::::0;-1:-1:-1;;;54399:31:0;;54419:10:::1;54399:31;::::0;::::1;6648:51:1::0;-1:-1:-1;;;;;54399:9:0;;::::1;::::0;:19:::1;::::0;6621:18:1;;54399:31:0::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:42;54395:86;;;54463:18;;-1:-1:-1::0;;;54463:18:0::1;;;;;;;;;;;54395:86;54492:9;::::0;54520:8:::1;::::0;54492:37:::1;::::0;-1:-1:-1;;;54492:37:0;;54508:10:::1;54492:37;::::0;::::1;7686:51:1::0;7753:18;;;7746:34;;;;-1:-1:-1;;;;;54492:9:0;;::::1;::::0;:15:::1;::::0;7659:18:1;;54492:37:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;54540:24;54550:10;54562:1;54540:9;:24::i;55667:117::-:0;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55740:11:::1;:36:::0;;-1:-1:-1;;;;;;55740:36:0::1;-1:-1:-1::0;;;;;55740:36:0;;;::::1;::::0;;;::::1;::::0;;55667:117::o;7523:238::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;7626:22:0;::::1;7604:110;;;::::0;-1:-1:-1;;;7604:110:0;;8863:2:1;7604:110:0::1;::::0;::::1;8845:21:1::0;8902:2;8882:18;;;8875:30;8941:34;8921:18;;;8914:62;-1:-1:-1;;;8992:18:1;;;8985:36;9038:19;;7604:110:0::1;8661:402:1::0;7604:110:0::1;7725:28;7744:8;7725:18;:28::i;:::-;7523:238:::0;:::o;55351:82::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55417:8:::1;::::0;;-1:-1:-1;;55405:20:0;::::1;55417:8;::::0;;::::1;55416:9;55405:20;::::0;;55351:82::o;55441:103::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55521:15:::1;::::0;;-1:-1:-1;;55502:34:0;::::1;55521:15;::::0;;;::::1;;;55520:16;55502:34:::0;;::::1;;::::0;;55441:103::o;55102:241::-;6687:6;;-1:-1:-1;;;;;6687:6:0;5397:10;6834:23;6826:68;;;;-1:-1:-1;;;6826:68:0;;;;;;;:::i;:::-;55205:16:::1;;55192:10;;:29;;;;:::i;:::-;55175:13;:11;:13::i;:::-;:46;55171:88;;55243:16;;-1:-1:-1::0;;;55243:16:0::1;;;;;;;;;;;55171:88;55270:22;55280:8;55290:1;55270:9;:22::i;:::-;55308:27;::::0;55324:10:::1;6648:51:1::0;;55308:27:0::1;::::0;6636:2:1;6621:18;55308:27:0::1;6502:203:1::0;38638:213:0;38695:4;38751:7;53218:1;38732:26;;:66;;;;;38785:13;;38775:7;:23;38732:66;:111;;;;-1:-1:-1;;38816:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;38816:27:0;;;;38815:28;;38638:213::o;48090:196::-;48205:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;48205:29:0;-1:-1:-1;;;;;48205:29:0;;;;;;;;;48250:28;;48205:24;;48250:28;;;;;;;48090:196;;;:::o;32404:137::-;-1:-1:-1;;;;;32500:19:0;32465:7;32500:19;;;:12;:19;;;;;:32;-1:-1:-1;;;32500:32:0;;-1:-1:-1;;;;;32500:32:0;;32404:137::o;38935:104::-;39004:27;39014:2;39018:8;39004:27;;;;;;;;;;;;:9;:27::i;43038:2130::-;43153:35;43191:21;43204:7;43191:12;:21::i;:::-;43153:59;;43251:4;-1:-1:-1;;;;;43229:26:0;:13;:18;;;-1:-1:-1;;;;;43229:26:0;;43225:67;;43264:28;;-1:-1:-1;;;43264:28:0;;;;;;;;;;;43225:67;43305:22;5397:10;-1:-1:-1;;;;;43331:20:0;;;;:73;;-1:-1:-1;43368:36:0;43385:4;5397:10;37199:214;:::i;43368:36::-;43331:126;;;-1:-1:-1;5397:10:0;43421:20;43433:7;43421:11;:20::i;:::-;-1:-1:-1;;;;;43421:36:0;;43331:126;43305:153;;43476:17;43471:66;;43502:35;;-1:-1:-1;;;43502:35:0;;;;;;;;;;;43471:66;-1:-1:-1;;;;;43552:16:0;;43548:52;;43577:23;;-1:-1:-1;;;43577:23:0;;;;;;;;;;;43548:52;43613:43;43635:4;43641:2;43645:7;43654:1;43613:21;:43::i;:::-;43721:35;43738:1;43742:7;43751:4;43721:8;:35::i;:::-;-1:-1:-1;;;;;44052:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;44052:31:0;;;-1:-1:-1;;;;;44052:31:0;;;-1:-1:-1;;44052:31:0;;;;;;;44098:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;44098:29:0;;;;;;;;;;;44178:20;;;:11;:20;;;;;;44213:18;;-1:-1:-1;;;;;;44246:49:0;;;;-1:-1:-1;;;44279:15:0;44246:49;;;;;;;;;;44569:11;;44629:24;;;;;44672:13;;44178:20;;44629:24;;44672:13;44668:384;;44882:13;;44867:11;:28;44863:174;;44920:20;;44989:28;;;;-1:-1:-1;;;;;44963:54:0;-1:-1:-1;;;44963:54:0;-1:-1:-1;;;;;;44963:54:0;;;-1:-1:-1;;;;;44920:20:0;;44963:54;;;;44863:174;44027:1036;;;45099:7;45095:2;-1:-1:-1;;;;;45080:27:0;45089:4;-1:-1:-1;;;;;45080:27:0;;;;;;;;;;;45118:42;37977:406;33497:1141;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;33640:7:0;;53218:1;33689:23;;:47;;;;;33723:13;;33716:4;:20;33689:47;33685:886;;;33757:31;33791:17;;;:11;:17;;;;;;;;;33757:51;;;;;;;;;-1:-1:-1;;;;;33757:51:0;;;;-1:-1:-1;;;33757:51:0;;-1:-1:-1;;;;;33757:51:0;;;;;;;;-1:-1:-1;;;33757:51:0;;;;;;;;;;;;;;33827:729;;33877:14;;-1:-1:-1;;;;;33877:28:0;;33873:101;;33941:9;33497:1141;-1:-1:-1;;;33497:1141:0:o;33873:101::-;-1:-1:-1;;;34316:6:0;34361:17;;;;:11;:17;;;;;;;;;34349:29;;;;;;;;;-1:-1:-1;;;;;34349:29:0;;;;;-1:-1:-1;;;34349:29:0;;-1:-1:-1;;;;;34349:29:0;;;;;;;;-1:-1:-1;;;34349:29:0;;;;;;;;;;;;;34409:28;34405:109;;34477:9;33497:1141;-1:-1:-1;;;33497:1141:0:o;34405:109::-;34276:261;;;33738:833;33685:886;34599:31;;-1:-1:-1;;;34599:31:0;;;;;;;;;;;7921:191;8014:6;;;-1:-1:-1;;;;;8031:17:0;;;-1:-1:-1;;;;;;8031:17:0;;;;;;;8064:40;;8014:6;;;8031:17;8014:6;;8064:40;;7995:16;;8064:40;7984:128;7921:191;:::o;956:190::-;1081:4;1134;1105:25;1118:5;1125:4;1105:12;:25::i;:::-;:33;;956:190;-1:-1:-1;;;;956:190:0:o;48778:772::-;48975:155;;-1:-1:-1;;;48975:155:0;;48941:4;;-1:-1:-1;;;;;48975:36:0;;;;;:155;;5397:10;;49061:4;;49084:7;;49110:5;;48975:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48975:155:0;;;;;;;;-1:-1:-1;;48975:155:0;;;;;;;;;;;;:::i;:::-;;;48958:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49301:13:0;;49297:235;;49347:40;;-1:-1:-1;;;49347:40:0;;;;;;;;;;;49297:235;49490:6;49484:13;49475:6;49471:2;49467:15;49460:38;48958:585;-1:-1:-1;;;;;;49186:55:0;-1:-1:-1;;;49186:55:0;;-1:-1:-1;48958:585:0;48778:772;;;;;;:::o;53235:108::-;53295:13;53328:7;53321:14;;;;;:::i;2849:723::-;2905:13;3126:10;3122:53;;-1:-1:-1;;3153:10:0;;;;;;;;;;;;-1:-1:-1;;;3153:10:0;;;;;2849:723::o;3122:53::-;3200:5;3185:12;3241:78;3248:9;;3241:78;;3274:8;;;;:::i;:::-;;-1:-1:-1;3297:10:0;;-1:-1:-1;3305:2:0;3297:10;;:::i;:::-;;;3241:78;;;3329:19;3361:6;-1:-1:-1;;;;;3351:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3351:17:0;;3329:39;;3379:154;3386:10;;3379:154;;3413:11;3423:1;3413:11;;:::i;:::-;;-1:-1:-1;3482:10:0;3490:2;3482:5;:10;:::i;:::-;3469:24;;:2;:24;:::i;:::-;3456:39;;3439:6;3446;3439:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;3439:56:0;;;;;;;;-1:-1:-1;3510:11:0;3519:2;3510:11;;:::i;:::-;;;3379:154;;39412:1940;39535:20;39558:13;-1:-1:-1;;;;;39586:16:0;;39582:48;;39611:19;;-1:-1:-1;;;39611:19:0;;;;;;;;;;;39582:48;39645:13;39641:44;;39667:18;;-1:-1:-1;;;39667:18:0;;;;;;;;;;;39641:44;39698:61;39728:1;39732:2;39736:12;39750:8;39698:21;:61::i;:::-;-1:-1:-1;;;;;40036:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;40095:49:0;;-1:-1:-1;;;;;40036:44:0;;;;;;;40095:49;;;-1:-1:-1;;;;;40036:44:0;;;;;;40095:49;;;;;;;;;;;;;;;;40161:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;40211:66:0;;;-1:-1:-1;;;40261:15:0;40211:66;;;;;;;;;;;;;40161:25;;40358:23;;;;9645:19;:23;40398:822;;40438:504;40469:38;;40494:12;;-1:-1:-1;;;;;40469:38:0;;;40486:1;;40469:38;;40486:1;;40469:38;40561:212;40630:1;40663:2;40696:14;;;;;;40741:5;40561:30;:212::i;:::-;40530:365;;40831:40;;-1:-1:-1;;;40831:40:0;;;;;;;;;;;40530:365;40937:3;40922:12;:18;40438:504;;41023:12;41006:13;;:29;41002:43;;41037:8;;;41002:43;40398:822;;;41086:119;41117:40;;41142:14;;;;;-1:-1:-1;;;;;41117:40:0;;;41134:1;;41117:40;;41134:1;;41117:40;41200:3;41185:12;:18;41086:119;;40398:822;-1:-1:-1;41234:13:0;:28;;;41284:60;;41317:2;41321:12;41335:8;41284:60;:::i;57105:279::-;57344:9;;:32;;-1:-1:-1;;;57344:32:0;;-1:-1:-1;;;;;6940:15:1;;;57344:32:0;;;6922:34:1;6992:15;;;6972:18;;;6965:43;57344:9:0;;;;:22;;6857:18:1;;57344:32:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57105:279;;;;:::o;1508:707::-;1618:7;1666:4;1618:7;1681:497;1705:5;:12;1701:1;:16;1681:497;;;1739:20;1762:5;1768:1;1762:8;;;;;;;;:::i;:::-;;;;;;;1739:31;;1805:12;1789;:28;1785:382;;2318:13;2373:15;;;2409:4;2402:15;;;2456:4;2440:21;;1917:57;;1785:382;;;2318:13;2373:15;;;2409:4;2402:15;;;2456:4;2440:21;;2094:57;;1785:382;-1:-1:-1;1719:3:0;;;;:::i;:::-;;;;1681:497;;;-1:-1:-1;2195:12:0;1508:707;-1:-1:-1;;;1508:707:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:186::-;662:6;715:2;703:9;694:7;690:23;686:32;683:52;;;731:1;728;721:12;683:52;754:29;773:9;754:29;:::i;794:260::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;;1010:38;1044:2;1033:9;1029:18;1010:38;:::i;:::-;1000:48;;794:260;;;;;:::o;1059:328::-;1136:6;1144;1152;1205:2;1193:9;1184:7;1180:23;1176:32;1173:52;;;1221:1;1218;1211:12;1173:52;1244:29;1263:9;1244:29;:::i;:::-;1234:39;;1292:38;1326:2;1315:9;1311:18;1292:38;:::i;:::-;1282:48;;1377:2;1366:9;1362:18;1349:32;1339:42;;1059:328;;;;;:::o;1392:666::-;1487:6;1495;1503;1511;1564:3;1552:9;1543:7;1539:23;1535:33;1532:53;;;1581:1;1578;1571:12;1532:53;1604:29;1623:9;1604:29;:::i;:::-;1594:39;;1652:38;1686:2;1675:9;1671:18;1652:38;:::i;:::-;1642:48;;1737:2;1726:9;1722:18;1709:32;1699:42;;1792:2;1781:9;1777:18;1764:32;-1:-1:-1;;;;;1811:6:1;1808:30;1805:50;;;1851:1;1848;1841:12;1805:50;1874:22;;1927:4;1919:13;;1915:27;-1:-1:-1;1905:55:1;;1956:1;1953;1946:12;1905:55;1979:73;2044:7;2039:2;2026:16;2021:2;2017;2013:11;1979:73;:::i;:::-;1969:83;;;1392:666;;;;;;;:::o;2063:347::-;2128:6;2136;2189:2;2177:9;2168:7;2164:23;2160:32;2157:52;;;2205:1;2202;2195:12;2157:52;2228:29;2247:9;2228:29;:::i;:::-;2218:39;;2307:2;2296:9;2292:18;2279:32;2354:5;2347:13;2340:21;2333:5;2330:32;2320:60;;2376:1;2373;2366:12;2320:60;2399:5;2389:15;;;2063:347;;;;;:::o;2415:254::-;2483:6;2491;2544:2;2532:9;2523:7;2519:23;2515:32;2512:52;;;2560:1;2557;2550:12;2512:52;2583:29;2602:9;2583:29;:::i;:::-;2573:39;2659:2;2644:18;;;;2631:32;;-1:-1:-1;;;2415:254:1:o;2674:957::-;2758:6;2789:2;2832;2820:9;2811:7;2807:23;2803:32;2800:52;;;2848:1;2845;2838:12;2800:52;2888:9;2875:23;-1:-1:-1;;;;;2958:2:1;2950:6;2947:14;2944:34;;;2974:1;2971;2964:12;2944:34;3012:6;3001:9;2997:22;2987:32;;3057:7;3050:4;3046:2;3042:13;3038:27;3028:55;;3079:1;3076;3069:12;3028:55;3115:2;3102:16;3137:2;3133;3130:10;3127:36;;;3143:18;;:::i;:::-;3189:2;3186:1;3182:10;3172:20;;3212:28;3236:2;3232;3228:11;3212:28;:::i;:::-;3274:15;;;3305:12;;;;3337:11;;;3367;;;3363:20;;3360:33;-1:-1:-1;3357:53:1;;;3406:1;3403;3396:12;3357:53;3428:1;3419:10;;3438:163;3452:2;3449:1;3446:9;3438:163;;;3509:17;;3497:30;;3470:1;3463:9;;;;;3547:12;;;;3579;;3438:163;;;-1:-1:-1;3620:5:1;2674:957;-1:-1:-1;;;;;;;;2674:957:1:o;3636:180::-;3695:6;3748:2;3736:9;3727:7;3723:23;3719:32;3716:52;;;3764:1;3761;3754:12;3716:52;-1:-1:-1;3787:23:1;;3636:180;-1:-1:-1;3636:180:1:o;3821:245::-;3879:6;3932:2;3920:9;3911:7;3907:23;3903:32;3900:52;;;3948:1;3945;3938:12;3900:52;3987:9;3974:23;4006:30;4030:5;4006:30;:::i;4071:249::-;4140:6;4193:2;4181:9;4172:7;4168:23;4164:32;4161:52;;;4209:1;4206;4199:12;4161:52;4241:9;4235:16;4260:30;4284:5;4260:30;:::i;4325:450::-;4394:6;4447:2;4435:9;4426:7;4422:23;4418:32;4415:52;;;4463:1;4460;4453:12;4415:52;4503:9;4490:23;-1:-1:-1;;;;;4528:6:1;4525:30;4522:50;;;4568:1;4565;4558:12;4522:50;4591:22;;4644:4;4636:13;;4632:27;-1:-1:-1;4622:55:1;;4673:1;4670;4663:12;4622:55;4696:73;4761:7;4756:2;4743:16;4738:2;4734;4730:11;4696:73;:::i;4965:184::-;5035:6;5088:2;5076:9;5067:7;5063:23;5059:32;5056:52;;;5104:1;5101;5094:12;5056:52;-1:-1:-1;5127:16:1;;4965:184;-1:-1:-1;4965:184:1:o;5154:257::-;5195:3;5233:5;5227:12;5260:6;5255:3;5248:19;5276:63;5332:6;5325:4;5320:3;5316:14;5309:4;5302:5;5298:16;5276:63;:::i;:::-;5393:2;5372:15;-1:-1:-1;;5368:29:1;5359:39;;;;5400:4;5355:50;;5154:257;-1:-1:-1;;5154:257:1:o;5650:637::-;5930:3;5968:6;5962:13;5984:53;6030:6;6025:3;6018:4;6010:6;6006:17;5984:53;:::i;:::-;6100:13;;6059:16;;;;6122:57;6100:13;6059:16;6156:4;6144:17;;6122:57;:::i;:::-;-1:-1:-1;;;6201:20:1;;6230:22;;;6279:1;6268:13;;5650:637;-1:-1:-1;;;;5650:637:1:o;7019:488::-;-1:-1:-1;;;;;7288:15:1;;;7270:34;;7340:15;;7335:2;7320:18;;7313:43;7387:2;7372:18;;7365:34;;;7435:3;7430:2;7415:18;;7408:31;;;7213:4;;7456:45;;7481:19;;7473:6;7456:45;:::i;:::-;7448:53;7019:488;-1:-1:-1;;;;;;7019:488:1:o;8437:219::-;8586:2;8575:9;8568:21;8549:4;8606:44;8646:2;8635:9;8631:18;8623:6;8606:44;:::i;9068:356::-;9270:2;9252:21;;;9289:18;;;9282:30;9348:34;9343:2;9328:18;;9321:62;9415:2;9400:18;;9068:356::o;9611:275::-;9682:2;9676:9;9747:2;9728:13;;-1:-1:-1;;9724:27:1;9712:40;;-1:-1:-1;;;;;9767:34:1;;9803:22;;;9764:62;9761:88;;;9829:18;;:::i;:::-;9865:2;9858:22;9611:275;;-1:-1:-1;9611:275:1:o;9891:128::-;9931:3;9962:1;9958:6;9955:1;9952:13;9949:39;;;9968:18;;:::i;:::-;-1:-1:-1;10004:9:1;;9891:128::o;10024:120::-;10064:1;10090;10080:35;;10095:18;;:::i;:::-;-1:-1:-1;10129:9:1;;10024:120::o;10149:125::-;10189:4;10217:1;10214;10211:8;10208:34;;;10222:18;;:::i;:::-;-1:-1:-1;10259:9:1;;10149:125::o;10279:258::-;10351:1;10361:113;10375:6;10372:1;10369:13;10361:113;;;10451:11;;;10445:18;10432:11;;;10425:39;10397:2;10390:10;10361:113;;;10492:6;10489:1;10486:13;10483:48;;;-1:-1:-1;;10527:1:1;10509:16;;10502:27;10279:258::o;10542:136::-;10581:3;10609:5;10599:39;;10618:18;;:::i;:::-;-1:-1:-1;;;10654:18:1;;10542:136::o;10683:380::-;10762:1;10758:12;;;;10805;;;10826:61;;10880:4;10872:6;10868:17;10858:27;;10826:61;10933:2;10925:6;10922:14;10902:18;10899:38;10896:161;;;10979:10;10974:3;10970:20;10967:1;10960:31;11014:4;11011:1;11004:15;11042:4;11039:1;11032:15;10896:161;;10683:380;;;:::o;11068:135::-;11107:3;-1:-1:-1;;11128:17:1;;11125:43;;;11148:18;;:::i;:::-;-1:-1:-1;11195:1:1;11184:13;;11068:135::o;11208:112::-;11240:1;11266;11256:35;;11271:18;;:::i;:::-;-1:-1:-1;11305:9:1;;11208:112::o;11325:127::-;11386:10;11381:3;11377:20;11374:1;11367:31;11417:4;11414:1;11407:15;11441:4;11438:1;11431:15;11457:127;11518:10;11513:3;11509:20;11506:1;11499:31;11549:4;11546:1;11539:15;11573:4;11570:1;11563:15;11589:127;11650:10;11645:3;11641:20;11638:1;11631:31;11681:4;11678:1;11671:15;11705:4;11702:1;11695:15;11721:127;11782:10;11777:3;11773:20;11770:1;11763:31;11813:4;11810:1;11803:15;11837:4;11834:1;11827:15;11853:131;-1:-1:-1;;;;;;11927:32:1;;11917:43;;11907:71;;11974:1;11971;11964:12

Swarm Source

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