Abstract Testnet

BEARISH (BURR)

Overview

TokenID

1

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-
TokenID: 1
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
DN404Mirror

Compiler Version
v0.8.28+commit.7893614a

ZkSolc Version
v1.5.10

Optimization Enabled:
Yes with Mode 3

Other Settings:
paris EvmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : DN404Mirror.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

/// @title DN404Mirror
/// @notice DN404Mirror provides an interface for interacting with the
/// NFT tokens in a DN404 implementation.
///
/// @author vectorized.eth (@optimizoor)
/// @author Quit (@0xQuit)
/// @author Michael Amadi (@AmadiMichaels)
/// @author cygaar (@0xCygaar)
/// @author Thomas (@0xjustadev)
/// @author Harrison (@PopPunkOnChain)
///
/// @dev Note:
/// - The ERC721 data is stored in the base DN404 contract.
contract DN404Mirror {
    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                           EVENTS                           */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Emitted when token `id` is transferred from `from` to `to`.
    event Transfer(address indexed from, address indexed to, uint256 indexed id);

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

    /// @dev Emitted when `owner` enables or disables `operator` to manage all of their tokens.
    event ApprovalForAll(address indexed owner, address indexed operator, bool isApproved);

    /// @dev The ownership is transferred from `oldOwner` to `newOwner`.
    /// This is for marketplace signaling purposes. This contract has a `pullOwner()`
    /// function that will sync the owner from the base contract.
    event OwnershipTransferred(address indexed oldOwner, address indexed newOwner);

    /// @dev `keccak256(bytes("Transfer(address,address,uint256)"))`.
    uint256 private constant _TRANSFER_EVENT_SIGNATURE =
        0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;

    /// @dev `keccak256(bytes("Approval(address,address,uint256)"))`.
    uint256 private constant _APPROVAL_EVENT_SIGNATURE =
        0x8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925;

    /// @dev `keccak256(bytes("ApprovalForAll(address,address,bool)"))`.
    uint256 private constant _APPROVAL_FOR_ALL_EVENT_SIGNATURE =
        0x17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31;

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                        CUSTOM ERRORS                       */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Thrown when a call for an NFT function did not originate
    /// from the base DN404 contract.
    error SenderNotBase();

    /// @dev Thrown when a call for an NFT function did not originate from the deployer.
    error SenderNotDeployer();

    /// @dev Thrown when transferring an NFT to a contract address that
    /// does not implement ERC721Receiver.
    error TransferToNonERC721ReceiverImplementer();

    /// @dev Thrown when a linkMirrorContract call is received and the
    /// NFT mirror contract has already been linked to a DN404 base contract.
    error AlreadyLinked();

    /// @dev Thrown when retrieving the base DN404 address when a link has not
    /// been established.
    error NotLinked();

    /// @dev The function selector is not recognized.
    error FnSelectorNotRecognized();

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                          STORAGE                           */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Struct contain the NFT mirror contract storage.
    struct DN404NFTStorage {
        // Address of the ERC20 base contract.
        address baseERC20;
        // The deployer, if provided. If non-zero, the initialization of the
        // ERC20 <-> ERC721 link can only be done by the deployer via the ERC20 base contract.
        address deployer;
        // The owner of the ERC20 base contract. For marketplace signaling.
        address owner;
    }

    /// @dev Returns a storage pointer for DN404NFTStorage.
    function _getDN404NFTStorage() internal pure virtual returns (DN404NFTStorage storage $) {
        /// @solidity memory-safe-assembly
        assembly {
            // `uint72(bytes9(keccak256("DN404_MIRROR_STORAGE")))`.
            $.slot := 0x3602298b8c10b01230 // Truncate to 9 bytes to reduce bytecode size.
        }
    }

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                        CONSTRUCTOR                         */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    constructor(address deployer) {
        // For non-proxies, we will store the deployer so that only the deployer can
        // link the base contract.
        _getDN404NFTStorage().deployer = deployer;
    }

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                     ERC721 OPERATIONS                      */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Returns the token collection name from the base DN404 contract.
    function name() public view virtual returns (string memory) {
        return _readString(0x06fdde03, 0); // `name()`.
    }

    /// @dev Returns the token collection symbol from the base DN404 contract.
    function symbol() public view virtual returns (string memory) {
        return _readString(0x95d89b41, 0); // `symbol()`.
    }

    /// @dev Returns the Uniform Resource Identifier (URI) for token `id` from
    /// the base DN404 contract.
    function tokenURI(uint256 id) public view virtual returns (string memory) {
        ownerOf(id); // `ownerOf` reverts if the token does not exist.
        // We'll leave if optional for `_tokenURI` to revert for non-existent token
        // on the ERC20 side, since this is only recommended by the ERC721 standard.
        return _readString(0xcb30b460, id); // `tokenURINFT(uint256)`.
    }

    /// @dev Returns the total NFT supply from the base DN404 contract.
    function totalSupply() public view virtual returns (uint256) {
        return _readWord(0xe2c79281, 0, 0); // `totalNFTSupply()`.
    }

    /// @dev Returns the number of NFT tokens owned by `nftOwner` from the base DN404 contract.
    ///
    /// Requirements:
    /// - `nftOwner` must not be the zero address.
    function balanceOf(address nftOwner) public view virtual returns (uint256) {
        return _readWord(0xf5b100ea, uint160(nftOwner), 0); // `balanceOfNFT(address)`.
    }

    /// @dev Returns the owner of token `id` from the base DN404 contract.
    ///
    /// Requirements:
    /// - Token `id` must exist.
    function ownerOf(uint256 id) public view virtual returns (address) {
        return address(uint160(_readWord(0x2d8a746e, id, 0))); // `ownerOfNFT(uint256)`.
    }

    /// @dev Returns the owner of token `id` from the base DN404 contract.
    /// Returns `address(0)` instead of reverting if the token does not exist.
    function ownerAt(uint256 id) public view virtual returns (address) {
        return address(uint160(_readWord(0xc016aa52, id, 0))); // `ownerAtNFT(uint256)`.
    }

    /// @dev Sets `spender` as the approved account to manage token `id` in
    /// the base DN404 contract.
    ///
    /// Requirements:
    /// - Token `id` must exist.
    /// - The caller must be the owner of the token,
    ///   or an approved operator for the token owner.
    ///
    /// Emits an {Approval} event.
    function approve(address spender, uint256 id) public payable virtual {
        address base = baseERC20();
        /// @solidity memory-safe-assembly
        assembly {
            spender := shr(96, shl(96, spender))
            let m := mload(0x40)
            mstore(0x00, 0xd10b6e0c) // `approveNFT(address,uint256,address)`.
            mstore(0x20, spender)
            mstore(0x40, id)
            mstore(0x60, caller())
            if iszero(
                and( // Arguments of `and` are evaluated last to first.
                    gt(returndatasize(), 0x1f), // The call must return at least 32 bytes.
                    call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20)
                )
            ) {
                returndatacopy(m, 0x00, returndatasize())
                revert(m, returndatasize())
            }
            mstore(0x40, m) // Restore the free memory pointer.
            mstore(0x60, 0) // Restore the zero pointer.
            // Emit the {Approval} event.
            log4(codesize(), 0x00, _APPROVAL_EVENT_SIGNATURE, shr(96, mload(0x0c)), spender, id)
        }
    }

    /// @dev Returns the account approved to manage token `id` from
    /// the base DN404 contract.
    ///
    /// Requirements:
    /// - Token `id` must exist.
    function getApproved(uint256 id) public view virtual returns (address) {
        return address(uint160(_readWord(0x27ef5495, id, 0))); // `getApprovedNFT(uint256)`.
    }

    /// @dev Sets whether `operator` is approved to manage the tokens of the caller in
    /// the base DN404 contract.
    ///
    /// Emits an {ApprovalForAll} event.
    function setApprovalForAll(address operator, bool approved) public virtual {
        address base = baseERC20();
        /// @solidity memory-safe-assembly
        assembly {
            operator := shr(96, shl(96, operator))
            let m := mload(0x40)
            mstore(0x00, 0xf6916ddd) // `setApprovalForAllNFT(address,bool,address)`.
            mstore(0x20, operator)
            mstore(0x40, iszero(iszero(approved)))
            mstore(0x60, caller())
            if iszero(
                and( // Arguments of `and` are evaluated last to first.
                    eq(mload(0x00), 1), // The call must return 1.
                    call(gas(), base, callvalue(), 0x1c, 0x64, 0x00, 0x20)
                )
            ) {
                returndatacopy(m, 0x00, returndatasize())
                revert(m, returndatasize())
            }
            // Emit the {ApprovalForAll} event.
            // The `approved` value is already at 0x40.
            log3(0x40, 0x20, _APPROVAL_FOR_ALL_EVENT_SIGNATURE, caller(), operator)
            mstore(0x40, m) // Restore the free memory pointer.
            mstore(0x60, 0) // Restore the zero pointer.
        }
    }

    /// @dev Returns whether `operator` is approved to manage the tokens of `nftOwner` from
    /// the base DN404 contract.
    function isApprovedForAll(address nftOwner, address operator)
        public
        view
        virtual
        returns (bool)
    {
        // `isApprovedForAllNFT(address,address)`.
        return _readWord(0x62fb246d, uint160(nftOwner), uint160(operator)) != 0;
    }

    /// @dev Transfers token `id` from `from` to `to`.
    ///
    /// Requirements:
    ///
    /// - Token `id` must exist.
    /// - `from` must be the owner of the token.
    /// - `to` cannot be the zero address.
    /// - The caller must be the owner of the token, or be approved to manage the token.
    ///
    /// Emits a {Transfer} event.
    function transferFrom(address from, address to, uint256 id) public payable virtual {
        address base = baseERC20();
        /// @solidity memory-safe-assembly
        assembly {
            from := shr(96, shl(96, from))
            to := shr(96, shl(96, to))
            let m := mload(0x40)
            mstore(m, 0xe5eb36c8) // `transferFromNFT(address,address,uint256,address)`.
            mstore(add(m, 0x20), from)
            mstore(add(m, 0x40), to)
            mstore(add(m, 0x60), id)
            mstore(add(m, 0x80), caller())
            if iszero(
                and( // Arguments of `and` are evaluated last to first.
                    eq(mload(m), 1), // The call must return 1.
                    call(gas(), base, callvalue(), add(m, 0x1c), 0x84, m, 0x20)
                )
            ) {
                returndatacopy(m, 0x00, returndatasize())
                revert(m, returndatasize())
            }
            // Emit the {Transfer} event.
            log4(codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, from, to, id)
        }
    }

    /// @dev Equivalent to `safeTransferFrom(from, to, id, "")`.
    function safeTransferFrom(address from, address to, uint256 id) public payable virtual {
        bytes calldata emptyData;
        /// @solidity memory-safe-assembly
        assembly {
            emptyData.length := 0
        }
        safeTransferFrom(from, to, id, emptyData);
    }

    /// @dev Transfers token `id` from `from` to `to`.
    ///
    /// Requirements:
    ///
    /// - Token `id` must exist.
    /// - `from` must be the owner of the token.
    /// - `to` cannot be the zero address.
    /// - The caller must be the owner of the token, or be approved to manage the token.
    /// - 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 id, bytes calldata data)
        public
        payable
        virtual
    {
        transferFrom(from, to, id);
        /// @solidity memory-safe-assembly
        assembly {
            if extcodesize(to) {
                // Prepare the calldata.
                let m := mload(0x40)
                let onERC721ReceivedSelector := 0x150b7a02
                mstore(m, onERC721ReceivedSelector)
                mstore(add(m, 0x20), caller()) // The `operator`, which is always `msg.sender`.
                mstore(add(m, 0x40), shr(96, shl(96, from)))
                mstore(add(m, 0x60), id)
                mstore(add(m, 0x80), 0x80)
                mstore(add(m, 0xa0), data.length)
                calldatacopy(add(m, 0xc0), data.offset, data.length)
                // Revert if the call reverts.
                if iszero(call(gas(), to, 0, add(m, 0x1c), add(data.length, 0xa4), m, 0x20)) {
                    if returndatasize() {
                        // Bubble up the revert if the call reverts.
                        returndatacopy(m, 0x00, returndatasize())
                        revert(m, returndatasize())
                    }
                }
                // Load the returndata and compare it.
                if iszero(eq(mload(m), shl(224, onERC721ReceivedSelector))) {
                    mstore(0x00, 0xd1a57ed6) // `TransferToNonERC721ReceiverImplementer()`.
                    revert(0x1c, 0x04)
                }
            }
        }
    }

    /// @dev Returns true if this contract implements the interface defined by `interfaceId`.
    /// See: https://eips.ethereum.org/EIPS/eip-165
    /// This function call must use less than 30000 gas.
    function supportsInterface(bytes4 interfaceId) public view virtual returns (bool result) {
        /// @solidity memory-safe-assembly
        assembly {
            let s := shr(224, interfaceId)
            // ERC165: 0x01ffc9a7, ERC721: 0x80ac58cd, ERC721Metadata: 0x5b5e139f.
            result := or(or(eq(s, 0x01ffc9a7), eq(s, 0x80ac58cd)), eq(s, 0x5b5e139f))
        }
    }

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                  OWNER SYNCING OPERATIONS                  */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Returns the `owner` of the contract, for marketplace signaling purposes.
    function owner() public view virtual returns (address) {
        return _getDN404NFTStorage().owner;
    }

    /// @dev Permissionless function to pull the owner from the base DN404 contract
    /// if it implements ownable, for marketplace signaling purposes.
    function pullOwner() public virtual returns (bool) {
        address newOwner;
        address base = baseERC20();
        uint32 baseOwnerFunctionSelector = uint32(_baseOwnerFunctionSelector());
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, baseOwnerFunctionSelector)
            let success := staticcall(gas(), base, 0x1c, 0x04, 0x00, 0x20)
            newOwner := mul(shr(96, mload(0x0c)), and(gt(returndatasize(), 0x1f), success))
        }
        DN404NFTStorage storage $ = _getDN404NFTStorage();
        address oldOwner = $.owner;
        if (oldOwner != newOwner) {
            $.owner = newOwner;
            emit OwnershipTransferred(oldOwner, newOwner);
        }
        return true;
    }

    /// @dev Override to allow for a different function selector on `baseERC20`.
    function _baseOwnerFunctionSelector() internal view virtual returns (bytes4) {
        return 0x8da5cb5b; // `owner()`.
    }

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                     MIRROR OPERATIONS                      */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Returns the address of the base DN404 contract.
    function baseERC20() public view virtual returns (address base) {
        base = _getDN404NFTStorage().baseERC20;
        if (base == address(0)) _rv(uint32(NotLinked.selector));
    }

    /// @dev Fallback modifier to execute calls from the base DN404 contract.
    modifier dn404NFTFallback() virtual {
        DN404NFTStorage storage $ = _getDN404NFTStorage();

        uint256 fnSelector = _calldataload(0x00) >> 224;

        // `logTransfer(uint256[])`.
        if (fnSelector == 0x263c69d6) {
            if (msg.sender != $.baseERC20) _rv(uint32(SenderNotBase.selector));
            /// @solidity memory-safe-assembly
            assembly {
                let o := add(0x24, calldataload(0x04)) // Packed logs offset.
                let end := add(o, shl(5, calldataload(sub(o, 0x20))))
                for {} iszero(eq(o, end)) { o := add(0x20, o) } {
                    let d := calldataload(o) // Entry in the packed logs.
                    let a := shr(96, d) // The address.
                    let b := and(1, d) // Whether it is a burn.
                    log4(
                        codesize(),
                        0x00,
                        _TRANSFER_EVENT_SIGNATURE,
                        mul(a, b), // `from`.
                        mul(a, iszero(b)), // `to`.
                        shr(168, shl(160, d)) // `id`.
                    )
                }
                mstore(0x00, 0x01)
                return(0x00, 0x20)
            }
        }
        // `logDirectTransfer(address,address,uint256[])`.
        if (fnSelector == 0x144027d3) {
            if (msg.sender != $.baseERC20) _rv(uint32(SenderNotBase.selector));
            /// @solidity memory-safe-assembly
            assembly {
                let from := calldataload(0x04)
                let to := calldataload(0x24)
                let o := add(0x24, calldataload(0x44)) // Direct logs offset.
                let end := add(o, shl(5, calldataload(sub(o, 0x20))))
                for {} iszero(eq(o, end)) { o := add(0x20, o) } {
                    log4(codesize(), 0x00, _TRANSFER_EVENT_SIGNATURE, from, to, calldataload(o))
                }
                mstore(0x00, 0x01)
                return(0x00, 0x20)
            }
        }
        // `linkMirrorContract(address)`.
        if (fnSelector == 0x0f4599e5) {
            if ($.deployer != address(0)) {
                if (address(uint160(_calldataload(0x04))) != $.deployer) {
                    _rv(uint32(SenderNotDeployer.selector));
                }
            }
            if ($.baseERC20 != address(0)) _rv(uint32(AlreadyLinked.selector));
            $.baseERC20 = msg.sender;
            /// @solidity memory-safe-assembly
            assembly {
                mstore(0x00, 0x01)
                return(0x00, 0x20)
            }
        }
        _;
    }

    /// @dev Fallback function for calls from base DN404 contract.
    /// Override this if you need to implement your custom
    /// fallback with utilities like Solady's `LibZip.cdFallback()`.
    /// And always remember to always wrap the fallback with `dn404NFTFallback`.
    fallback() external payable virtual dn404NFTFallback {
        _rv(uint32(FnSelectorNotRecognized.selector)); // Not mandatory. Just for quality of life.
    }

    /// @dev This is to silence the compiler warning.
    /// Override and remove the revert if you want your contract to receive ETH via receive.
    receive() external payable virtual {
        if (msg.value != 0) revert();
    }

    /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/
    /*                      PRIVATE HELPERS                       */
    /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/

    /// @dev Helper to read a string from the base DN404 contract.
    function _readString(uint256 fnSelector, uint256 arg0)
        private
        view
        returns (string memory result)
    {
        address base = baseERC20();
        /// @solidity memory-safe-assembly
        assembly {
            result := mload(0x40)
            mstore(0x00, fnSelector)
            mstore(0x20, arg0)
            if iszero(staticcall(gas(), base, 0x1c, 0x24, 0x00, 0x00)) {
                returndatacopy(result, 0x00, returndatasize())
                revert(result, returndatasize())
            }
            returndatacopy(0x00, 0x00, 0x20) // Copy the offset of the string in returndata.
            returndatacopy(result, mload(0x00), 0x20) // Copy the length of the string.
            returndatacopy(add(result, 0x20), add(mload(0x00), 0x20), mload(result)) // Copy the string.
            let end := add(add(result, 0x20), mload(result))
            mstore(end, 0) // Zeroize the word after the string.
            mstore(0x40, add(end, 0x20)) // Allocate memory.
        }
    }

    /// @dev Helper to read a word from the base DN404 contract.
    function _readWord(uint256 fnSelector, uint256 arg0, uint256 arg1)
        private
        view
        returns (uint256 result)
    {
        address base = baseERC20();
        /// @solidity memory-safe-assembly
        assembly {
            let m := mload(0x40)
            mstore(0x00, fnSelector)
            mstore(0x20, arg0)
            mstore(0x40, arg1)
            if iszero(
                and( // Arguments of `and` are evaluated last to first.
                    gt(returndatasize(), 0x1f), // The call must return at least 32 bytes.
                    staticcall(gas(), base, 0x1c, 0x44, 0x00, 0x20)
                )
            ) {
                returndatacopy(m, 0x00, returndatasize())
                revert(m, returndatasize())
            }
            mstore(0x40, m) // Restore the free memory pointer.
            result := mload(0x00)
        }
    }

    /// @dev Returns the calldata value at `offset`.
    function _calldataload(uint256 offset) private pure returns (uint256 value) {
        /// @solidity memory-safe-assembly
        assembly {
            value := calldataload(offset)
        }
    }

    /// @dev More bytecode-efficient way to revert.
    function _rv(uint32 s) private pure {
        /// @solidity memory-safe-assembly
        assembly {
            mstore(0x00, s)
            revert(0x1c, 0x04)
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": true,
    "mode": "3"
  },
  "evmVersion": "paris",
  "outputSelection": {
    "*": {
      "*": [
        "abi"
      ]
    }
  },
  "detectMissingLibraries": false,
  "forceEVMLA": false,
  "enableEraVMExtensions": false,
  "libraries": {}
}

