ETH Price: $3,054.40 (+1.01%)
Gas: 2 Gwei

Token

Rekt Punks (REKT)
 

Overview

Max Total Supply

471 REKT

Holders

33

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
vluge.eth
Balance
2 REKT
0x63a00135ac2aa9168de542110c88d165deaef81d
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:
rektpunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

//            _    _                     _        
//           | |  | |                   | |       
//   _ __ ___| | _| |_ _ __  _   _ _ __ | | _____ 
//  | '__/ _ \ |/ / __| '_ \| | | | '_ \| |/ / __|
//  | | |  __/   <| |_| |_) | |_| | | | |   <\__ \
//  |_|  \___|_|\_\\__| .__/ \__,_|_| |_|_|\_\___/
//                    | |                         
//                    |_|                         
                                                                                        
// File: @openzeppelin/contracts/utils/Strings.sol
pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (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 `IERC721Receiver.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 (last updated v4.6.0) (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`.
     *
     * 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;

    /**
     * @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 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 the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


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

pragma solidity ^0.8.4;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: erc721a/contracts/ERC721A.sol


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

pragma solidity ^0.8.4;







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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr) if (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) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

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

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

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

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

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

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

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

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

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

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

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

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

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

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

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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

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

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

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

// File: rektpunks.sol

pragma solidity ^0.8.7;


contract rektpunks is ERC721A, Ownable {

    using Strings for uint256;
    string public rektURI = "https://rektpunk.xyz/metadata/";
    bool public saleActive = false;
    uint256 public totalRektPunks = 4200;
    mapping(address => uint256) public rektPunkMinters;

    constructor(string memory _name, string memory _symbol) ERC721A(_name, _symbol) {}

    function mintRektPunk(uint256 quantity) public {
        require(saleActive,"sale is not rekt yet");
        require(totalSupply() + quantity <= totalRektPunks,"no rektpunks left");
        require(quantity <= 21, "per limt is rekt!");
        require(rektPunkMinters[msg.sender] + quantity <=21, "your wallet limit rekt");

        rektPunkMinters[msg.sender] +=quantity;
        _safeMint(msg.sender, quantity);
    }

 	function communityGiveawayMint(address lords, uint256 quantity) public onlyOwner {
	    require(totalSupply() + quantity <= totalRektPunks);
        _safeMint(lords, quantity);
    }

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

    function flipSale() external onlyOwner {
        saleActive = !saleActive;
    }

    function setRektURI(string memory _rektURI) external onlyOwner {
        rektURI = _rektURI;
    }

    function withdraw() external payable onlyOwner {
        payable(owner()).transfer(address(this).balance);
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "requested token is not existed");
        return bytes(rektURI).length > 0 ? string(abi.encodePacked(rektURI, Strings.toString(tokenId), ".json")) : ""; 
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":[{"internalType":"address","name":"lords","type":"address"},{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"communityGiveawayMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintRektPunk","outputs":[],"stateMutability":"nonpayable","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":[{"internalType":"address","name":"","type":"address"}],"name":"rektPunkMinters","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rektURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_rektURI","type":"string"}],"name":"setRektURI","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":"totalRektPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"}]

60c0604052601e60808190527f68747470733a2f2f72656b7470756e6b2e78797a2f6d657461646174612f000060a09081526200004091600991906200011c565b50600a805460ff19169055611068600b553480156200005e57600080fd5b5060405162001e1338038062001e13833981016040819052620000819162000279565b8151829082906200009a9060029060208501906200011c565b508051620000b09060039060208401906200011c565b50506000805550620000c233620000ca565b505062000336565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200012a90620002e3565b90600052602060002090601f0160209004810192826200014e576000855562000199565b82601f106200016957805160ff191683800117855562000199565b8280016001018555821562000199579182015b82811115620001995782518255916020019190600101906200017c565b50620001a7929150620001ab565b5090565b5b80821115620001a75760008155600101620001ac565b600082601f830112620001d457600080fd5b81516001600160401b0380821115620001f157620001f162000320565b604051601f8301601f19908116603f011681019082821181831017156200021c576200021c62000320565b816040528381526020925086838588010111156200023957600080fd5b600091505b838210156200025d57858201830151818301840152908201906200023e565b838211156200026f5760008385830101525b9695505050505050565b600080604083850312156200028d57600080fd5b82516001600160401b0380821115620002a557600080fd5b620002b386838701620001c2565b93506020850151915080821115620002ca57600080fd5b50620002d985828601620001c2565b9150509250929050565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b611acd80620003466000396000f3fe6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c9fb992311610064578063c9fb992314610431578063e985e9c514610451578063edfab8501461049a578063f2fde38b146104ba57600080fd5b8063a22cb465146103d1578063b88d4fde146103f1578063c87b56dd1461041157600080fd5b806370a0823114610327578063710b3eb014610347578063715018a6146103745780637ba5e621146103895780638da5cb5b1461039e57806395d89b41146103bc57600080fd5b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146102c557806342842e0e146102cd5780636352211e146102ed57806368428a1b1461030d57600080fd5b806323b872dd1461026f5780632eab89a11461028f578063339cecee146102af57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b314610215578063145431df1461023757806318160ddd1461024c575b600080fd5b34801561019257600080fd5b506101a66101a136600461172c565b6104da565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061052c565b6040516101b29190611908565b3480156101e957600080fd5b506101fd6101f83660046117af565b6105be565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611702565b610602565b005b34801561024357600080fd5b506101d0610689565b34801561025857600080fd5b50600154600054035b6040519081526020016101b2565b34801561027b57600080fd5b5061023561028a36600461160e565b610717565b34801561029b57600080fd5b506102356102aa366004611702565b610722565b3480156102bb57600080fd5b50610261600b5481565b610235610789565b3480156102d957600080fd5b506102356102e836600461160e565b6107ef565b3480156102f957600080fd5b506101fd6103083660046117af565b61080a565b34801561031957600080fd5b50600a546101a69060ff1681565b34801561033357600080fd5b506102616103423660046115b9565b61081c565b34801561035357600080fd5b506102616103623660046115b9565b600c6020526000908152604090205481565b34801561038057600080fd5b5061023561086b565b34801561039557600080fd5b506102356108a1565b3480156103aa57600080fd5b506008546001600160a01b03166101fd565b3480156103c857600080fd5b506101d06108df565b3480156103dd57600080fd5b506102356103ec3660046116c6565b6108ee565b3480156103fd57600080fd5b5061023561040c36600461164a565b610984565b34801561041d57600080fd5b506101d061042c3660046117af565b6109ce565b34801561043d57600080fd5b5061023561044c3660046117af565b610a81565b34801561045d57600080fd5b506101a661046c3660046115db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104a657600080fd5b506102356104b5366004611766565b610c00565b3480156104c657600080fd5b506102356104d53660046115b9565b610c3d565b60006001600160e01b031982166380ac58cd60e01b148061050b57506001600160e01b03198216635b5e139f60e01b145b8061052657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461053b906119bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610567906119bf565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c982610cd5565b6105e6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060d8261080a565b9050806001600160a01b0316836001600160a01b031614156106425760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106795761065c813361046c565b610679576040516367d9dca160e11b815260040160405180910390fd5b610684838383610d00565b505050565b60098054610696906119bf565b80601f01602080910402602001604051908101604052809291908181526020018280546106c2906119bf565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b505050505081565b610684838383610d5c565b6008546001600160a01b031633146107555760405162461bcd60e51b815260040161074c9061191b565b60405180910390fd5b600b54816107666001546000540390565b6107709190611950565b111561077b57600080fd5b6107858282610f4b565b5050565b6008546001600160a01b031633146107b35760405162461bcd60e51b815260040161074c9061191b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107ec573d6000803e3d6000fd5b50565b61068483838360405180602001604052806000815250610984565b600061081582610f65565b5192915050565b60006001600160a01b038216610845576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161074c9061191b565b61089f6000611081565b565b6008546001600160a01b031633146108cb5760405162461bcd60e51b815260040161074c9061191b565b600a805460ff19811660ff90911615179055565b60606003805461053b906119bf565b6001600160a01b0382163314156109185760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61098f848484610d5c565b6001600160a01b0383163b156109c8576109ab848484846110d3565b6109c8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109d982610cd5565b610a255760405162461bcd60e51b815260206004820152601e60248201527f72657175657374656420746f6b656e206973206e6f7420657869737465640000604482015260640161074c565b600060098054610a34906119bf565b905011610a505760405180602001604052806000815250610526565b6009610a5b836111cb565b604051602001610a6c929190611810565b60405160208183030381529060405292915050565b600a5460ff16610aca5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481a5cc81b9bdd081c995add081e595d60621b604482015260640161074c565b600b5481610adb6001546000540390565b610ae59190611950565b1115610b275760405162461bcd60e51b81526020600482015260116024820152701b9bc81c995add1c1d5b9adcc81b19599d607a1b604482015260640161074c565b6015811115610b6c5760405162461bcd60e51b8152602060048201526011602482015270706572206c696d742069732072656b742160781b604482015260640161074c565b336000908152600c6020526040902054601590610b8a908390611950565b1115610bd15760405162461bcd60e51b81526020600482015260166024820152751e5bdd5c881dd85b1b195d081b1a5b5a5d081c995add60521b604482015260640161074c565b336000908152600c602052604081208054839290610bf0908490611950565b909155506107ec90503382610f4b565b6008546001600160a01b03163314610c2a5760405162461bcd60e51b815260040161074c9061191b565b805161078590600990602084019061148e565b6008546001600160a01b03163314610c675760405162461bcd60e51b815260040161074c9061191b565b6001600160a01b038116610ccc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074c565b6107ec81611081565b6000805482108015610526575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6782610f65565b9050836001600160a01b031681600001516001600160a01b031614610d9e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dbc5750610dbc853361046c565b80610dd7575033610dcc846105be565b6001600160a01b0316145b905080610df757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e1e57604051633a954ecd60e21b815260040160405180910390fd5b610e2a60008487610d00565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610f00576000548214610f00578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6107858282604051806020016040528060008152506112c9565b60408051606081018252600080825260208201819052918101919091528160005481101561106857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110665780516001600160a01b031615610ffc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611061579392505050565b610ffc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111089033908990889088906004016118cb565b602060405180830381600087803b15801561112257600080fd5b505af1925050508015611152575060408051601f3d908101601f1916820190925261114f91810190611749565b60015b6111ad573d808015611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b5080516111a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112195780611203816119fa565b91506112129050600a83611968565b91506111f3565b60008167ffffffffffffffff81111561123457611234611a6b565b6040519080825280601f01601f19166020018201604052801561125e576020820181803683370190505b5090505b84156111c35761127360018361197c565b9150611280600a86611a15565b61128b906030611950565b60f81b8183815181106112a0576112a0611a55565b60200101906001600160f81b031916908160001a9053506112c2600a86611968565b9450611262565b6000546001600160a01b0384166112f257604051622e076360e81b815260040160405180910390fd5b826113105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611439575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461140260008784806001019550876110d3565b61141f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113b757826000541461143457600080fd5b61147e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061143a575b5060009081556109c89085838684565b82805461149a906119bf565b90600052602060002090601f0160209004810192826114bc5760008555611502565b82601f106114d557805160ff1916838001178555611502565b82800160010185558215611502579182015b828111156115025782518255916020019190600101906114e7565b5061150e929150611512565b5090565b5b8082111561150e5760008155600101611513565b600067ffffffffffffffff8084111561154257611542611a6b565b604051601f8501601f19908116603f0116810190828211818310171561156a5761156a611a6b565b8160405280935085815286868601111561158357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115b457600080fd5b919050565b6000602082840312156115cb57600080fd5b6115d48261159d565b9392505050565b600080604083850312156115ee57600080fd5b6115f78361159d565b91506116056020840161159d565b90509250929050565b60008060006060848603121561162357600080fd5b61162c8461159d565b925061163a6020850161159d565b9150604084013590509250925092565b6000806000806080858703121561166057600080fd5b6116698561159d565b93506116776020860161159d565b925060408501359150606085013567ffffffffffffffff81111561169a57600080fd5b8501601f810187136116ab57600080fd5b6116ba87823560208401611527565b91505092959194509250565b600080604083850312156116d957600080fd5b6116e28361159d565b9150602083013580151581146116f757600080fd5b809150509250929050565b6000806040838503121561171557600080fd5b61171e8361159d565b946020939093013593505050565b60006020828403121561173e57600080fd5b81356115d481611a81565b60006020828403121561175b57600080fd5b81516115d481611a81565b60006020828403121561177857600080fd5b813567ffffffffffffffff81111561178f57600080fd5b8201601f810184136117a057600080fd5b6111c384823560208401611527565b6000602082840312156117c157600080fd5b5035919050565b600081518084526117e0816020860160208601611993565b601f01601f19169290920160200192915050565b60008151611806818560208601611993565b9290920192915050565b600080845481600182811c91508083168061182c57607f831692505b602080841082141561184c57634e487b7160e01b86526022600452602486fd5b81801561186057600181146118715761189e565b60ff1986168952848901965061189e565b60008b81526020902060005b868110156118965781548b82015290850190830161187d565b505084890196505b5050505050506118c26118b182866117f4565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118fe908301846117c8565b9695505050505050565b6020815260006115d460208301846117c8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561196357611963611a29565b500190565b60008261197757611977611a3f565b500490565b60008282101561198e5761198e611a29565b500390565b60005b838110156119ae578181015183820152602001611996565b838111156109c85750506000910152565b600181811c908216806119d357607f821691505b602082108114156119f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a0e57611a0e611a29565b5060010190565b600082611a2457611a24611a3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107ec57600080fdfea2646970667358221220ac9cb303fa6ebc3bb5c4c51441857472e4b4c644e5e81d4a370f61899a93747664736f6c6343000807003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a52656b742050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452454b5400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101815760003560e01c806370a08231116100d1578063a22cb4651161008a578063c9fb992311610064578063c9fb992314610431578063e985e9c514610451578063edfab8501461049a578063f2fde38b146104ba57600080fd5b8063a22cb465146103d1578063b88d4fde146103f1578063c87b56dd1461041157600080fd5b806370a0823114610327578063710b3eb014610347578063715018a6146103745780637ba5e621146103895780638da5cb5b1461039e57806395d89b41146103bc57600080fd5b806323b872dd1161013e5780633ccfd60b116101185780633ccfd60b146102c557806342842e0e146102cd5780636352211e146102ed57806368428a1b1461030d57600080fd5b806323b872dd1461026f5780632eab89a11461028f578063339cecee146102af57600080fd5b806301ffc9a71461018657806306fdde03146101bb578063081812fc146101dd578063095ea7b314610215578063145431df1461023757806318160ddd1461024c575b600080fd5b34801561019257600080fd5b506101a66101a136600461172c565b6104da565b60405190151581526020015b60405180910390f35b3480156101c757600080fd5b506101d061052c565b6040516101b29190611908565b3480156101e957600080fd5b506101fd6101f83660046117af565b6105be565b6040516001600160a01b0390911681526020016101b2565b34801561022157600080fd5b50610235610230366004611702565b610602565b005b34801561024357600080fd5b506101d0610689565b34801561025857600080fd5b50600154600054035b6040519081526020016101b2565b34801561027b57600080fd5b5061023561028a36600461160e565b610717565b34801561029b57600080fd5b506102356102aa366004611702565b610722565b3480156102bb57600080fd5b50610261600b5481565b610235610789565b3480156102d957600080fd5b506102356102e836600461160e565b6107ef565b3480156102f957600080fd5b506101fd6103083660046117af565b61080a565b34801561031957600080fd5b50600a546101a69060ff1681565b34801561033357600080fd5b506102616103423660046115b9565b61081c565b34801561035357600080fd5b506102616103623660046115b9565b600c6020526000908152604090205481565b34801561038057600080fd5b5061023561086b565b34801561039557600080fd5b506102356108a1565b3480156103aa57600080fd5b506008546001600160a01b03166101fd565b3480156103c857600080fd5b506101d06108df565b3480156103dd57600080fd5b506102356103ec3660046116c6565b6108ee565b3480156103fd57600080fd5b5061023561040c36600461164a565b610984565b34801561041d57600080fd5b506101d061042c3660046117af565b6109ce565b34801561043d57600080fd5b5061023561044c3660046117af565b610a81565b34801561045d57600080fd5b506101a661046c3660046115db565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156104a657600080fd5b506102356104b5366004611766565b610c00565b3480156104c657600080fd5b506102356104d53660046115b9565b610c3d565b60006001600160e01b031982166380ac58cd60e01b148061050b57506001600160e01b03198216635b5e139f60e01b145b8061052657506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461053b906119bf565b80601f0160208091040260200160405190810160405280929190818152602001828054610567906119bf565b80156105b45780601f10610589576101008083540402835291602001916105b4565b820191906000526020600020905b81548152906001019060200180831161059757829003601f168201915b5050505050905090565b60006105c982610cd5565b6105e6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061060d8261080a565b9050806001600160a01b0316836001600160a01b031614156106425760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146106795761065c813361046c565b610679576040516367d9dca160e11b815260040160405180910390fd5b610684838383610d00565b505050565b60098054610696906119bf565b80601f01602080910402602001604051908101604052809291908181526020018280546106c2906119bf565b801561070f5780601f106106e45761010080835404028352916020019161070f565b820191906000526020600020905b8154815290600101906020018083116106f257829003601f168201915b505050505081565b610684838383610d5c565b6008546001600160a01b031633146107555760405162461bcd60e51b815260040161074c9061191b565b60405180910390fd5b600b54816107666001546000540390565b6107709190611950565b111561077b57600080fd5b6107858282610f4b565b5050565b6008546001600160a01b031633146107b35760405162461bcd60e51b815260040161074c9061191b565b6008546040516001600160a01b03909116904780156108fc02916000818181858888f193505050501580156107ec573d6000803e3d6000fd5b50565b61068483838360405180602001604052806000815250610984565b600061081582610f65565b5192915050565b60006001600160a01b038216610845576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6008546001600160a01b031633146108955760405162461bcd60e51b815260040161074c9061191b565b61089f6000611081565b565b6008546001600160a01b031633146108cb5760405162461bcd60e51b815260040161074c9061191b565b600a805460ff19811660ff90911615179055565b60606003805461053b906119bf565b6001600160a01b0382163314156109185760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b61098f848484610d5c565b6001600160a01b0383163b156109c8576109ab848484846110d3565b6109c8576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b60606109d982610cd5565b610a255760405162461bcd60e51b815260206004820152601e60248201527f72657175657374656420746f6b656e206973206e6f7420657869737465640000604482015260640161074c565b600060098054610a34906119bf565b905011610a505760405180602001604052806000815250610526565b6009610a5b836111cb565b604051602001610a6c929190611810565b60405160208183030381529060405292915050565b600a5460ff16610aca5760405162461bcd60e51b81526020600482015260146024820152731cd85b19481a5cc81b9bdd081c995add081e595d60621b604482015260640161074c565b600b5481610adb6001546000540390565b610ae59190611950565b1115610b275760405162461bcd60e51b81526020600482015260116024820152701b9bc81c995add1c1d5b9adcc81b19599d607a1b604482015260640161074c565b6015811115610b6c5760405162461bcd60e51b8152602060048201526011602482015270706572206c696d742069732072656b742160781b604482015260640161074c565b336000908152600c6020526040902054601590610b8a908390611950565b1115610bd15760405162461bcd60e51b81526020600482015260166024820152751e5bdd5c881dd85b1b195d081b1a5b5a5d081c995add60521b604482015260640161074c565b336000908152600c602052604081208054839290610bf0908490611950565b909155506107ec90503382610f4b565b6008546001600160a01b03163314610c2a5760405162461bcd60e51b815260040161074c9061191b565b805161078590600990602084019061148e565b6008546001600160a01b03163314610c675760405162461bcd60e51b815260040161074c9061191b565b6001600160a01b038116610ccc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161074c565b6107ec81611081565b6000805482108015610526575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610d6782610f65565b9050836001600160a01b031681600001516001600160a01b031614610d9e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480610dbc5750610dbc853361046c565b80610dd7575033610dcc846105be565b6001600160a01b0316145b905080610df757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416610e1e57604051633a954ecd60e21b815260040160405180910390fd5b610e2a60008487610d00565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116610f00576000548214610f00578054602086015167ffffffffffffffff16600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b6107858282604051806020016040528060008152506112c9565b60408051606081018252600080825260208201819052918101919091528160005481101561106857600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff161515918101829052906110665780516001600160a01b031615610ffc579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215611061579392505050565b610ffc565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906111089033908990889088906004016118cb565b602060405180830381600087803b15801561112257600080fd5b505af1925050508015611152575060408051601f3d908101601f1916820190925261114f91810190611749565b60015b6111ad573d808015611180576040519150601f19603f3d011682016040523d82523d6000602084013e611185565b606091505b5080516111a5576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816111ef5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156112195780611203816119fa565b91506112129050600a83611968565b91506111f3565b60008167ffffffffffffffff81111561123457611234611a6b565b6040519080825280601f01601f19166020018201604052801561125e576020820181803683370190505b5090505b84156111c35761127360018361197c565b9150611280600a86611a15565b61128b906030611950565b60f81b8183815181106112a0576112a0611a55565b60200101906001600160f81b031916908160001a9053506112c2600a86611968565b9450611262565b6000546001600160a01b0384166112f257604051622e076360e81b815260040160405180910390fd5b826113105760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15611439575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461140260008784806001019550876110d3565b61141f576040516368d2bf6b60e11b815260040160405180910390fd5b8082106113b757826000541461143457600080fd5b61147e565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a480821061143a575b5060009081556109c89085838684565b82805461149a906119bf565b90600052602060002090601f0160209004810192826114bc5760008555611502565b82601f106114d557805160ff1916838001178555611502565b82800160010185558215611502579182015b828111156115025782518255916020019190600101906114e7565b5061150e929150611512565b5090565b5b8082111561150e5760008155600101611513565b600067ffffffffffffffff8084111561154257611542611a6b565b604051601f8501601f19908116603f0116810190828211818310171561156a5761156a611a6b565b8160405280935085815286868601111561158357600080fd5b858560208301376000602087830101525050509392505050565b80356001600160a01b03811681146115b457600080fd5b919050565b6000602082840312156115cb57600080fd5b6115d48261159d565b9392505050565b600080604083850312156115ee57600080fd5b6115f78361159d565b91506116056020840161159d565b90509250929050565b60008060006060848603121561162357600080fd5b61162c8461159d565b925061163a6020850161159d565b9150604084013590509250925092565b6000806000806080858703121561166057600080fd5b6116698561159d565b93506116776020860161159d565b925060408501359150606085013567ffffffffffffffff81111561169a57600080fd5b8501601f810187136116ab57600080fd5b6116ba87823560208401611527565b91505092959194509250565b600080604083850312156116d957600080fd5b6116e28361159d565b9150602083013580151581146116f757600080fd5b809150509250929050565b6000806040838503121561171557600080fd5b61171e8361159d565b946020939093013593505050565b60006020828403121561173e57600080fd5b81356115d481611a81565b60006020828403121561175b57600080fd5b81516115d481611a81565b60006020828403121561177857600080fd5b813567ffffffffffffffff81111561178f57600080fd5b8201601f810184136117a057600080fd5b6111c384823560208401611527565b6000602082840312156117c157600080fd5b5035919050565b600081518084526117e0816020860160208601611993565b601f01601f19169290920160200192915050565b60008151611806818560208601611993565b9290920192915050565b600080845481600182811c91508083168061182c57607f831692505b602080841082141561184c57634e487b7160e01b86526022600452602486fd5b81801561186057600181146118715761189e565b60ff1986168952848901965061189e565b60008b81526020902060005b868110156118965781548b82015290850190830161187d565b505084890196505b5050505050506118c26118b182866117f4565b64173539b7b760d91b815260050190565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906118fe908301846117c8565b9695505050505050565b6020815260006115d460208301846117c8565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6000821982111561196357611963611a29565b500190565b60008261197757611977611a3f565b500490565b60008282101561198e5761198e611a29565b500390565b60005b838110156119ae578181015183820152602001611996565b838111156109c85750506000910152565b600181811c908216806119d357607f821691505b602082108114156119f457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415611a0e57611a0e611a29565b5060010190565b600082611a2457611a24611a3f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146107ec57600080fdfea2646970667358221220ac9cb303fa6ebc3bb5c4c51441857472e4b4c644e5e81d4a370f61899a93747664736f6c63430008070033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000a52656b742050756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000452454b5400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _name (string): Rekt Punks
Arg [1] : _symbol (string): REKT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [3] : 52656b742050756e6b7300000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [5] : 52454b5400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

47895:1726:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;29026:305;;;;;;;;;;-1:-1:-1;29026:305:0;;;;;:::i;:::-;;:::i;:::-;;;6785:14:1;;6778:22;6760:41;;6748:2;6733:18;29026:305:0;;;;;;;;32141:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;33645:204::-;;;;;;;;;;-1:-1:-1;33645:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6083:32:1;;;6065:51;;6053:2;6038:18;33645:204:0;5919:203:1;33207:372:0;;;;;;;;;;-1:-1:-1;33207:372:0;;;;;:::i;:::-;;:::i;:::-;;47975:56;;;;;;;;;;;;;:::i;28266:312::-;;;;;;;;;;-1:-1:-1;28529:12:0;;28319:7;28513:13;:28;28266:312;;;9701:25:1;;;9689:2;9674:18;28266:312:0;9555:177:1;34510:170:0;;;;;;;;;;-1:-1:-1;34510:170:0;;;;;:::i;:::-;;:::i;48700:185::-;;;;;;;;;;-1:-1:-1;48700:185:0;;;;;:::i;:::-;;:::i;48075:36::-;;;;;;;;;;;;;;;;49207:114;;;:::i;34751:185::-;;;;;;;;;;-1:-1:-1;34751:185:0;;;;;:::i;:::-;;:::i;31949:125::-;;;;;;;;;;-1:-1:-1;31949:125:0;;;;;:::i;:::-;;:::i;48038:30::-;;;;;;;;;;-1:-1:-1;48038:30:0;;;;;;;;29395:206;;;;;;;;;;-1:-1:-1;29395:206:0;;;;;:::i;:::-;;:::i;48118:50::-;;;;;;;;;;-1:-1:-1;48118:50:0;;;;;:::i;:::-;;;;;;;;;;;;;;5211:103;;;;;;;;;;;;;:::i;49009:82::-;;;;;;;;;;;;;:::i;4560:87::-;;;;;;;;;;-1:-1:-1;4633:6:0;;-1:-1:-1;;;;;4633:6:0;4560:87;;32310:104;;;;;;;;;;;;;:::i;33921:287::-;;;;;;;;;;-1:-1:-1;33921:287:0;;;;;:::i;:::-;;:::i;35007:370::-;;;;;;;;;;-1:-1:-1;35007:370:0;;;;;:::i;:::-;;:::i;49329:287::-;;;;;;;;;;-1:-1:-1;49329:287:0;;;;;:::i;:::-;;:::i;48267:427::-;;;;;;;;;;-1:-1:-1;48267:427:0;;;;;:::i;:::-;;:::i;34279:164::-;;;;;;;;;;-1:-1:-1;34279:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;34400:25:0;;;34376:4;34400:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;34279:164;49099:100;;;;;;;;;;-1:-1:-1;49099:100:0;;;;;:::i;:::-;;:::i;5469:201::-;;;;;;;;;;-1:-1:-1;5469:201:0;;;;;:::i;:::-;;:::i;29026:305::-;29128:4;-1:-1:-1;;;;;;29165:40:0;;-1:-1:-1;;;29165:40:0;;:105;;-1:-1:-1;;;;;;;29222:48:0;;-1:-1:-1;;;29222:48:0;29165:105;:158;;;-1:-1:-1;;;;;;;;;;17476:40:0;;;29287:36;29145:178;29026:305;-1:-1:-1;;29026:305:0:o;32141:100::-;32195:13;32228:5;32221:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32141:100;:::o;33645:204::-;33713:7;33738:16;33746:7;33738;:16::i;:::-;33733:64;;33763:34;;-1:-1:-1;;;33763:34:0;;;;;;;;;;;33733:64;-1:-1:-1;33817:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;33817:24:0;;33645:204::o;33207:372::-;33280:13;33296:24;33312:7;33296:15;:24::i;:::-;33280:40;;33341:5;-1:-1:-1;;;;;33335:11:0;:2;-1:-1:-1;;;;;33335:11:0;;33331:48;;;33355:24;;-1:-1:-1;;;33355:24:0;;;;;;;;;;;33331:48;3364:10;-1:-1:-1;;;;;33396:21:0;;;33392:139;;33423:37;33440:5;3364:10;34279:164;:::i;33423:37::-;33419:112;;33484:35;;-1:-1:-1;;;33484:35:0;;;;;;;;;;;33419:112;33543:28;33552:2;33556:7;33565:5;33543:8;:28::i;:::-;33269:310;33207:372;;:::o;47975:56::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34510:170::-;34644:28;34654:4;34660:2;34664:7;34644:9;:28::i;48700:185::-;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;;;;;;;;;48825:14:::1;;48813:8;48797:13;28529:12:::0;;28319:7;28513:13;:28;;28266:312;48797:13:::1;:24;;;;:::i;:::-;:42;;48789:51;;;::::0;::::1;;48851:26;48861:5;48868:8;48851:9;:26::i;:::-;48700:185:::0;;:::o;49207:114::-;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;4633:6;;49265:48:::1;::::0;-1:-1:-1;;;;;4633:6:0;;;;49291:21:::1;49265:48:::0;::::1;;;::::0;::::1;::::0;;;49291:21;4633:6;49265:48;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;49207:114::o:0;34751:185::-;34889:39;34906:4;34912:2;34916:7;34889:39;;;;;;;;;;;;:16;:39::i;31949:125::-;32013:7;32040:21;32053:7;32040:12;:21::i;:::-;:26;;31949:125;-1:-1:-1;;31949:125:0:o;29395:206::-;29459:7;-1:-1:-1;;;;;29483:19:0;;29479:60;;29511:28;;-1:-1:-1;;;29511:28:0;;;;;;;;;;;29479:60;-1:-1:-1;;;;;;29565:19:0;;;;;:12;:19;;;;;:27;;;;29395:206::o;5211:103::-;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;5276:30:::1;5303:1;5276:18;:30::i;:::-;5211:103::o:0;49009:82::-;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;49073:10:::1;::::0;;-1:-1:-1;;49059:24:0;::::1;49073:10;::::0;;::::1;49072:11;49059:24;::::0;;49009:82::o;32310:104::-;32366:13;32399:7;32392:14;;;;;:::i;33921:287::-;-1:-1:-1;;;;;34020:24:0;;3364:10;34020:24;34016:54;;;34053:17;;-1:-1:-1;;;34053:17:0;;;;;;;;;;;34016:54;3364:10;34083:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;34083:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;34083:53:0;;;;;;;;;;34152:48;;6760:41:1;;;34083:42:0;;3364:10;34152:48;;6733:18:1;34152:48:0;;;;;;;33921:287;;:::o;35007:370::-;35174:28;35184:4;35190:2;35194:7;35174:9;:28::i;:::-;-1:-1:-1;;;;;35217:13:0;;7556:19;:23;35213:157;;35238:56;35269:4;35275:2;35279:7;35288:5;35238:30;:56::i;:::-;35234:136;;35318:40;;-1:-1:-1;;;35318:40:0;;;;;;;;;;;35234:136;35007:370;;;;:::o;49329:287::-;49402:13;49436:16;49444:7;49436;:16::i;:::-;49428:59;;;;-1:-1:-1;;;49428:59:0;;9398:2:1;49428:59:0;;;9380:21:1;9437:2;9417:18;;;9410:30;9476:32;9456:18;;;9449:60;9526:18;;49428:59:0;9196:354:1;49428:59:0;49529:1;49511:7;49505:21;;;;;:::i;:::-;;;:25;:102;;;;;;;;;;;;;;;;;49557:7;49566:25;49583:7;49566:16;:25::i;:::-;49540:61;;;;;;;;;:::i;:::-;;;;;;;;;;;;;49498:109;49329:287;-1:-1:-1;;49329:287:0:o;48267:427::-;48333:10;;;;48325:42;;;;-1:-1:-1;;;48325:42:0;;7645:2:1;48325:42:0;;;7627:21:1;7684:2;7664:18;;;7657:30;-1:-1:-1;;;7703:18:1;;;7696:50;7763:18;;48325:42:0;7443:344:1;48325:42:0;48414:14;;48402:8;48386:13;28529:12;;28319:7;28513:13;:28;;28266:312;48386:13;:24;;;;:::i;:::-;:42;;48378:71;;;;-1:-1:-1;;;48378:71:0;;8340:2:1;48378:71:0;;;8322:21:1;8379:2;8359:18;;;8352:30;-1:-1:-1;;;8398:18:1;;;8391:47;8455:18;;48378:71:0;8138:341:1;48378:71:0;48480:2;48468:8;:14;;48460:44;;;;-1:-1:-1;;;48460:44:0;;7994:2:1;48460:44:0;;;7976:21:1;8033:2;8013:18;;;8006:30;-1:-1:-1;;;8052:18:1;;;8045:47;8109:18;;48460:44:0;7792:341:1;48460:44:0;48539:10;48523:27;;;;:15;:27;;;;;;48564:2;;48523:38;;48553:8;;48523:38;:::i;:::-;:43;;48515:78;;;;-1:-1:-1;;;48515:78:0;;9047:2:1;48515:78:0;;;9029:21:1;9086:2;9066:18;;;9059:30;-1:-1:-1;;;9105:18:1;;;9098:52;9167:18;;48515:78:0;8845:346:1;48515:78:0;48622:10;48606:27;;;;:15;:27;;;;;:38;;48636:8;;48606:27;:38;;48636:8;;48606:38;:::i;:::-;;;;-1:-1:-1;48655:31:0;;-1:-1:-1;48665:10:0;48677:8;48655:9;:31::i;49099:100::-;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;49173:18;;::::1;::::0;:7:::1;::::0;:18:::1;::::0;::::1;::::0;::::1;:::i;5469:201::-:0;4633:6;;-1:-1:-1;;;;;4633:6:0;3364:10;4780:23;4772:68;;;;-1:-1:-1;;;4772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5558:22:0;::::1;5550:73;;;::::0;-1:-1:-1;;;5550:73:0;;7238:2:1;5550:73:0::1;::::0;::::1;7220:21:1::0;7277:2;7257:18;;;7250:30;7316:34;7296:18;;;7289:62;-1:-1:-1;;;7367:18:1;;;7360:36;7413:19;;5550:73:0::1;7036:402:1::0;5550:73:0::1;5634:28;5653:8;5634:18;:28::i;35632:174::-:0;35689:4;35753:13;;35743:7;:23;35713:85;;;;-1:-1:-1;;35771:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;35771:27:0;;;;35770:28;;35632:174::o;44854:196::-;44969:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;44969:29:0;-1:-1:-1;;;;;44969:29:0;;;;;;;;;45014:28;;44969:24;;45014:28;;;;;;;44854:196;;;:::o;39802:2130::-;39917:35;39955:21;39968:7;39955:12;:21::i;:::-;39917:59;;40015:4;-1:-1:-1;;;;;39993:26:0;:13;:18;;;-1:-1:-1;;;;;39993:26:0;;39989:67;;40028:28;;-1:-1:-1;;;40028:28:0;;;;;;;;;;;39989:67;40069:22;3364:10;-1:-1:-1;;;;;40095:20:0;;;;:73;;-1:-1:-1;40132:36:0;40149:4;3364:10;34279:164;:::i;40132:36::-;40095:126;;;-1:-1:-1;3364:10:0;40185:20;40197:7;40185:11;:20::i;:::-;-1:-1:-1;;;;;40185:36:0;;40095:126;40069:153;;40240:17;40235:66;;40266:35;;-1:-1:-1;;;40266:35:0;;;;;;;;;;;40235:66;-1:-1:-1;;;;;40316:16:0;;40312:52;;40341:23;;-1:-1:-1;;;40341:23:0;;;;;;;;;;;40312:52;40485:35;40502:1;40506:7;40515:4;40485:8;:35::i;:::-;-1:-1:-1;;;;;40816:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;40816:31:0;;;;;;;-1:-1:-1;;40816:31:0;;;;;;;40862:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;40862:29:0;;;;;;;;;;;40942:20;;;:11;:20;;;;;;40977:18;;-1:-1:-1;;;;;;41010:49:0;;;;-1:-1:-1;;;41043:15:0;41010:49;;;;;;;;;;41333:11;;41393:24;;;;;41436:13;;40942:20;;41393:24;;41436:13;41432:384;;41646:13;;41631:11;:28;41627:174;;41684:20;;41753:28;;;;41727:54;;-1:-1:-1;;;41727:54:0;-1:-1:-1;;;;;;41727:54:0;;;-1:-1:-1;;;;;41684:20:0;;41727:54;;;;41627:174;40791:1036;;;41863:7;41859:2;-1:-1:-1;;;;;41844:27:0;41853:4;-1:-1:-1;;;;;41844:27:0;;;;;;;;;;;39906:2026;;39802:2130;;;:::o;35890:104::-;35959:27;35969:2;35973:8;35959:27;;;;;;;;;;;;:9;:27::i;30776:1111::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;30887:7:0;30972:13;;30965:4;:20;30961:859;;;31006:31;31040:17;;;:11;:17;;;;;;;;;31006:51;;;;;;;;;-1:-1:-1;;;;;31006:51:0;;;;-1:-1:-1;;;31006:51:0;;;;;;;;;;;-1:-1:-1;;;31006:51:0;;;;;;;;;;;;;;31076:729;;31126:14;;-1:-1:-1;;;;;31126:28:0;;31122:101;;31190:9;30776:1111;-1:-1:-1;;;30776:1111:0:o;31122:101::-;-1:-1:-1;;;31565:6:0;31610:17;;;;:11;:17;;;;;;;;;31598:29;;;;;;;;;-1:-1:-1;;;;;31598:29:0;;;;;-1:-1:-1;;;31598:29:0;;;;;;;;;;;-1:-1:-1;;;31598:29:0;;;;;;;;;;;;;31658:28;31654:109;;31726:9;30776:1111;-1:-1:-1;;;30776:1111:0:o;31654:109::-;31525:261;;;30987:833;30961:859;31848:31;;-1:-1:-1;;;31848:31:0;;;;;;;;;;;5830:191;5923:6;;;-1:-1:-1;;;;;5940:17:0;;;-1:-1:-1;;;;;;5940:17:0;;;;;;;5973:40;;5923:6;;;5940:17;5923:6;;5973:40;;5904:16;;5973:40;5893:128;5830:191;:::o;45542:667::-;45726:72;;-1:-1:-1;;;45726:72:0;;45705:4;;-1:-1:-1;;;;;45726:36:0;;;;;:72;;3364:10;;45777:4;;45783:7;;45792:5;;45726:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45726:72:0;;;;;;;;-1:-1:-1;;45726:72:0;;;;;;;;;;;;:::i;:::-;;;45722:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45960:13:0;;45956:235;;46006:40;;-1:-1:-1;;;46006:40:0;;;;;;;;;;;45956:235;46149:6;46143:13;46134:6;46130:2;46126:15;46119:38;45722:480;-1:-1:-1;;;;;;45845:55:0;-1:-1:-1;;;45845:55:0;;-1:-1:-1;45722:480:0;45542:667;;;;;;:::o;846:723::-;902:13;1123:10;1119:53;;-1:-1:-1;;1150:10:0;;;;;;;;;;;;-1:-1:-1;;;1150:10:0;;;;;846:723::o;1119:53::-;1197:5;1182:12;1238:78;1245:9;;1238:78;;1271:8;;;;:::i;:::-;;-1:-1:-1;1294:10:0;;-1:-1:-1;1302:2:0;1294:10;;:::i;:::-;;;1238:78;;;1326:19;1358:6;1348:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1348:17:0;;1326:39;;1376:154;1383:10;;1376:154;;1410:11;1420:1;1410:11;;:::i;:::-;;-1:-1:-1;1479:10:0;1487:2;1479:5;:10;:::i;:::-;1466:24;;:2;:24;:::i;:::-;1453:39;;1436:6;1443;1436:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;1436:56:0;;;;;;;;-1:-1:-1;1507:11:0;1516:2;1507:11;;:::i;:::-;;;1376:154;;36367:1749;36490:20;36513:13;-1:-1:-1;;;;;36541:16:0;;36537:48;;36566:19;;-1:-1:-1;;;36566:19:0;;;;;;;;;;;36537:48;36600:13;36596:44;;36622:18;;-1:-1:-1;;;36622:18:0;;;;;;;;;;;36596:44;-1:-1:-1;;;;;36991:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;37050:49:0;;36991:44;;;;;;;;37050:49;;;;-1:-1:-1;;36991:44:0;;;;;;37050:49;;;;;;;;;;;;;;;;37116:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;37166:66:0;;;-1:-1:-1;;;37216:15:0;37166:66;;;;;;;;;;;;;37116:25;;37313:23;;;;7556:19;:23;37353:631;;37393:313;37424:38;;37449:12;;-1:-1:-1;;;;;37424:38:0;;;37441:1;;37424:38;;37441:1;;37424:38;37490:69;37529:1;37533:2;37537:14;;;;;;37553:5;37490:30;:69::i;:::-;37485:174;;37595:40;;-1:-1:-1;;;37595:40:0;;;;;;;;;;;37485:174;37701:3;37686:12;:18;37393:313;;37787:12;37770:13;;:29;37766:43;;37801:8;;;37766:43;37353:631;;;37850:119;37881:40;;37906:14;;;;;-1:-1:-1;;;;;37881:40:0;;;37898:1;;37881:40;;37898:1;;37881:40;37964:3;37949:12;:18;37850:119;;37353:631;-1:-1:-1;37998:13:0;:28;;;38048:60;;38081:2;38085:12;38099:8;38048:60;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:173::-;718:20;;-1:-1:-1;;;;;767:31:1;;757:42;;747:70;;813:1;810;803:12;747:70;650:173;;;:::o;828:186::-;887:6;940:2;928:9;919:7;915:23;911:32;908:52;;;956:1;953;946:12;908:52;979:29;998:9;979:29;:::i;:::-;969:39;828:186;-1:-1:-1;;;828:186:1:o;1019:260::-;1087:6;1095;1148:2;1136:9;1127:7;1123:23;1119:32;1116:52;;;1164:1;1161;1154:12;1116:52;1187:29;1206:9;1187:29;:::i;:::-;1177:39;;1235:38;1269:2;1258:9;1254:18;1235:38;:::i;:::-;1225:48;;1019:260;;;;;:::o;1284:328::-;1361:6;1369;1377;1430:2;1418:9;1409:7;1405:23;1401:32;1398:52;;;1446:1;1443;1436:12;1398:52;1469:29;1488:9;1469:29;:::i;:::-;1459:39;;1517:38;1551:2;1540:9;1536:18;1517:38;:::i;:::-;1507:48;;1602:2;1591:9;1587:18;1574:32;1564:42;;1284:328;;;;;:::o;1617:666::-;1712:6;1720;1728;1736;1789:3;1777:9;1768:7;1764:23;1760:33;1757:53;;;1806:1;1803;1796:12;1757:53;1829:29;1848:9;1829:29;:::i;:::-;1819:39;;1877:38;1911:2;1900:9;1896:18;1877:38;:::i;:::-;1867:48;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;2044:18;2036:6;2033:30;2030:50;;;2076:1;2073;2066:12;2030:50;2099:22;;2152:4;2144:13;;2140:27;-1:-1:-1;2130:55:1;;2181:1;2178;2171:12;2130:55;2204:73;2269:7;2264:2;2251:16;2246:2;2242;2238:11;2204:73;:::i;:::-;2194:83;;;1617:666;;;;;;;:::o;2288:347::-;2353:6;2361;2414:2;2402:9;2393:7;2389:23;2385:32;2382:52;;;2430:1;2427;2420:12;2382:52;2453:29;2472:9;2453:29;:::i;:::-;2443:39;;2532:2;2521:9;2517:18;2504:32;2579:5;2572:13;2565:21;2558:5;2555:32;2545:60;;2601:1;2598;2591:12;2545:60;2624:5;2614:15;;;2288:347;;;;;:::o;2640:254::-;2708:6;2716;2769:2;2757:9;2748:7;2744:23;2740:32;2737:52;;;2785:1;2782;2775:12;2737:52;2808:29;2827:9;2808:29;:::i;:::-;2798:39;2884:2;2869:18;;;;2856:32;;-1:-1:-1;;;2640:254:1:o;2899:245::-;2957:6;3010:2;2998:9;2989:7;2985:23;2981:32;2978:52;;;3026:1;3023;3016:12;2978:52;3065:9;3052:23;3084:30;3108:5;3084:30;:::i;3149:249::-;3218:6;3271:2;3259:9;3250:7;3246:23;3242:32;3239:52;;;3287:1;3284;3277:12;3239:52;3319:9;3313:16;3338:30;3362:5;3338:30;:::i;3403:450::-;3472:6;3525:2;3513:9;3504:7;3500:23;3496:32;3493:52;;;3541:1;3538;3531:12;3493:52;3581:9;3568:23;3614:18;3606:6;3603:30;3600:50;;;3646:1;3643;3636:12;3600:50;3669:22;;3722:4;3714:13;;3710:27;-1:-1:-1;3700:55:1;;3751:1;3748;3741:12;3700:55;3774:73;3839:7;3834:2;3821:16;3816:2;3812;3808:11;3774:73;:::i;3858:180::-;3917:6;3970:2;3958:9;3949:7;3945:23;3941:32;3938:52;;;3986:1;3983;3976:12;3938:52;-1:-1:-1;4009:23:1;;3858:180;-1:-1:-1;3858:180:1:o;4043:257::-;4084:3;4122:5;4116:12;4149:6;4144:3;4137:19;4165:63;4221:6;4214:4;4209:3;4205:14;4198:4;4191:5;4187:16;4165:63;:::i;:::-;4282:2;4261:15;-1:-1:-1;;4257:29:1;4248:39;;;;4289:4;4244:50;;4043:257;-1:-1:-1;;4043:257:1:o;4305:185::-;4347:3;4385:5;4379:12;4400:52;4445:6;4440:3;4433:4;4426:5;4422:16;4400:52;:::i;:::-;4468:16;;;;;4305:185;-1:-1:-1;;4305:185:1:o;4613:1301::-;4890:3;4919:1;4952:6;4946:13;4982:3;5004:1;5032:9;5028:2;5024:18;5014:28;;5092:2;5081:9;5077:18;5114;5104:61;;5158:4;5150:6;5146:17;5136:27;;5104:61;5184:2;5232;5224:6;5221:14;5201:18;5198:38;5195:165;;;-1:-1:-1;;;5259:33:1;;5315:4;5312:1;5305:15;5345:4;5266:3;5333:17;5195:165;5376:18;5403:104;;;;5521:1;5516:320;;;;5369:467;;5403:104;-1:-1:-1;;5436:24:1;;5424:37;;5481:16;;;;-1:-1:-1;5403:104:1;;5516:320;9810:1;9803:14;;;9847:4;9834:18;;5611:1;5625:165;5639:6;5636:1;5633:13;5625:165;;;5717:14;;5704:11;;;5697:35;5760:16;;;;5654:10;;5625:165;;;5629:3;;5819:6;5814:3;5810:16;5803:23;;5369:467;;;;;;;5852:56;5877:30;5903:3;5895:6;5877:30;:::i;:::-;-1:-1:-1;;;4555:20:1;;4600:1;4591:11;;4495:113;5852:56;5845:63;4613:1301;-1:-1:-1;;;;;4613:1301:1:o;6127:488::-;-1:-1:-1;;;;;6396:15:1;;;6378:34;;6448:15;;6443:2;6428:18;;6421:43;6495:2;6480:18;;6473:34;;;6543:3;6538:2;6523:18;;6516:31;;;6321:4;;6564:45;;6589:19;;6581:6;6564:45;:::i;:::-;6556:53;6127:488;-1:-1:-1;;;;;;6127:488:1:o;6812:219::-;6961:2;6950:9;6943:21;6924:4;6981:44;7021:2;7010:9;7006:18;6998:6;6981:44;:::i;8484:356::-;8686:2;8668:21;;;8705:18;;;8698:30;8764:34;8759:2;8744:18;;8737:62;8831:2;8816:18;;8484:356::o;9863:128::-;9903:3;9934:1;9930:6;9927:1;9924:13;9921:39;;;9940:18;;:::i;:::-;-1:-1:-1;9976:9:1;;9863:128::o;9996:120::-;10036:1;10062;10052:35;;10067:18;;:::i;:::-;-1:-1:-1;10101:9:1;;9996:120::o;10121:125::-;10161:4;10189:1;10186;10183:8;10180:34;;;10194:18;;:::i;:::-;-1:-1:-1;10231:9:1;;10121:125::o;10251:258::-;10323:1;10333:113;10347:6;10344:1;10341:13;10333:113;;;10423:11;;;10417:18;10404:11;;;10397:39;10369:2;10362:10;10333:113;;;10464:6;10461:1;10458:13;10455:48;;;-1:-1:-1;;10499:1:1;10481:16;;10474:27;10251:258::o;10514:380::-;10593:1;10589:12;;;;10636;;;10657:61;;10711:4;10703:6;10699:17;10689:27;;10657:61;10764:2;10756:6;10753:14;10733:18;10730:38;10727:161;;;10810:10;10805:3;10801:20;10798:1;10791:31;10845:4;10842:1;10835:15;10873:4;10870:1;10863:15;10727:161;;10514:380;;;:::o;10899:135::-;10938:3;-1:-1:-1;;10959:17:1;;10956:43;;;10979:18;;:::i;:::-;-1:-1:-1;11026:1:1;11015:13;;10899:135::o;11039:112::-;11071:1;11097;11087:35;;11102:18;;:::i;:::-;-1:-1:-1;11136:9:1;;11039:112::o;11156:127::-;11217:10;11212:3;11208:20;11205:1;11198:31;11248:4;11245:1;11238:15;11272:4;11269:1;11262:15;11288:127;11349:10;11344:3;11340:20;11337:1;11330:31;11380:4;11377:1;11370:15;11404:4;11401:1;11394:15;11420:127;11481:10;11476:3;11472:20;11469:1;11462:31;11512:4;11509:1;11502:15;11536:4;11533:1;11526:15;11552:127;11613:10;11608:3;11604:20;11601:1;11594:31;11644:4;11641:1;11634:15;11668:4;11665:1;11658:15;11684:131;-1:-1:-1;;;;;;11758:32:1;;11748:43;;11738:71;;11805:1;11802;11795:12

Swarm Source

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