ETH Price: $3,046.54 (+1.22%)
Gas: 3 Gwei

Token

cyberpunk_mfers (CBPMF)
 

Overview

Max Total Supply

1,089 CBPMF

Holders

246

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
Null: 0x000...000
Balance
0 CBPMF
0x0000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
cyberpunk_mfers

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-02-28
*/

// 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/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/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: https://github.com/chiru-labs/ERC721A/blob/main/contracts/ERC721A.sol


// Creator: Chiru Labs

pragma solidity ^0.8.4;









error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        if (owner == address(0)) revert MintedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert BurnedQueryForZeroAddress();
        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) {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        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 {
        if (owner == address(0)) revert AuxQueryForZeroAddress();
        _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 override {
        if (operator == _msgSender()) revert ApproveToCaller();

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            isApprovedForAll(prevOwnership.addr, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

            _ownerships[tokenId].addr = to;
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

        // 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            _ownerships[tokenId].addr = prevOwnership.addr;
            _ownerships[tokenId].startTimestamp = uint64(block.timestamp);
            _ownerships[tokenId].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;
            if (_ownerships[nextTokenId].addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, 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: @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: contracts/cyberpunk_mfers.sol


pragma solidity >=0.7.0 <0.9.0;




contract cyberpunk_mfers is ERC721A, Ownable {
  using Strings for uint256;

  uint256 public cost = 0.02019 ether;
  uint256 public maxSupply = 10728;
  uint256 public maxMintAmountPerTx = 10;
  uint256 public freeMaxMintPerWallet = 5;

  uint256 FREE_MINT_MAX = 1049;

  mapping(address => uint256) public freeWallets;

  string _baseTokenURI;

  constructor(
    string memory _name,
    string memory _symbol,
    string memory baseURI
  ) ERC721A(_name, _symbol) {
      _baseTokenURI = baseURI;
  }

  modifier mfKnowsWhatTheyDoing(uint256 _mintAmount) {
    require(totalSupply() + _mintAmount <= maxSupply, "Max supply exceeded, MF!");
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount, mf. Try something below 11.");
    _;
  }

  function mintForFree(uint256 _mintAmount) public mfKnowsWhatTheyDoing(_mintAmount) {
    require(isFreeMint(), "Too late for free mint, mf.");
    require(freeWallets[msg.sender] + _mintAmount <= freeMaxMintPerWallet, "You've already got enough for free, mf!");
    freeWallets[msg.sender] = freeWallets[msg.sender] + _mintAmount;
    _safeMint(msg.sender, _mintAmount);
  }

  function mintForMoney(uint256 _mintAmount)
    external
    payable
    mfKnowsWhatTheyDoing(_mintAmount)
  {
    require(msg.value >= cost * _mintAmount, "Damn, send more eth, mf.");
    _safeMint(msg.sender, _mintAmount);

    // Refund the mf if they sent more money. lol.
    if (msg.value > cost * _mintAmount) {
        payable(msg.sender).transfer(msg.value - (cost * _mintAmount));
    }
  }

  function isFreeMint() internal view returns (bool) {
    return totalSupply() <= FREE_MINT_MAX;
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    _safeMint(_receiver, _mintAmount);
  }

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

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

  function setMaxFreeMint(uint256 _max) public onlyOwner {
    FREE_MINT_MAX = _max;
  }

  function withdraw() public onlyOwner {
    uint256 bal = address(this).balance;
    // Ukraine War Crisis Relief - check twitter.com/Ukraine for their official tweet on their address. And fuck Putin.
    (bool ukraine,) = payable(0x165CD37b4C644C2921454429E7F9358d18A45e14).call{value: bal * 15 / 100}("");
    require(ukraine);
    // Sartoshi address - The @sartoshi_nft - sartoshi.eth
    (bool sartoshi,) = payable(0xeD98464BDA3cE53a95B50f897556bEDE4316361c).call{value: bal * 10 / 100}("");
    require(sartoshi);
    // Creator
    (bool creator,) = payable(0xC62F73f7dcfF8Ac5Fb2287f26566a1533514C786).call{value: bal * 35 / 100}("");
    require(creator);
    // Deployer
    (bool deployer,) = payable(0xa3F61d1eEB1c5a1379a4DCf1890f71Ca835b9454).call{value: bal * 34 / 100}("");
    require(deployer);
    // Hashlips
    (bool hashlips,) = payable(0x943590A42C27D08e3744202c4Ae5eD55c2dE240D).call{value: bal * 5 / 100}("");
    require(hashlips);
    // Contract Dev
    (bool developer,) = payable(0x446B7f1EC4749fddAfC50CcaA0c8f82d4665FB61).call{value: bal * 1 / 100}("");
    require(developer);
    if (address(this).balance > 0) { // Fail-safe. Just in case my math skills have outskilled me.
      (bool os, ) = payable(owner()).call{value: address(this).balance}("");
      require(os);
    }
  }

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

  function setBaseURI(string calldata baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

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

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

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"baseURI","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":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMaxMintPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWallets","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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForFree","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForMoney","outputs":[],"stateMutability":"payable","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526647bab2b203e0006009556129e8600a55600a600b556005600c55610419600d553480156200003257600080fd5b50604051620023c2380380620023c2833981016040819052620000559162000264565b8251839083906200006e90600290602085019062000107565b5080516200008490600390602084019062000107565b505060008055506200009633620000b5565b8051620000ab90600f90602084019062000107565b5050505062000348565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200011590620002f5565b90600052602060002090601f01602090048101928262000139576000855562000184565b82601f106200015457805160ff191683800117855562000184565b8280016001018555821562000184579182015b828111156200018457825182559160200191906001019062000167565b506200019292915062000196565b5090565b5b8082111562000192576000815560010162000197565b600082601f830112620001bf57600080fd5b81516001600160401b0380821115620001dc57620001dc62000332565b604051601f8301601f19908116603f0116810190828211818310171562000207576200020762000332565b816040528381526020925086838588010111156200022457600080fd5b600091505b8382101562000248578582018301518183018401529082019062000229565b838211156200025a5760008385830101525b9695505050505050565b6000806000606084860312156200027a57600080fd5b83516001600160401b03808211156200029257600080fd5b620002a087838801620001ad565b94506020860151915080821115620002b757600080fd5b620002c587838801620001ad565b93506040860151915080821115620002dc57600080fd5b50620002eb86828701620001ad565b9150509250925092565b600181811c908216806200030a57607f821691505b602082108114156200032c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b61206a80620003586000396000f3fe6080604052600436106101cd5760003560e01c806370a08231116100f7578063b071401b11610095578063e985e9c511610064578063e985e9c51461050c578063ea673ede14610555578063efbd73f414610568578063f2fde38b1461058857600080fd5b8063b071401b14610496578063b88d4fde146104b6578063c87b56dd146104d6578063d5abeb01146104f657600080fd5b80638da5cb5b116100d15780638da5cb5b1461042d57806394354fd01461044b57806395d89b4114610461578063a22cb4651461047657600080fd5b806370a08231146103d8578063715018a6146103f8578063742a4c9b1461040d57600080fd5b806318160ddd1161016f57806344a0d68a1161013e57806344a0d68a1461036257806355f804b3146103825780636352211e146103a257806366112b6b146103c257600080fd5b806318160ddd146102f457806323b872dd1461030d5780633ccfd60b1461032d57806342842e0e1461034257600080fd5b8063081812fc116101ab578063081812fc14610264578063095ea7b31461029c5780630c93610a146102be57806313faede6146102de57600080fd5b806301ffc9a7146101d257806306bb99e21461020757806306fdde0314610242575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ca6565b6105a8565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610234610222366004611ada565b600e6020526000908152604090205481565b6040519081526020016101fe565b34801561024e57600080fd5b506102576105fa565b6040516101fe9190611e36565b34801561027057600080fd5b5061028461027f366004611d52565b61068c565b6040516001600160a01b0390911681526020016101fe565b3480156102a857600080fd5b506102bc6102b7366004611c7c565b6106d0565b005b3480156102ca57600080fd5b506102bc6102d9366004611d52565b61075e565b3480156102ea57600080fd5b5061023460095481565b34801561030057600080fd5b5060015460005403610234565b34801561031957600080fd5b506102bc610328366004611b28565b610902565b34801561033957600080fd5b506102bc61090d565b34801561034e57600080fd5b506102bc61035d366004611b28565b610ca8565b34801561036e57600080fd5b506102bc61037d366004611d52565b610cc3565b34801561038e57600080fd5b506102bc61039d366004611ce0565b610cf2565b3480156103ae57600080fd5b506102846103bd366004611d52565b610d28565b3480156103ce57600080fd5b50610234600c5481565b3480156103e457600080fd5b506102346103f3366004611ada565b610d3a565b34801561040457600080fd5b506102bc610d89565b34801561041957600080fd5b506102bc610428366004611d52565b610dbf565b34801561043957600080fd5b506008546001600160a01b0316610284565b34801561045757600080fd5b50610234600b5481565b34801561046d57600080fd5b50610257610dee565b34801561048257600080fd5b506102bc610491366004611c40565b610dfd565b3480156104a257600080fd5b506102bc6104b1366004611d52565b610e93565b3480156104c257600080fd5b506102bc6104d1366004611b64565b610ec2565b3480156104e257600080fd5b506102576104f1366004611d52565b610f13565b34801561050257600080fd5b50610234600a5481565b34801561051857600080fd5b506101f2610527366004611af5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102bc610563366004611d52565b610fde565b34801561057457600080fd5b506102bc610583366004611d6b565b61113a565b34801561059457600080fd5b506102bc6105a3366004611ada565b61116e565b60006001600160e01b031982166380ac58cd60e01b14806105d957506001600160e01b03198216635b5e139f60e01b145b806105f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060990611f5c565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f5c565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782611209565b6106b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106db82610d28565b9050806001600160a01b0316836001600160a01b031614156107105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610730575061072e8133610527565b155b1561074e576040516367d9dca160e11b815260040160405180910390fd5b610759838383611234565b505050565b80600a54816107706001546000540390565b61077a9190611ece565b11156107c85760405162461bcd60e51b81526020600482015260186024820152774d617820737570706c792065786365656465642c204d462160401b60448201526064015b60405180910390fd5b6000811180156107da5750600b548111155b6107f65760405162461bcd60e51b81526004016107bf90611e49565b6107fe611290565b61084a5760405162461bcd60e51b815260206004820152601b60248201527f546f6f206c61746520666f722066726565206d696e742c206d662e000000000060448201526064016107bf565b600c54336000908152600e6020526040902054610868908490611ece565b11156108c65760405162461bcd60e51b815260206004820152602760248201527f596f7527766520616c726561647920676f7420656e6f75676820666f7220667260448201526665652c206d662160c81b60648201526084016107bf565b336000908152600e60205260409020546108e1908390611ece565b336000818152600e60205260409020919091556108fe90836112a9565b5050565b6107598383836112c3565b6008546001600160a01b031633146109375760405162461bcd60e51b81526004016107bf90611e99565b47600073165cd37b4c644c2921454429e7f9358d18a45e14606461095c84600f611efa565b6109669190611ee6565b604051600081818185875af1925050503d80600081146109a2576040519150601f19603f3d011682016040523d82523d6000602084013e6109a7565b606091505b50509050806109b557600080fd5b600073ed98464bda3ce53a95b50f897556bede4316361c60646109d985600a611efa565b6109e39190611ee6565b604051600081818185875af1925050503d8060008114610a1f576040519150601f19603f3d011682016040523d82523d6000602084013e610a24565b606091505b5050905080610a3257600080fd5b600073c62f73f7dcff8ac5fb2287f26566a1533514c7866064610a56866023611efa565b610a609190611ee6565b604051600081818185875af1925050503d8060008114610a9c576040519150601f19603f3d011682016040523d82523d6000602084013e610aa1565b606091505b5050905080610aaf57600080fd5b600073a3f61d1eeb1c5a1379a4dcf1890f71ca835b94546064610ad3876022611efa565b610add9190611ee6565b604051600081818185875af1925050503d8060008114610b19576040519150601f19603f3d011682016040523d82523d6000602084013e610b1e565b606091505b5050905080610b2c57600080fd5b600073943590a42c27d08e3744202c4ae5ed55c2de240d6064610b50886005611efa565b610b5a9190611ee6565b604051600081818185875af1925050503d8060008114610b96576040519150601f19603f3d011682016040523d82523d6000602084013e610b9b565b606091505b5050905080610ba957600080fd5b600073446b7f1ec4749fddafc50ccaa0c8f82d4665fb616064610bcd896001611efa565b610bd79190611ee6565b604051600081818185875af1925050503d8060008114610c13576040519150601f19603f3d011682016040523d82523d6000602084013e610c18565b606091505b5050905080610c2657600080fd5b4715610c9f576000610c406008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c8a576040519150601f19603f3d011682016040523d82523d6000602084013e610c8f565b606091505b5050905080610c9d57600080fd5b505b50505050505050565b61075983838360405180602001604052806000815250610ec2565b6008546001600160a01b03163314610ced5760405162461bcd60e51b81526004016107bf90611e99565b600955565b6008546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016107bf90611e99565b610759600f8383611a25565b6000610d33826114d9565b5192915050565b60006001600160a01b038216610d63576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db35760405162461bcd60e51b81526004016107bf90611e99565b610dbd60006115f5565b565b6008546001600160a01b03163314610de95760405162461bcd60e51b81526004016107bf90611e99565b600d55565b60606003805461060990611f5c565b6001600160a01b038216331415610e275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ebd5760405162461bcd60e51b81526004016107bf90611e99565b600b55565b610ecd8484846112c3565b6001600160a01b0383163b15158015610eef5750610eed84848484611647565b155b15610f0d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f1e82611209565b610f825760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bf565b6000610f8c61173f565b90506000815111610fac5760405180602001604052806000815250610fd7565b80610fb68461174e565b604051602001610fc7929190611dba565b6040516020818303038152906040525b9392505050565b80600a5481610ff06001546000540390565b610ffa9190611ece565b11156110435760405162461bcd60e51b81526020600482015260186024820152774d617820737570706c792065786365656465642c204d462160401b60448201526064016107bf565b6000811180156110555750600b548111155b6110715760405162461bcd60e51b81526004016107bf90611e49565b8160095461107f9190611efa565b3410156110ce5760405162461bcd60e51b815260206004820152601860248201527f44616d6e2c2073656e64206d6f7265206574682c206d662e000000000000000060448201526064016107bf565b6110d833836112a9565b816009546110e69190611efa565b3411156108fe57336001600160a01b03166108fc836009546111089190611efa565b6111129034611f19565b6040518115909202916000818181858888f19350505050158015610759573d6000803e3d6000fd5b6008546001600160a01b031633146111645760405162461bcd60e51b81526004016107bf90611e99565b6108fe81836112a9565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016107bf90611e99565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b611206816115f5565b50565b60008054821080156105f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600d546112a26001546000540390565b1115905090565b6108fe82826040518060200160405280600081525061184c565b60006112ce826114d9565b80519091506000906001600160a01b0316336001600160a01b031614806112fc575081516112fc9033610527565b8061131757503361130c8461068c565b6001600160a01b0316145b90508061133757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461136c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661139357604051633a954ecd60e21b815260040160405180910390fd5b6113a36000848460000151611234565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661148f5760005481101561148f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115da5780516001600160a01b031615611570579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d5579392505050565b611570565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061167c903390899088908890600401611df9565b602060405180830381600087803b15801561169657600080fd5b505af19250505080156116c6575060408051601f3d908101601f191682019092526116c391810190611cc3565b60015b611721573d8080156116f4576040519150601f19603f3d011682016040523d82523d6000602084013e6116f9565b606091505b508051611719576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f805461060990611f5c565b6060816117725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179c578061178681611f97565b91506117959050600a83611ee6565b9150611776565b60008167ffffffffffffffff8111156117b7576117b7612008565b6040519080825280601f01601f1916602001820160405280156117e1576020820181803683370190505b5090505b8415611737576117f6600183611f19565b9150611803600a86611fb2565b61180e906030611ece565b60f81b81838151811061182357611823611ff2565b60200101906001600160f81b031916908160001a905350611845600a86611ee6565b94506117e5565b61075983838360016000546001600160a01b03851661187d57604051622e076360e81b815260040160405180910390fd5b8361189b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561194d57506001600160a01b0387163b15155b156119d6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461199e6000888480600101955088611647565b6119bb576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119535782600054146119d157600080fd5b611a1c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119d7575b506000556114d2565b828054611a3190611f5c565b90600052602060002090601f016020900481019282611a535760008555611a99565b82601f10611a6c5782800160ff19823516178555611a99565b82800160010185558215611a99579182015b82811115611a99578235825591602001919060010190611a7e565b50611aa5929150611aa9565b5090565b5b80821115611aa55760008155600101611aaa565b80356001600160a01b0381168114611ad557600080fd5b919050565b600060208284031215611aec57600080fd5b610fd782611abe565b60008060408385031215611b0857600080fd5b611b1183611abe565b9150611b1f60208401611abe565b90509250929050565b600080600060608486031215611b3d57600080fd5b611b4684611abe565b9250611b5460208501611abe565b9150604084013590509250925092565b60008060008060808587031215611b7a57600080fd5b611b8385611abe565b9350611b9160208601611abe565b925060408501359150606085013567ffffffffffffffff80821115611bb557600080fd5b818701915087601f830112611bc957600080fd5b813581811115611bdb57611bdb612008565b604051601f8201601f19908116603f01168101908382118183101715611c0357611c03612008565b816040528281528a6020848701011115611c1c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c5357600080fd5b611c5c83611abe565b915060208301358015158114611c7157600080fd5b809150509250929050565b60008060408385031215611c8f57600080fd5b611c9883611abe565b946020939093013593505050565b600060208284031215611cb857600080fd5b8135610fd78161201e565b600060208284031215611cd557600080fd5b8151610fd78161201e565b60008060208385031215611cf357600080fd5b823567ffffffffffffffff80821115611d0b57600080fd5b818501915085601f830112611d1f57600080fd5b813581811115611d2e57600080fd5b866020828501011115611d4057600080fd5b60209290920196919550909350505050565b600060208284031215611d6457600080fd5b5035919050565b60008060408385031215611d7e57600080fd5b82359150611b1f60208401611abe565b60008151808452611da6816020860160208601611f30565b601f01601f19169290920160200192915050565b60008351611dcc818460208801611f30565b835190830190611de0818360208801611f30565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2c90830184611d8e565b9695505050505050565b602081526000610fd76020830184611d8e565b60208082526030908201527f496e76616c6964206d696e7420616d6f756e742c206d662e2054727920736f6d60408201526f32ba3434b733903132b637bb9018989760811b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ee157611ee1611fc6565b500190565b600082611ef557611ef5611fdc565b500490565b6000816000190483118215151615611f1457611f14611fc6565b500290565b600082821015611f2b57611f2b611fc6565b500390565b60005b83811015611f4b578181015183820152602001611f33565b83811115610f0d5750506000910152565b600181811c90821680611f7057607f821691505b60208210811415611f9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fab57611fab611fc6565b5060010190565b600082611fc157611fc1611fdc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120657600080fdfea264697066735822122027d1196f6eafad93103a39da727294ed8ca8a5e8f7e29e2602b524961e43662a64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f637962657270756e6b5f6d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054342504d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57756248684c75796d51326439654b6135366856375057633942754a7048347257414b5a4566754d446e44732f00000000000000000000

Deployed Bytecode

0x6080604052600436106101cd5760003560e01c806370a08231116100f7578063b071401b11610095578063e985e9c511610064578063e985e9c51461050c578063ea673ede14610555578063efbd73f414610568578063f2fde38b1461058857600080fd5b8063b071401b14610496578063b88d4fde146104b6578063c87b56dd146104d6578063d5abeb01146104f657600080fd5b80638da5cb5b116100d15780638da5cb5b1461042d57806394354fd01461044b57806395d89b4114610461578063a22cb4651461047657600080fd5b806370a08231146103d8578063715018a6146103f8578063742a4c9b1461040d57600080fd5b806318160ddd1161016f57806344a0d68a1161013e57806344a0d68a1461036257806355f804b3146103825780636352211e146103a257806366112b6b146103c257600080fd5b806318160ddd146102f457806323b872dd1461030d5780633ccfd60b1461032d57806342842e0e1461034257600080fd5b8063081812fc116101ab578063081812fc14610264578063095ea7b31461029c5780630c93610a146102be57806313faede6146102de57600080fd5b806301ffc9a7146101d257806306bb99e21461020757806306fdde0314610242575b600080fd5b3480156101de57600080fd5b506101f26101ed366004611ca6565b6105a8565b60405190151581526020015b60405180910390f35b34801561021357600080fd5b50610234610222366004611ada565b600e6020526000908152604090205481565b6040519081526020016101fe565b34801561024e57600080fd5b506102576105fa565b6040516101fe9190611e36565b34801561027057600080fd5b5061028461027f366004611d52565b61068c565b6040516001600160a01b0390911681526020016101fe565b3480156102a857600080fd5b506102bc6102b7366004611c7c565b6106d0565b005b3480156102ca57600080fd5b506102bc6102d9366004611d52565b61075e565b3480156102ea57600080fd5b5061023460095481565b34801561030057600080fd5b5060015460005403610234565b34801561031957600080fd5b506102bc610328366004611b28565b610902565b34801561033957600080fd5b506102bc61090d565b34801561034e57600080fd5b506102bc61035d366004611b28565b610ca8565b34801561036e57600080fd5b506102bc61037d366004611d52565b610cc3565b34801561038e57600080fd5b506102bc61039d366004611ce0565b610cf2565b3480156103ae57600080fd5b506102846103bd366004611d52565b610d28565b3480156103ce57600080fd5b50610234600c5481565b3480156103e457600080fd5b506102346103f3366004611ada565b610d3a565b34801561040457600080fd5b506102bc610d89565b34801561041957600080fd5b506102bc610428366004611d52565b610dbf565b34801561043957600080fd5b506008546001600160a01b0316610284565b34801561045757600080fd5b50610234600b5481565b34801561046d57600080fd5b50610257610dee565b34801561048257600080fd5b506102bc610491366004611c40565b610dfd565b3480156104a257600080fd5b506102bc6104b1366004611d52565b610e93565b3480156104c257600080fd5b506102bc6104d1366004611b64565b610ec2565b3480156104e257600080fd5b506102576104f1366004611d52565b610f13565b34801561050257600080fd5b50610234600a5481565b34801561051857600080fd5b506101f2610527366004611af5565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6102bc610563366004611d52565b610fde565b34801561057457600080fd5b506102bc610583366004611d6b565b61113a565b34801561059457600080fd5b506102bc6105a3366004611ada565b61116e565b60006001600160e01b031982166380ac58cd60e01b14806105d957506001600160e01b03198216635b5e139f60e01b145b806105f457506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461060990611f5c565b80601f016020809104026020016040519081016040528092919081815260200182805461063590611f5c565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782611209565b6106b4576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006106db82610d28565b9050806001600160a01b0316836001600160a01b031614156107105760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610730575061072e8133610527565b155b1561074e576040516367d9dca160e11b815260040160405180910390fd5b610759838383611234565b505050565b80600a54816107706001546000540390565b61077a9190611ece565b11156107c85760405162461bcd60e51b81526020600482015260186024820152774d617820737570706c792065786365656465642c204d462160401b60448201526064015b60405180910390fd5b6000811180156107da5750600b548111155b6107f65760405162461bcd60e51b81526004016107bf90611e49565b6107fe611290565b61084a5760405162461bcd60e51b815260206004820152601b60248201527f546f6f206c61746520666f722066726565206d696e742c206d662e000000000060448201526064016107bf565b600c54336000908152600e6020526040902054610868908490611ece565b11156108c65760405162461bcd60e51b815260206004820152602760248201527f596f7527766520616c726561647920676f7420656e6f75676820666f7220667260448201526665652c206d662160c81b60648201526084016107bf565b336000908152600e60205260409020546108e1908390611ece565b336000818152600e60205260409020919091556108fe90836112a9565b5050565b6107598383836112c3565b6008546001600160a01b031633146109375760405162461bcd60e51b81526004016107bf90611e99565b47600073165cd37b4c644c2921454429e7f9358d18a45e14606461095c84600f611efa565b6109669190611ee6565b604051600081818185875af1925050503d80600081146109a2576040519150601f19603f3d011682016040523d82523d6000602084013e6109a7565b606091505b50509050806109b557600080fd5b600073ed98464bda3ce53a95b50f897556bede4316361c60646109d985600a611efa565b6109e39190611ee6565b604051600081818185875af1925050503d8060008114610a1f576040519150601f19603f3d011682016040523d82523d6000602084013e610a24565b606091505b5050905080610a3257600080fd5b600073c62f73f7dcff8ac5fb2287f26566a1533514c7866064610a56866023611efa565b610a609190611ee6565b604051600081818185875af1925050503d8060008114610a9c576040519150601f19603f3d011682016040523d82523d6000602084013e610aa1565b606091505b5050905080610aaf57600080fd5b600073a3f61d1eeb1c5a1379a4dcf1890f71ca835b94546064610ad3876022611efa565b610add9190611ee6565b604051600081818185875af1925050503d8060008114610b19576040519150601f19603f3d011682016040523d82523d6000602084013e610b1e565b606091505b5050905080610b2c57600080fd5b600073943590a42c27d08e3744202c4ae5ed55c2de240d6064610b50886005611efa565b610b5a9190611ee6565b604051600081818185875af1925050503d8060008114610b96576040519150601f19603f3d011682016040523d82523d6000602084013e610b9b565b606091505b5050905080610ba957600080fd5b600073446b7f1ec4749fddafc50ccaa0c8f82d4665fb616064610bcd896001611efa565b610bd79190611ee6565b604051600081818185875af1925050503d8060008114610c13576040519150601f19603f3d011682016040523d82523d6000602084013e610c18565b606091505b5050905080610c2657600080fd5b4715610c9f576000610c406008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610c8a576040519150601f19603f3d011682016040523d82523d6000602084013e610c8f565b606091505b5050905080610c9d57600080fd5b505b50505050505050565b61075983838360405180602001604052806000815250610ec2565b6008546001600160a01b03163314610ced5760405162461bcd60e51b81526004016107bf90611e99565b600955565b6008546001600160a01b03163314610d1c5760405162461bcd60e51b81526004016107bf90611e99565b610759600f8383611a25565b6000610d33826114d9565b5192915050565b60006001600160a01b038216610d63576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b03163314610db35760405162461bcd60e51b81526004016107bf90611e99565b610dbd60006115f5565b565b6008546001600160a01b03163314610de95760405162461bcd60e51b81526004016107bf90611e99565b600d55565b60606003805461060990611f5c565b6001600160a01b038216331415610e275760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314610ebd5760405162461bcd60e51b81526004016107bf90611e99565b600b55565b610ecd8484846112c3565b6001600160a01b0383163b15158015610eef5750610eed84848484611647565b155b15610f0d576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060610f1e82611209565b610f825760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b60648201526084016107bf565b6000610f8c61173f565b90506000815111610fac5760405180602001604052806000815250610fd7565b80610fb68461174e565b604051602001610fc7929190611dba565b6040516020818303038152906040525b9392505050565b80600a5481610ff06001546000540390565b610ffa9190611ece565b11156110435760405162461bcd60e51b81526020600482015260186024820152774d617820737570706c792065786365656465642c204d462160401b60448201526064016107bf565b6000811180156110555750600b548111155b6110715760405162461bcd60e51b81526004016107bf90611e49565b8160095461107f9190611efa565b3410156110ce5760405162461bcd60e51b815260206004820152601860248201527f44616d6e2c2073656e64206d6f7265206574682c206d662e000000000000000060448201526064016107bf565b6110d833836112a9565b816009546110e69190611efa565b3411156108fe57336001600160a01b03166108fc836009546111089190611efa565b6111129034611f19565b6040518115909202916000818181858888f19350505050158015610759573d6000803e3d6000fd5b6008546001600160a01b031633146111645760405162461bcd60e51b81526004016107bf90611e99565b6108fe81836112a9565b6008546001600160a01b031633146111985760405162461bcd60e51b81526004016107bf90611e99565b6001600160a01b0381166111fd5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016107bf565b611206816115f5565b50565b60008054821080156105f4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000600d546112a26001546000540390565b1115905090565b6108fe82826040518060200160405280600081525061184c565b60006112ce826114d9565b80519091506000906001600160a01b0316336001600160a01b031614806112fc575081516112fc9033610527565b8061131757503361130c8461068c565b6001600160a01b0316145b90508061133757604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b03161461136c5760405162a1148160e81b815260040160405180910390fd5b6001600160a01b03841661139357604051633a954ecd60e21b815260040160405180910390fd5b6113a36000848460000151611234565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661148f5760005481101561148f578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6040805160608101825260008082526020820181905291810191909152816000548110156115dc57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906115da5780516001600160a01b031615611570579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff16151592810192909252156115d5579392505050565b611570565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a029061167c903390899088908890600401611df9565b602060405180830381600087803b15801561169657600080fd5b505af19250505080156116c6575060408051601f3d908101601f191682019092526116c391810190611cc3565b60015b611721573d8080156116f4576040519150601f19603f3d011682016040523d82523d6000602084013e6116f9565b606091505b508051611719576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600f805461060990611f5c565b6060816117725750506040805180820190915260018152600360fc1b602082015290565b8160005b811561179c578061178681611f97565b91506117959050600a83611ee6565b9150611776565b60008167ffffffffffffffff8111156117b7576117b7612008565b6040519080825280601f01601f1916602001820160405280156117e1576020820181803683370190505b5090505b8415611737576117f6600183611f19565b9150611803600a86611fb2565b61180e906030611ece565b60f81b81838151811061182357611823611ff2565b60200101906001600160f81b031916908160001a905350611845600a86611ee6565b94506117e5565b61075983838360016000546001600160a01b03851661187d57604051622e076360e81b815260040160405180910390fd5b8361189b5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561194d57506001600160a01b0387163b15155b156119d6575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461199e6000888480600101955088611647565b6119bb576040516368d2bf6b60e11b815260040160405180910390fd5b808214156119535782600054146119d157600080fd5b611a1c565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156119d7575b506000556114d2565b828054611a3190611f5c565b90600052602060002090601f016020900481019282611a535760008555611a99565b82601f10611a6c5782800160ff19823516178555611a99565b82800160010185558215611a99579182015b82811115611a99578235825591602001919060010190611a7e565b50611aa5929150611aa9565b5090565b5b80821115611aa55760008155600101611aaa565b80356001600160a01b0381168114611ad557600080fd5b919050565b600060208284031215611aec57600080fd5b610fd782611abe565b60008060408385031215611b0857600080fd5b611b1183611abe565b9150611b1f60208401611abe565b90509250929050565b600080600060608486031215611b3d57600080fd5b611b4684611abe565b9250611b5460208501611abe565b9150604084013590509250925092565b60008060008060808587031215611b7a57600080fd5b611b8385611abe565b9350611b9160208601611abe565b925060408501359150606085013567ffffffffffffffff80821115611bb557600080fd5b818701915087601f830112611bc957600080fd5b813581811115611bdb57611bdb612008565b604051601f8201601f19908116603f01168101908382118183101715611c0357611c03612008565b816040528281528a6020848701011115611c1c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215611c5357600080fd5b611c5c83611abe565b915060208301358015158114611c7157600080fd5b809150509250929050565b60008060408385031215611c8f57600080fd5b611c9883611abe565b946020939093013593505050565b600060208284031215611cb857600080fd5b8135610fd78161201e565b600060208284031215611cd557600080fd5b8151610fd78161201e565b60008060208385031215611cf357600080fd5b823567ffffffffffffffff80821115611d0b57600080fd5b818501915085601f830112611d1f57600080fd5b813581811115611d2e57600080fd5b866020828501011115611d4057600080fd5b60209290920196919550909350505050565b600060208284031215611d6457600080fd5b5035919050565b60008060408385031215611d7e57600080fd5b82359150611b1f60208401611abe565b60008151808452611da6816020860160208601611f30565b601f01601f19169290920160200192915050565b60008351611dcc818460208801611f30565b835190830190611de0818360208801611f30565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611e2c90830184611d8e565b9695505050505050565b602081526000610fd76020830184611d8e565b60208082526030908201527f496e76616c6964206d696e7420616d6f756e742c206d662e2054727920736f6d60408201526f32ba3434b733903132b637bb9018989760811b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60008219821115611ee157611ee1611fc6565b500190565b600082611ef557611ef5611fdc565b500490565b6000816000190483118215151615611f1457611f14611fc6565b500290565b600082821015611f2b57611f2b611fc6565b500390565b60005b83811015611f4b578181015183820152602001611f33565b83811115610f0d5750506000910152565b600181811c90821680611f7057607f821691505b60208210811415611f9157634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611fab57611fab611fc6565b5060010190565b600082611fc157611fc1611fdc565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461120657600080fdfea264697066735822122027d1196f6eafad93103a39da727294ed8ca8a5e8f7e29e2602b524961e43662a64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000000f637962657270756e6b5f6d66657273000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054342504d460000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d57756248684c75796d51326439654b6135366856375057633942754a7048347257414b5a4566754d446e44732f00000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): cyberpunk_mfers
Arg [1] : _symbol (string): CBPMF
Arg [2] : baseURI (string): ipfs://QmWubHhLuymQ2d9eKa56hV7PWc9BuJpH4rWAKZEfuMDnDs/

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000f
Arg [4] : 637962657270756e6b5f6d666572730000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4342504d46000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [8] : 697066733a2f2f516d57756248684c75796d51326439654b6135366856375057
Arg [9] : 633942754a7048347257414b5a4566754d446e44732f00000000000000000000


Deployed Bytecode Sourcemap

45860:4161:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25782:305;;;;;;;;;;-1:-1:-1;25782:305:0;;;;;:::i;:::-;;:::i;:::-;;;6260:14:1;;6253:22;6235:41;;6223:2;6208:18;25782:305:0;;;;;;;;46143:46;;;;;;;;;;-1:-1:-1;46143:46:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;9728:25:1;;;9716:2;9701:18;46143:46:0;9582:177:1;29167:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;30670:204::-;;;;;;;;;;-1:-1:-1;30670:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5558:32:1;;;5540:51;;5528:2;5513:18;30670:204:0;5394:203:1;30233:371:0;;;;;;;;;;-1:-1:-1;30233:371:0;;;;;:::i;:::-;;:::i;:::-;;46665:379;;;;;;;;;;-1:-1:-1;46665:379:0;;;;;:::i;:::-;;:::i;45942:35::-;;;;;;;;;;;;;;;;25031:303;;;;;;;;;;-1:-1:-1;25285:12:0;;25075:7;25269:13;:28;25031:303;;31527:170;;;;;;;;;;-1:-1:-1;31527:170:0;;;;;:::i;:::-;;:::i;48019:1336::-;;;;;;;;;;;;;:::i;31768:185::-;;;;;;;;;;-1:-1:-1;31768:185:0;;;;;:::i;:::-;;:::i;47709:74::-;;;;;;;;;;-1:-1:-1;47709:74:0;;;;;:::i;:::-;;:::i;49490:100::-;;;;;;;;;;-1:-1:-1;49490:100:0;;;;;:::i;:::-;;:::i;28976:124::-;;;;;;;;;;-1:-1:-1;28976:124:0;;;;;:::i;:::-;;:::i;46062:39::-;;;;;;;;;;;;;;;;26151:206;;;;;;;;;;-1:-1:-1;26151:206:0;;;;;:::i;:::-;;:::i;44958:103::-;;;;;;;;;;;;;:::i;47925:88::-;;;;;;;;;;-1:-1:-1;47925:88:0;;;;;:::i;:::-;;:::i;44307:87::-;;;;;;;;;;-1:-1:-1;44380:6:0;;-1:-1:-1;;;;;44380:6:0;44307:87;;46019:38;;;;;;;;;;;;;;;;29336:104;;;;;;;;;;;;;:::i;30946:279::-;;;;;;;;;;-1:-1:-1;30946:279:0;;;;;:::i;:::-;;:::i;47789:130::-;;;;;;;;;;-1:-1:-1;47789:130:0;;;;;:::i;:::-;;:::i;32024:369::-;;;;;;;;;;-1:-1:-1;32024:369:0;;;;;:::i;:::-;;:::i;49596:420::-;;;;;;;;;;-1:-1:-1;49596:420:0;;;;;:::i;:::-;;:::i;45982:32::-;;;;;;;;;;;;;;;;31296:164;;;;;;;;;;-1:-1:-1;31296:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;31417:25:0;;;31393:4;31417:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;31296:164;47050:411;;;;;;:::i;:::-;;:::i;47576:127::-;;;;;;;;;;-1:-1:-1;47576:127:0;;;;;:::i;:::-;;:::i;45216:201::-;;;;;;;;;;-1:-1:-1;45216:201:0;;;;;:::i;:::-;;:::i;25782:305::-;25884:4;-1:-1:-1;;;;;;25921:40:0;;-1:-1:-1;;;25921:40:0;;:105;;-1:-1:-1;;;;;;;25978:48:0;;-1:-1:-1;;;25978:48:0;25921:105;:158;;;-1:-1:-1;;;;;;;;;;11425:40:0;;;26043:36;25901:178;25782:305;-1:-1:-1;;25782:305:0:o;29167:100::-;29221:13;29254:5;29247:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29167:100;:::o;30670:204::-;30738:7;30763:16;30771:7;30763;:16::i;:::-;30758:64;;30788:34;;-1:-1:-1;;;30788:34:0;;;;;;;;;;;30758:64;-1:-1:-1;30842:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;30842:24:0;;30670:204::o;30233:371::-;30306:13;30322:24;30338:7;30322:15;:24::i;:::-;30306:40;;30367:5;-1:-1:-1;;;;;30361:11:0;:2;-1:-1:-1;;;;;30361:11:0;;30357:48;;;30381:24;;-1:-1:-1;;;30381:24:0;;;;;;;;;;;30357:48;21118:10;-1:-1:-1;;;;;30422:21:0;;;;;;:63;;-1:-1:-1;30448:37:0;30465:5;21118:10;31296:164;:::i;30448:37::-;30447:38;30422:63;30418:138;;;30509:35;;-1:-1:-1;;;30509:35:0;;;;;;;;;;;30418:138;30568:28;30577:2;30581:7;30590:5;30568:8;:28::i;:::-;30295:309;30233:371;;:::o;46665:379::-;46735:11;46487:9;;46472:11;46456:13;25285:12;;25075:7;25269:13;:28;;25031:303;46456:13;:27;;;;:::i;:::-;:40;;46448:77;;;;-1:-1:-1;;;46448:77:0;;9431:2:1;46448:77:0;;;9413:21:1;9470:2;9450:18;;;9443:30;-1:-1:-1;;;9489:18:1;;;9482:54;9553:18;;46448:77:0;;;;;;;;;46554:1;46540:11;:15;:52;;;;;46574:18;;46559:11;:33;;46540:52;46532:113;;;;-1:-1:-1;;;46532:113:0;;;;;;;:::i;:::-;46763:12:::1;:10;:12::i;:::-;46755:52;;;::::0;-1:-1:-1;;;46755:52:0;;8298:2:1;46755:52:0::1;::::0;::::1;8280:21:1::0;8337:2;8317:18;;;8310:30;8376:29;8356:18;;;8349:57;8423:18;;46755:52:0::1;8096:351:1::0;46755:52:0::1;46863:20;::::0;46834:10:::1;46822:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;46848:11;;46822:37:::1;:::i;:::-;:61;;46814:113;;;::::0;-1:-1:-1;;;46814:113:0;;7120:2:1;46814:113:0::1;::::0;::::1;7102:21:1::0;7159:2;7139:18;;;7132:30;7198:34;7178:18;;;7171:62;-1:-1:-1;;;7249:18:1;;;7242:37;7296:19;;46814:113:0::1;6918:403:1::0;46814:113:0::1;46972:10;46960:23;::::0;;;:11:::1;:23;::::0;;;;;:37:::1;::::0;46986:11;;46960:37:::1;:::i;:::-;46946:10;46934:23;::::0;;;:11:::1;:23;::::0;;;;:63;;;;47004:34:::1;::::0;47026:11;47004:9:::1;:34::i;:::-;46665:379:::0;;:::o;31527:170::-;31661:28;31671:4;31677:2;31681:7;31661:9;:28::i;48019:1336::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;48077:21:::1;48063:11;48252:42;48319:3;48308:8;48077:21:::0;48314:2:::1;48308:8;:::i;:::-;:14;;;;:::i;:::-;48244:83;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48226:101;;;48342:7;48334:16;;;::::0;::::1;;48418:13;48444:42;48511:3;48500:8;:3:::0;48506:2:::1;48500:8;:::i;:::-;:14;;;;:::i;:::-;48436:83;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48417:102;;;48534:8;48526:17;;;::::0;::::1;;48567:12;48592:42;48659:3;48648:8;:3:::0;48654:2:::1;48648:8;:::i;:::-;:14;;;;:::i;:::-;48584:83;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48566:101;;;48682:7;48674:16;;;::::0;::::1;;48715:13;48741:42;48808:3;48797:8;:3:::0;48803:2:::1;48797:8;:::i;:::-;:14;;;;:::i;:::-;48733:83;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48714:102;;;48831:8;48823:17;;;::::0;::::1;;48865:13;48891:42;48957:3;48947:7;:3:::0;48953:1:::1;48947:7;:::i;:::-;:13;;;;:::i;:::-;48883:82;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48864:101;;;48980:8;48972:17;;;::::0;::::1;;49018:14;49045:42;49111:3;49101:7;:3:::0;49107:1:::1;49101:7;:::i;:::-;:13;;;;:::i;:::-;49037:82;::::0;::::1;::::0;;;;;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49017:102;;;49134:9;49126:18;;;::::0;::::1;;49155:21;:25:::0;49151:199:::1;;49254:7;49275;44380:6:::0;;-1:-1:-1;;;;;44380:6:0;;44307:87;49275:7:::1;-1:-1:-1::0;;;;;49267:21:0::1;49296;49267:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;49253:69;;;49339:2;49331:11;;;::::0;::::1;;49182:168;49151:199;48056:1299;;;;;;;48019:1336::o:0;31768:185::-;31906:39;31923:4;31929:2;31933:7;31906:39;;;;;;;;;;;;:16;:39::i;47709:74::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;47765:4:::1;:12:::0;47709:74::o;49490:100::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;49561:23:::1;:13;49577:7:::0;;49561:23:::1;:::i;28976:124::-:0;29040:7;29067:20;29079:7;29067:11;:20::i;:::-;:25;;28976:124;-1:-1:-1;;28976:124:0:o;26151:206::-;26215:7;-1:-1:-1;;;;;26239:19:0;;26235:60;;26267:28;;-1:-1:-1;;;26267:28:0;;;;;;;;;;;26235:60;-1:-1:-1;;;;;;26321:19:0;;;;;:12;:19;;;;;:27;;;;26151:206::o;44958:103::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;45023:30:::1;45050:1;45023:18;:30::i;:::-;44958:103::o:0;47925:88::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;47987:13:::1;:20:::0;47925:88::o;29336:104::-;29392:13;29425:7;29418:14;;;;;:::i;30946:279::-;-1:-1:-1;;;;;31037:24:0;;21118:10;31037:24;31033:54;;;31070:17;;-1:-1:-1;;;31070:17:0;;;;;;;;;;;31033:54;21118:10;31100:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;31100:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;31100:53:0;;;;;;;;;;31169:48;;6235:41:1;;;31100:42:0;;21118:10;31169:48;;6208:18:1;31169:48:0;;;;;;;30946:279;;:::o;47789:130::-;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;47873:18:::1;:40:::0;47789:130::o;32024:369::-;32191:28;32201:4;32207:2;32211:7;32191:9;:28::i;:::-;-1:-1:-1;;;;;32234:13:0;;1528:19;:23;;32234:76;;;;;32254:56;32285:4;32291:2;32295:7;32304:5;32254:30;:56::i;:::-;32253:57;32234:76;32230:156;;;32334:40;;-1:-1:-1;;;32334:40:0;;;;;;;;;;;32230:156;32024:369;;;;:::o;49596:420::-;49695:13;49736:17;49744:8;49736:7;:17::i;:::-;49720:98;;;;-1:-1:-1;;;49720:98:0;;9015:2:1;49720:98:0;;;8997:21:1;9054:2;9034:18;;;9027:30;9093:34;9073:18;;;9066:62;-1:-1:-1;;;9144:18:1;;;9137:45;9199:19;;49720:98:0;8813:411:1;49720:98:0;49827:28;49858:10;:8;:10::i;:::-;49827:41;;49913:1;49888:14;49882:28;:32;:128;;;;;;;;;;;;;;;;;49950:14;49966:19;:8;:17;:19::i;:::-;49933:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49882:128;49875:135;49596:420;-1:-1:-1;;;49596:420:0:o;47050:411::-;47146:11;46487:9;;46472:11;46456:13;25285:12;;25075:7;25269:13;:28;;25031:303;46456:13;:27;;;;:::i;:::-;:40;;46448:77;;;;-1:-1:-1;;;46448:77:0;;9431:2:1;46448:77:0;;;9413:21:1;9470:2;9450:18;;;9443:30;-1:-1:-1;;;9489:18:1;;;9482:54;9553:18;;46448:77:0;9229:348:1;46448:77:0;46554:1;46540:11;:15;:52;;;;;46574:18;;46559:11;:33;;46540:52;46532:113;;;;-1:-1:-1;;;46532:113:0;;;;;;;:::i;:::-;47197:11:::1;47190:4;;:18;;;;:::i;:::-;47177:9;:31;;47169:68;;;::::0;-1:-1:-1;;;47169:68:0;;7528:2:1;47169:68:0::1;::::0;::::1;7510:21:1::0;7567:2;7547:18;;;7540:30;7606:26;7586:18;;;7579:54;7650:18;;47169:68:0::1;7326:348:1::0;47169:68:0::1;47244:34;47254:10;47266:11;47244:9;:34::i;:::-;47362:11;47355:4;;:18;;;;:::i;:::-;47343:9;:30;47339:117;;;47394:10;-1:-1:-1::0;;;;;47386:28:0::1;:62;47435:11;47428:4;;:18;;;;:::i;:::-;47415:32;::::0;:9:::1;:32;:::i;:::-;47386:62;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;47576:127:::0;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;47664:33:::1;47674:9;47685:11;47664:9;:33::i;45216:201::-:0;44380:6;;-1:-1:-1;;;;;44380:6:0;21118:10;44527:23;44519:68;;;;-1:-1:-1;;;44519:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45305:22:0;::::1;45297:73;;;::::0;-1:-1:-1;;;45297:73:0;;6713:2:1;45297:73:0::1;::::0;::::1;6695:21:1::0;6752:2;6732:18;;;6725:30;6791:34;6771:18;;;6764:62;-1:-1:-1;;;6842:18:1;;;6835:36;6888:19;;45297:73:0::1;6511:402:1::0;45297:73:0::1;45381:28;45400:8;45381:18;:28::i;:::-;45216:201:::0;:::o;32648:187::-;32705:4;32769:13;;32759:7;:23;32729:98;;;;-1:-1:-1;;32800:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;32800:27:0;;;;32799:28;;32648:187::o;40259:196::-;40374:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;40374:29:0;-1:-1:-1;;;;;40374:29:0;;;;;;;;;40419:28;;40374:24;;40419:28;;;;;;;40259:196;;;:::o;47467:101::-;47512:4;47549:13;;47532;25285:12;;25075:7;25269:13;:28;;25031:303;47532:13;:30;;47525:37;;47467:101;:::o;32843:104::-;32912:27;32922:2;32926:8;32912:27;;;;;;;;;;;;:9;:27::i;35761:2112::-;35876:35;35914:20;35926:7;35914:11;:20::i;:::-;35989:18;;35876:58;;-1:-1:-1;35947:22:0;;-1:-1:-1;;;;;35973:34:0;21118:10;-1:-1:-1;;;;;35973:34:0;;:101;;;-1:-1:-1;36041:18:0;;36024:50;;21118:10;31296:164;:::i;36024:50::-;35973:154;;;-1:-1:-1;21118:10:0;36091:20;36103:7;36091:11;:20::i;:::-;-1:-1:-1;;;;;36091:36:0;;35973:154;35947:181;;36146:17;36141:66;;36172:35;;-1:-1:-1;;;36172:35:0;;;;;;;;;;;36141:66;36244:4;-1:-1:-1;;;;;36222:26:0;:13;:18;;;-1:-1:-1;;;;;36222:26:0;;36218:67;;36257:28;;-1:-1:-1;;;36257:28:0;;;;;;;;;;;36218:67;-1:-1:-1;;;;;36300:16:0;;36296:52;;36325:23;;-1:-1:-1;;;36325:23:0;;;;;;;;;;;36296:52;36469:49;36486:1;36490:7;36499:13;:18;;;36469:8;:49::i;:::-;-1:-1:-1;;;;;36814:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;36814:31:0;;;;;;;-1:-1:-1;;36814:31:0;;;;;;;36860:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;36860:29:0;;;;;;;;;;;36906:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;36951:61:0;;;;-1:-1:-1;;;36996:15:0;36951:61;;;;;;;;;;;37286:11;;;37316:24;;;;;:29;37286:11;;37316:29;37312:445;;37541:13;;37527:11;:27;37523:219;;;37611:18;;;37579:24;;;:11;:24;;;;;;;;:50;;37694:28;;;;37652:70;;-1:-1:-1;;;37652:70:0;-1:-1:-1;;;;;;37652:70:0;;;-1:-1:-1;;;;;37579:50:0;;;37652:70;;;;;;;37523:219;36789:979;37804:7;37800:2;-1:-1:-1;;;;;37785:27:0;37794:4;-1:-1:-1;;;;;37785:27:0;;;;;;;;;;;37823:42;35865:2008;;35761:2112;;;:::o;27806:1108::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;27916:7:0;27999:13;;27992:4;:20;27961:886;;;28033:31;28067:17;;;:11;:17;;;;;;;;;28033:51;;;;;;;;;-1:-1:-1;;;;;28033:51:0;;;;-1:-1:-1;;;28033:51:0;;;;;;;;;;;-1:-1:-1;;;28033:51:0;;;;;;;;;;;;;;28103:729;;28153:14;;-1:-1:-1;;;;;28153:28:0;;28149:101;;28217:9;27806:1108;-1:-1:-1;;;27806:1108:0:o;28149:101::-;-1:-1:-1;;;28592:6:0;28637:17;;;;:11;:17;;;;;;;;;28625:29;;;;;;;;;-1:-1:-1;;;;;28625:29:0;;;;;-1:-1:-1;;;28625:29:0;;;;;;;;;;;-1:-1:-1;;;28625:29:0;;;;;;;;;;;;;28685:28;28681:109;;28753:9;27806:1108;-1:-1:-1;;;27806:1108:0:o;28681:109::-;28552:261;;;28014:833;27961:886;28875:31;;-1:-1:-1;;;28875:31:0;;;;;;;;;;;45577:191;45670:6;;;-1:-1:-1;;;;;45687:17:0;;;-1:-1:-1;;;;;;45687:17:0;;;;;;;45720:40;;45670:6;;;45687:17;45670:6;;45720:40;;45651:16;;45720:40;45640:128;45577:191;:::o;40947:667::-;41131:72;;-1:-1:-1;;;41131:72:0;;41110:4;;-1:-1:-1;;;;;41131:36:0;;;;;:72;;21118:10;;41182:4;;41188:7;;41197:5;;41131:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41131:72:0;;;;;;;;-1:-1:-1;;41131:72:0;;;;;;;;;;;;:::i;:::-;;;41127:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41365:13:0;;41361:235;;41411:40;;-1:-1:-1;;;41411:40:0;;;;;;;;;;;41361:235;41554:6;41548:13;41539:6;41535:2;41531:15;41524:38;41127:480;-1:-1:-1;;;;;;41250:55:0;-1:-1:-1;;;41250:55:0;;-1:-1:-1;41127:480:0;40947:667;;;;;;:::o;49376:108::-;49436:13;49465;49458:20;;;;;:::i;18600:723::-;18656:13;18877:10;18873:53;;-1:-1:-1;;18904:10:0;;;;;;;;;;;;-1:-1:-1;;;18904:10:0;;;;;18600:723::o;18873:53::-;18951:5;18936:12;18992:78;18999:9;;18992:78;;19025:8;;;;:::i;:::-;;-1:-1:-1;19048:10:0;;-1:-1:-1;19056:2:0;19048:10;;:::i;:::-;;;18992:78;;;19080:19;19112:6;19102:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19102:17:0;;19080:39;;19130:154;19137:10;;19130:154;;19164:11;19174:1;19164:11;;:::i;:::-;;-1:-1:-1;19233:10:0;19241:2;19233:5;:10;:::i;:::-;19220:24;;:2;:24;:::i;:::-;19207:39;;19190:6;19197;19190:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19190:56:0;;;;;;;;-1:-1:-1;19261:11:0;19270:2;19261:11;;:::i;:::-;;;19130:154;;33310:163;33433:32;33439:2;33443:8;33453:5;33460:4;33871:20;33894:13;-1:-1:-1;;;;;33922:16:0;;33918:48;;33947:19;;-1:-1:-1;;;33947:19:0;;;;;;;;;;;33918:48;33981:13;33977:44;;34003:18;;-1:-1:-1;;;34003:18:0;;;;;;;;;;;33977:44;-1:-1:-1;;;;;34372:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;34431:49:0;;34372:44;;;;;;;;34431:49;;;;-1:-1:-1;;34372:44:0;;;;;;34431:49;;;;;;;;;;;;;;;;34497:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;34547:66:0;;;;-1:-1:-1;;;34597:15:0;34547:66;;;;;;;;;;34497:25;34694:23;;;34738:4;:23;;;;-1:-1:-1;;;;;;34746:13:0;;1528:19;:23;;34746:15;34734:641;;;34782:314;34813:38;;34838:12;;-1:-1:-1;;;;;34813:38:0;;;34830:1;;34813:38;;34830:1;;34813:38;34879:69;34918:1;34922:2;34926:14;;;;;;34942:5;34879:30;:69::i;:::-;34874:174;;34984:40;;-1:-1:-1;;;34984:40:0;;;;;;;;;;;34874:174;35091:3;35075:12;:19;;34782:314;;35177:12;35160:13;;:29;35156:43;;35191:8;;;35156:43;34734:641;;;35240:120;35271:40;;35296:14;;;;;-1:-1:-1;;;;;35271:40:0;;;35288:1;;35271:40;;35288:1;;35271:40;35355:3;35339:12;:19;;35240:120;;34734:641;-1:-1:-1;35389:13:0;:28;35439:60;32024:369;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:245::-;2793:6;2846:2;2834:9;2825:7;2821:23;2817:32;2814:52;;;2862:1;2859;2852:12;2814:52;2901:9;2888:23;2920:30;2944:5;2920:30;:::i;2985:249::-;3054:6;3107:2;3095:9;3086:7;3082:23;3078:32;3075:52;;;3123:1;3120;3113:12;3075:52;3155:9;3149:16;3174:30;3198:5;3174:30;:::i;3239:592::-;3310:6;3318;3371:2;3359:9;3350:7;3346:23;3342:32;3339:52;;;3387:1;3384;3377:12;3339:52;3427:9;3414:23;3456:18;3497:2;3489:6;3486:14;3483:34;;;3513:1;3510;3503:12;3483:34;3551:6;3540:9;3536:22;3526:32;;3596:7;3589:4;3585:2;3581:13;3577:27;3567:55;;3618:1;3615;3608:12;3567:55;3658:2;3645:16;3684:2;3676:6;3673:14;3670:34;;;3700:1;3697;3690:12;3670:34;3745:7;3740:2;3731:6;3727:2;3723:15;3719:24;3716:37;3713:57;;;3766:1;3763;3756:12;3713:57;3797:2;3789:11;;;;;3819:6;;-1:-1:-1;3239:592:1;;-1:-1:-1;;;;3239:592:1:o;3836:180::-;3895:6;3948:2;3936:9;3927:7;3923:23;3919:32;3916:52;;;3964:1;3961;3954:12;3916:52;-1:-1:-1;3987:23:1;;3836:180;-1:-1:-1;3836:180:1:o;4021:254::-;4089:6;4097;4150:2;4138:9;4129:7;4125:23;4121:32;4118:52;;;4166:1;4163;4156:12;4118:52;4202:9;4189:23;4179:33;;4231:38;4265:2;4254:9;4250:18;4231:38;:::i;4280:257::-;4321:3;4359:5;4353:12;4386:6;4381:3;4374:19;4402:63;4458:6;4451:4;4446:3;4442:14;4435:4;4428:5;4424:16;4402:63;:::i;:::-;4519:2;4498:15;-1:-1:-1;;4494:29:1;4485:39;;;;4526:4;4481:50;;4280:257;-1:-1:-1;;4280:257:1:o;4542:637::-;4822:3;4860:6;4854:13;4876:53;4922:6;4917:3;4910:4;4902:6;4898:17;4876:53;:::i;:::-;4992:13;;4951:16;;;;5014:57;4992:13;4951:16;5048:4;5036:17;;5014:57;:::i;:::-;-1:-1:-1;;;5093:20:1;;5122:22;;;5171:1;5160:13;;4542:637;-1:-1:-1;;;;4542:637:1:o;5602:488::-;-1:-1:-1;;;;;5871:15:1;;;5853:34;;5923:15;;5918:2;5903:18;;5896:43;5970:2;5955:18;;5948:34;;;6018:3;6013:2;5998:18;;5991:31;;;5796:4;;6039:45;;6064:19;;6056:6;6039:45;:::i;:::-;6031:53;5602:488;-1:-1:-1;;;;;;5602:488:1:o;6287:219::-;6436:2;6425:9;6418:21;6399:4;6456:44;6496:2;6485:9;6481:18;6473:6;6456:44;:::i;7679:412::-;7881:2;7863:21;;;7920:2;7900:18;;;7893:30;7959:34;7954:2;7939:18;;7932:62;-1:-1:-1;;;8025:2:1;8010:18;;8003:46;8081:3;8066:19;;7679:412::o;8452:356::-;8654:2;8636:21;;;8673:18;;;8666:30;8732:34;8727:2;8712:18;;8705:62;8799:2;8784:18;;8452:356::o;9764:128::-;9804:3;9835:1;9831:6;9828:1;9825:13;9822:39;;;9841:18;;:::i;:::-;-1:-1:-1;9877:9:1;;9764:128::o;9897:120::-;9937:1;9963;9953:35;;9968:18;;:::i;:::-;-1:-1:-1;10002:9:1;;9897:120::o;10022:168::-;10062:7;10128:1;10124;10120:6;10116:14;10113:1;10110:21;10105:1;10098:9;10091:17;10087:45;10084:71;;;10135:18;;:::i;:::-;-1:-1:-1;10175:9:1;;10022:168::o;10195:125::-;10235:4;10263:1;10260;10257:8;10254:34;;;10268:18;;:::i;:::-;-1:-1:-1;10305:9:1;;10195:125::o;10325:258::-;10397:1;10407:113;10421:6;10418:1;10415:13;10407:113;;;10497:11;;;10491:18;10478:11;;;10471:39;10443:2;10436:10;10407:113;;;10538:6;10535:1;10532:13;10529:48;;;-1:-1:-1;;10573:1:1;10555:16;;10548:27;10325:258::o;10588:380::-;10667:1;10663:12;;;;10710;;;10731:61;;10785:4;10777:6;10773:17;10763:27;;10731:61;10838:2;10830:6;10827:14;10807:18;10804:38;10801:161;;;10884:10;10879:3;10875:20;10872:1;10865:31;10919:4;10916:1;10909:15;10947:4;10944:1;10937:15;10801:161;;10588:380;;;:::o;10973:135::-;11012:3;-1:-1:-1;;11033:17:1;;11030:43;;;11053:18;;:::i;:::-;-1:-1:-1;11100:1:1;11089:13;;10973:135::o;11113:112::-;11145:1;11171;11161:35;;11176:18;;:::i;:::-;-1:-1:-1;11210:9:1;;11113:112::o;11230:127::-;11291:10;11286:3;11282:20;11279:1;11272:31;11322:4;11319:1;11312:15;11346:4;11343:1;11336:15;11362:127;11423:10;11418:3;11414:20;11411:1;11404:31;11454:4;11451:1;11444:15;11478:4;11475:1;11468:15;11494:127;11555:10;11550:3;11546:20;11543:1;11536:31;11586:4;11583:1;11576:15;11610:4;11607:1;11600:15;11626:127;11687:10;11682:3;11678:20;11675:1;11668:31;11718:4;11715:1;11708:15;11742:4;11739:1;11732:15;11758:131;-1:-1:-1;;;;;;11832:32:1;;11822:43;;11812:71;;11879:1;11876;11869:12

Swarm Source

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