Contract ABI

[{"inputs":[{"internalType":"address","name":"deployer","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyLinked","type":"error"},{"inputs":[],"name":"FnSelectorNotRecognized","type":"error"},{"inputs":[],"name":"NotLinked","type":"error"},{"inputs":[],"name":"SenderNotBase","type":"error"},{"inputs":[],"name":"SenderNotDeployer","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","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":"isApproved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldOwner","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":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseERC20","outputs":[{"internalType":"address","name":"base","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"nftOwner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pullOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"result","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"stateMutability":"payable","type":"receive"}]

000000000000000000000000c8f65219949995deb1390b60f60855a278a2262a

Deployed Bytecode

0x0001000000000002000600000000000200000000000103550000006003100270000001d0093001970000000100200190000000230000c13d0000008002000039000000400020043f000000040090008c000000500000413d000000000201043b000000e002200270000001d70020009c000000570000213d000001e40020009c000000d60000a13d000001e50020009c000001990000a13d000001e60020009c000002460000613d000001e70020009c000002870000613d000001e80020009c000000a80000c13d000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000401100370000000000101043b073c06da0000040f000001d3011001970000045d0000013d0000000002000416000000000002004b000005ba0000c13d0000001f02900039000001d1022001970000008002200039000000400020043f0000001f0490018f000001d2059001980000008002500039000000340000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000000300000c13d000000000004004b000000410000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000200090008c000005ba0000413d000000800100043d000001d30010009c000005ba0000213d000001d402000041000000000302041a000001d503300197000000000113019f000000000012041b000000200100003900000100001004430000012000000443000001d6010000410000073d0001042e000000000009004b000000a60000c13d0000000001000416000000000001004b000005ba0000c13d00000000010000190000073d0001042e000001d80020009c000001090000a13d000001d90020009c000001a20000a13d000001da0020009c000002ab0000613d000001db0020009c000003400000613d000001dc0020009c000000a80000c13d000000440090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000402100370000000000302043b000001d30030009c000005ba0000213d0000002401100370000000000101043b000001d30010009c000005ba0000213d000001f002000041000000000202041a000001d3022001980000046d0000613d000001f104000041000000000040043f000000200030043f000000400010043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000008a0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000000860000c13d000000000005004b000000970000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022102200167000000200030008c00000001022041bf00000001002001900000008008000039000005270000c13d0000008001000039000000400010043f000000000100043d000000000001004b0000000001000039000000010100c039000000800010043f000001f4010000410000073d0001042e000000000201043b000000e002200270000002190020009c000001520000613d0000021a0020009c000001640000613d0000021b0020009c000001910000c13d000001f002000041000000000202041a000001d3022001970000000003000411000000000023004b000001950000c13d0000000402100370000000000202043b0000000403200039000000000131034f000000000101043b00000005011002120000018d0000613d0000002402200039000500000021001d000600000002001d0000000001200367000000000101043b0000000102100190000000600610027000000000052600a9000000000600c019000000080110027000000000020004140000021f07100197000001d00020009c000001d002008041000000c00120021000000207011001c70000800d0200003900000004030000390000020c04000041073c07320000040f0000000100200190000005ba0000613d00000006020000290000002002200039000000050020006c000000bd0000c13d0000018d0000013d000001eb0020009c000001f30000213d000001ee0020009c000003c20000613d000001ef0020009c000000a80000c13d0000000001000416000000000001004b000005ba0000c13d000001f001000041000000000101041a000001d3021001980000046d0000613d000001ef01000041000000000010043f000000200000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f7011001c7073c07370000040f0000006003100270000001d0033001970000000100200190000004b20000613d000000200030008c000005ba0000413d000000000401043b000000000040043f0000002002400039000000000032004b000005ba0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000005ba0000213d000000000221034f00000222034001980000001f0440018f000000a001300039000003a30000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000001040000c13d000003a30000013d000001df0020009c000002150000213d000001e20020009c000003d60000613d000001e30020009c000000a80000c13d000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000401100370000000000101043b000001d30010009c000005ba0000213d000001f002000041000000000202041a000001d3022001980000046d0000613d0000020503000041000000000030043f000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000001340000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000001300000c13d000000000005004b000001410000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f0000000100200190000004530000c13d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000014d0000c13d000005dc0000013d000001d402000041000000000202041a000001d3022001980000015b0000613d0000000401100370000000000101043b000001d301100197000000000021004b0000047b0000c13d000001f001000041000000000201041a000001d300200198000004770000c13d000001d5022001970000000003000411000000000223019f000000000021041b0000018d0000013d000001f002000041000000000202041a000001d3022001970000000003000411000000000023004b000001950000c13d0000002402100370000000000202043b000500000002001d0000004402100370000000000202043b0000000403200039000000000331034f0000000401100370000000000101043b000400000001001d000000000103043b00000005011002120000018d0000613d0000002402200039000300000021001d000600000002001d0000000001200367000000000701043b0000000001000414000001d00010009c000001d001008041000000c00110021000000207011001c70000800d0200003900000004030000390000020c0400004100000004050000290000000506000029073c07320000040f0000000100200190000005ba0000613d00000006020000290000002002200039000000030020006c000001790000c13d0000000101000039000000000010043f00000203010000410000073d0001042e0000022001000041000000000010043f00000206010000410000073e000104300000021e01000041000000000010043f00000206010000410000073e00010430000001e90020009c000004220000613d000001ea0020009c000000a80000c13d0000000001090019073c063d0000040f073c064f0000040f00000000010000190000073d0001042e000001dd0020009c000004590000613d000001de0020009c000000a80000c13d000000440090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000402100370000000000402043b000001d30040009c000005ba0000213d0000002401100370000000000101043b000000000001004b0000000002000039000000010200c039000000000021004b000005ba0000c13d000001f002000041000000000202041a000001d3022001980000046d0000613d000001ff03000041000000000030043f000600000004001d000000200040043f000000400010043f0000000001000411000000600010043f0000000001000414000001d00010009c000001d001008041000000c00110021000000200011001c7073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000001d50000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000001d10000c13d000000000005004b000001e20000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022102200167000000000400043d000000010040008c000000010220c1bf0000000100200190000005d20000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000201011001c70000800d020000390000000303000039000002020400004100000000050004110000000606000029000005180000013d000001ec0020009c000004640000613d000001ed0020009c000000a80000c13d000000440090008c000005ba0000413d0000000402100370000000000202043b000001d30020009c000005ba0000213d0000002401100370000000000301043b000001f001000041000000000101041a000001d3041001980000046d0000613d0000021101000041000000000010043f000600000002001d000000200020043f000500000003001d000000400030043f0000000001000411000000600010043f0000000001000414000001d00010009c000001d001008041000000c0011002100000000003000416000000000003004b000004e90000c13d00000200011001c70000000002040019000004ec0000013d000001e00020009c000004710000613d000001e10020009c000000a80000c13d0000000001000416000000000001004b000005ba0000c13d000001f001000041000000000101041a000001d3021001980000046d0000613d000001e101000041000000000010043f000000200000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f7011001c7073c07370000040f0000006003100270000001d0033001970000000100200190000004bd0000613d000000200030008c000005ba0000413d000000000401043b000000000040043f0000002002400039000000000032004b000005ba0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000005ba0000213d000000000221034f00000222034001980000001f0440018f000000a001300039000003a30000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000002410000c13d000003a30000013d000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d000001f002000041000000000202041a000001d3022001980000046d0000613d0000020f03000041000000000030043f0000000401100370000000000101043b000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000002690000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000002650000c13d000000000005004b000002760000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f0000000100200190000004ab0000c13d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000002820000c13d000005dc0000013d000000640090008c000005ba0000413d0000000402100370000000000302043b000001d30030009c000005ba0000213d0000002402100370000000000202043b000001d30020009c000005ba0000213d0000004401100370000000000501043b000001f001000041000000000101041a000001d3041001980000046d0000613d0000020901000041000000800010043f000500000003001d000000a00030043f000600000002001d000000c00020043f000400000005001d000000e00050043f0000000001000411000001000010043f0000000001000414000001d00010009c000001d001008041000000c0011002100000000003000416000000000003004b000005310000c13d0000020b011001c70000000002040019000005340000013d000000840090008c000005ba0000413d0000000402100370000000000602043b000001d30060009c000005ba0000213d0000002402100370000000000202043b000001d30020009c000005ba0000213d0000004404100370000000000304043b0000006404100370000000000504043b000001f80050009c000005ba0000213d0000002304500039000000000094004b000005ba0000813d0000000407500039000000000171034f000000000401043b000001f80040009c000005ba0000213d00000000014500190000002401100039000000000091004b000005ba0000213d000300000007001d000500000004001d000400000006001d0000000001060019000200000003001d000600000002001d073c064f0000040f000001f9010000410000000000100443000000060100002900000004001004430000000001000414000001d00010009c000001d001008041000000c001100210000001fa011001c70000800202000039073c07370000040f0000000100200190000005ec0000613d000000000101043b000000000001004b0000000503000029000000040500002900000003060000290000000207000029000000550000613d000000400400043d0000008001400039000000800200003900000000002104350000006001400039000000000071043500000040014000390000000000510435000000200140003900000000020004110000000000210435000001fb010000410000000000140435000000a001400039000000000031043500000222023001980000001f0330018f000100000004001d000000c005400039000000000125001900000020046000390000000004400367000002fe0000613d000000000604034f000000006706043c0000000005750436000000000015004b000002fa0000c13d000000000003004b0000030b0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000000501000029000001fc0010009c000001fc01008041000000600110021000000001020000290000001c02200039000001d00020009c000001d0020080410000004002200210000000000121019f0000000002000414000001d00020009c000001d002008041000000c002200210000000000121019f000001fd0110009a0000000602000029073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000001046000290000032c0000613d000000000701034f0000000108000029000000007907043c0000000008980436000000000048004b000003280000c13d000000000005004b000003390000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf00000001002001900000060a0000613d00000001010000290000000001010433000005b40000013d000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000401100370000000000301043b000001f001000041000000000101041a000001d3021001980000046d0000613d000001f501000041000000000010043f000600000003001d000000200030043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003640000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003600000c13d000000000005004b000003710000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000001f0030008c00000000040000390000000104002039000000000242016f0000000100200190000004c80000613d0000008001000039000000400010043f000001f001000041000000000101041a000001d30210019800000006030000290000046d0000613d000001f601000041000000000010043f000000200030043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f7011001c7073c07370000040f0000006003100270000001d0033001970000000100200190000005bc0000613d000000200030008c000005ba0000413d000000000401043b000000000040043f0000002002400039000000000032004b000005ba0000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000005ba0000213d000000000221034f00000222034001980000001f0440018f000000a001300039000003a30000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b0000039f0000c13d000000000004004b000003b00000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000800100043d000000a0021000390000000000020435000000c001100039000600000001001d000000400010043f0000008002000039073c06280000040f00000006020000290000000001210049000001d00010009c000001d001008041000001d00020009c000001d00200804100000060011002100000004002200210000000000121019f0000073d0001042e000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d0000000401100370000000000101043b0000021600100198000005ba0000c13d000000e001100270000002170010009c00000000020000390000000102006039000001ee0010009c00000001022061bf000002180010009c00000001022061bf000000800020043f000001f4010000410000073d0001042e0000000001000416000000000001004b000005ba0000c13d000001f001000041000000000101041a000001d3021001980000046d0000613d000001e001000041000000000010043f0000000001000414000001d00010009c000001d001008041000000c00110021000000206011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003f30000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003ef0000c13d000000000005004b000004000000613d000000000141034f0000000305500210000000000604043300000000065601cf000000000656022f000000000101043b0000010005500089000000000151022f00000000015101cf000000000161019f00000000001404350000001f0030008c0000000001000039000000010100203900000000001201700000000c0100043d000000600610027000000000060060190000020401000041000000000201041a000001d305200197000000000065004b0000041a0000613d000001d502200197000000000226019f000000000021041b0000000001000414000001d00010009c000001d001008041000000c00110021000000207011001c70000800d0200003900000003030000390000020804000041073c07320000040f0000000100200190000005ba0000613d000000400100043d00000001020000390000000000210435000001d00010009c000001d001008041000000400110021000000203011001c70000073d0001042e0000000001000416000000000001004b000005ba0000c13d000001f001000041000000000101041a000001d3021001980000046d0000613d0000021001000041000000000010043f000000200000043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004410000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000043d0000c13d000000000005004b0000044e0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022102200167000000200030008c00000001022041bf0000000100200190000004d30000c13d0000008001000039000000400010043f000000000100043d000000800010043f000001f4010000410000073d0001042e0000000001000416000000000001004b000005ba0000c13d073c06d10000040f000000400200043d0000000000120435000001d00020009c000001d002008041000000400120021000000203011001c70000073d0001042e000000240090008c000005ba0000413d0000000002000416000000000002004b000005ba0000c13d000001f002000041000000000202041a000001d3022001980000047f0000c13d0000021501000041000000000010043f00000206010000410000073e000104300000000001000416000000000001004b000005ba0000c13d0000020401000041000000000101041a000004ae0000013d0000021d01000041000000000010043f00000206010000410000073e000104300000021c01000041000000000010043f00000206010000410000073e000104300000021403000041000000000030043f0000000401100370000000000101043b000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004990000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004950000c13d000000000005004b000004a60000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022102200167000000200030008c00000001022041bf0000000100200190000004de0000c13d0000008001000039000000400010043f000000000100043d000001d301100197000000800010043f000001f4010000410000073d0001042e0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004b80000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004c30000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004ce0000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004d90000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004e40000c13d000005dc0000013d00000212011001c700008009020000390000000005000019073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004fb0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004f70000c13d000000000005004b000005080000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f000000000054043500000001002001900000051c0000613d000000200030008c0000051c0000413d0000000c0100043d0000000002000414000001d00020009c000001d002008041000000c002200210000000600510027000000207012001c70000800d020000390000000403000039000002130400004100000006060000290000000507000029073c07320000040f0000000100200190000000550000c13d000005ba0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005220000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d000000000601034f000000006706043c0000000008780436000000000028004b0000052c0000c13d000005dc0000013d0000020a011001c700008009020000390000000005000019073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000005440000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000005400000c13d000000000005004b000005510000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000005c70000613d000000800200043d000000010020008c000005c70000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000207011001c70000800d0200003900000004030000390000020c04000041000000050500002900000006060000290000000407000029073c07320000040f00000006030000290000000100200190000005ba0000613d000001f901000041000000000010044300000004003004430000000001000414000001d00010009c000001d001008041000000c001100210000001fa011001c70000800202000039073c07370000040f0000000100200190000005ec0000613d000000000101043b000000000001004b00000006020000290000000504000029000000550000613d000000400500043d000300000005001d00000080015000390000008003000039000000000031043500000060015000390000000403000029000000000031043500000040015000390000000000410435000000200150003900000000030004110000000000310435000001fb010000410000000000150435000000a00150003900000000000104350000001c01500039000001d00010009c000001d00100804100000040011002100000000003000414000001d00030009c000001d003008041000000c003300210000000000113019f0000020d011001c7073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000030a0000290000000304600029000005a20000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000059e0000c13d000000000005004b000005af0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003004b00000001022061bf0000000100200190000005ed0000613d00000000010a0433000001fe0010009c000000550000613d0000020e01000041000000000010043f00000206010000410000073e0001043000000000010000190000073e000104300000001f0430018f000001d20530019800000080025000390000008008000039000005dc0000613d000000000601034f000000006706043c0000000008780436000000000028004b000005c20000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005cd0000c13d000005dc0000013d0000001f0430018f000001d2053001980000008002500039000005dc0000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005d80000c13d000000000004004b000005e90000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000001f3011001c70000073e00010430000000000001042f0000001f0430018f000001d20530019800000000025a0019000005f70000613d000000000601034f00000000070a0019000000006806043c0000000007870436000000000027004b000005f30000c13d000000000004004b000006040000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000006001300210000001d000a0009c000001d00a0080410000004002a00210000000000121019f0000073e000104300000001f0430018f000001d2053001980000000102500029000006140000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000027004b000006100000c13d000000000004004b000006210000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000102000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073e0001043000000020030000390000000004310436000000003202043400000000002404350000004001100039000000000002004b000006370000613d000000000400001900000000054100190000000006430019000000000606043300000000006504350000002004400039000000000024004b000006300000413d000000000321001900000000000304350000001f0220003900000222022001970000000001210019000000000001042d000002230010009c0000064d0000213d000000630010008c0000064d0000a13d00000000030003670000000401300370000000000101043b000001d30010009c0000064d0000213d0000002402300370000000000202043b000001d30020009c0000064d0000213d0000004403300370000000000303043b000000000001042d00000000010000190000073e000104300004000000000002000001f004000041000000000404041a000001d304400198000006ad0000613d000000400600043d0000008007600039000000000500041100000000005704350000006005600039000300000003001d000000000035043500000209030000410000000003360436000001d3052001970000004002600039000200000005001d0000000000520435000001d301100197000100000001001d0000000000130435000400000006001d0000001c016000390000000002000414000001d00020009c000001d002008041000000c0022002100000000003000416000000000003004b000006750000613d0000004005100210000002240550009a000002250010009c00000226050080410000000001250019000080090200003900000000050000190000067b0000013d000001d00010009c000001d0010080410000004001100210000000000112019f00000227011001c70000000002040019073c07320000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000040a00002900000000046a00190000068c0000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000006880000c13d000000000005004b000006990000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000000100200190000006b10000613d00000000020a0433000000010020008c000006b10000c13d0000000001000414000001d00010009c000001d001008041000000c00110021000000207011001c70000800d0200003900000004030000390000020c04000041000000010500002900000002060000290000000307000029073c07320000040f0000000100200190000006cf0000613d000000000001042d0000021501000041000000000010043f00000206010000410000073e000104300000001f0430018f000001d20530019800000000025a0019000006bb0000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000027004b000006b70000c13d000000000004004b000006c80000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000402000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073e0001043000000000010000190000073e00010430000001f001000041000000000101041a000001d301100198000006d60000613d000000000001042d0000021501000041000000000010043f00000206010000410000073e000104300001000000000002000001f002000041000000000202041a000001d3022001980000070f0000613d000000400300043d000100000003001d000001f503000041000000000030043f000000200010043f000000400000043f0000000001000414000001d00010009c000001d001008041000000c001100210000001f2011001c7073c07370000040f0000006003100270000001d003300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000006f90000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000006f50000c13d000000000005004b000007060000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350000022102200167000000200030008c00000001022041bf0000000100200190000007130000c13d0000000101000029000000400010043f000000000100043d000000000001042d0000021501000041000000000010043f00000206010000410000073e000104300000001f0430018f000001d20530019800000001025000290000071d0000613d000000000601034f0000000107000029000000006806043c0000000007870436000000000027004b000007190000c13d000000000004004b0000072a0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000000102000029000001d00020009c000001d0020080410000004002200210000000000121019f0000073e00010430000000000001042f00000735002104210000000102000039000000000001042d0000000002000019000000000001042d0000073a002104230000000102000039000000000001042d0000000002000019000000000001042d0000073c000004320000073d0001042e0000073e00010430000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000000000000001ffffffe000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000003602298b8c10b01231ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006cef16e50000000000000000000000000000000000000000000000000000000097e5311b00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c50000000000000000000000000000000000000000000000000000000097e5311c00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006cef16e60000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002435987800000000000000000000000000000000000000000000000000000000243598790000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000003602298b8c10b012300000000000000000000000000000000000000000000000000000000062fb246d00000000000000000000000000000000000000440000001c000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000002d8a746e00000000000000000000000000000000000000000000000000000000cb30b46000000000000000000000000000000000000000240000001c0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000150b7a0200000000000000000000000000000000000000000000000000000000ffffff5bffffffffffffffffffffffffffffffffffffff5c000000000000000000000000150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6916ddd00000000000000000000000000000000000000640000001c0000000000000000020000000000000000000000000000000000002000000040000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000003602298b8c10b0123200000000000000000000000000000000000000000000000000000000f5b100ea00000000000000000000000000000000000000040000001c000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000000000000e5eb36c802000000000000000000000000000000000000840000009c000000000000000000000000000000000000000000000000000000840000009c0000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef00000000000000000000000000000000000000a400000000000000000000000000000000000000000000000000000000000000000000000000000000d1a57ed600000000000000000000000000000000000000000000000000000000c016aa5200000000000000000000000000000000000000000000000000000000e2c7928100000000000000000000000000000000000000000000000000000000d10b6e0c02000000000000000000000000000000000000640000001c00000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000000000000000000027ef5495000000000000000000000000000000000000000000000000000000005b2a47ae00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f000000000000000000000000000000000000000000000000000000000f4599e500000000000000000000000000000000000000000000000000000000144027d300000000000000000000000000000000000000000000000000000000263c69d600000000000000000000000000000000000000000000000000000000c59ec47a00000000000000000000000000000000000000000000000000000000bf656a4600000000000000000000000000000000000000000000000000000000363cb312000000000000000000000000000000000000000000ffffffffffffffffffffff000000000000000000000000000000000000000000000000000000003c10b94effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdffffffffffffffffffffffffffffffffffff7c00000000000000000000000000000000000000000000000000000000000000000000000000000001000000000200000000000000000000000000000000000084ffffffff000000000000000000000000000000000000000000000000000000840000000000000000000000000eded7caed0480cf505d8a03b36f460465a678d77350aa00b719020729890a34

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

000000000000000000000000c8f65219949995deb1390b60f60855a278a2262a

-----Decoded View---------------
Arg [0] : deployer (address): 0xC8F65219949995DEB1390B60F60855a278a2262A

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000c8f65219949995deb1390b60f60855a278a2262a


[ 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.