Source Code
Overview
ETH Balance
0 ETH
More Info
ContractCreator
Multichain Info
N/A
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
4298053 | 3 days ago | Contract Creation | 0 ETH |
Loading...
Loading
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:
Sheepy404Mirror
Compiler Version
v0.8.28+commit.7893614a
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
cancun EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import {DN404Mirror} from "dn404/src/DN404Mirror.sol"; /// @dev This contract can be used by itself or as an proxy's implementation. contract Sheepy404Mirror is DN404Mirror { /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* CONSTRUCTOR */ /*-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»-»*/ constructor() DN404Mirror(msg.sender) {} }
// 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 { transferFrom(from, to, id); if (_hasCode(to)) _checkOnERC721Received(from, to, id, ""); } /// @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); if (_hasCode(to)) _checkOnERC721Received(from, to, id, data); } /// @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(); /// @solidity memory-safe-assembly assembly { mstore(0x00, 0x8da5cb5b) // `owner()`. 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; } /*«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-«-*/ /* 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)) revert NotLinked(); } /// @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) revert SenderNotBase(); /// @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) revert SenderNotBase(); /// @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) { revert SenderNotDeployer(); } } if ($.baseERC20 != address(0)) revert AlreadyLinked(); $.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 { revert FnSelectorNotRecognized(); // 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 Returns if `a` has bytecode of non-zero length. function _hasCode(address a) private view returns (bool result) { /// @solidity memory-safe-assembly assembly { result := extcodesize(a) // Can handle dirty upper bits. } } /// @dev Perform a call to invoke {IERC721Receiver-onERC721Received} on `to`. /// Reverts if the target does not support the function correctly. function _checkOnERC721Received(address from, address to, uint256 id, bytes memory data) private { /// @solidity memory-safe-assembly assembly { // 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) let n := mload(data) mstore(add(m, 0xa0), n) if n { let dst := add(m, 0xc0) let end := add(dst, n) for { let d := sub(add(data, 0x20), dst) } 1 {} { mstore(dst, mload(add(dst, d))) dst := add(dst, 0x20) if iszero(lt(dst, end)) { break } } } // Revert if the call reverts. if iszero(call(gas(), to, 0, add(m, 0x1c), add(n, 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) } } } }
{ "viaIR": false, "codegen": "yul", "remappings": [ "dn404/=lib/dn404/", "forge-std/=lib/forge-std/src/", "solady/=lib/solady/src/" ], "evmVersion": "cancun", "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "optimizer": { "enabled": true, "mode": "3", "fallback_to_optimizing_for_size": false, "disable_system_request_memoization": true }, "metadata": {}, "libraries": {}, "enableEraVMExtensions": false, "forceEVMLA": false }
[{"inputs":[],"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"}]
Contract Creation Code
3cda3351002448c2208daa3547ea713b846f7bfdbeb85a13d5e274e5ab6b3283ece22bd801000267633b7ef5f41e24f2e2e0900431f587f9933e7ec49078885a636d6bea00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x00030000000000020005000000000002000000000401034f00000060011002700000020e07100197000200000074035500010000000403550000008008000039000000400080043f0000000100200190000000260000c13d000000040070008c000000340000413d000000000174034f000000000204043b000000e002200270000002120020009c0000003b0000213d0000021f0020009c000000920000a13d000002200020009c0000010d0000a13d000002210020009c0000016c0000613d000002220020009c000001830000613d000002230020009c000000640000c13d000000240070008c000006340000413d0000000001000416000000000001004b000006340000c13d0000000401400370000000000101043b083307c60000040f0000022b01100197000002b60000013d0000000001000416000000000001004b000006340000c13d0000020f01000041000000000201041a00000210022001970000000003000411000000000232019f000000000021041b0000002001000039000001000010044300000120000004430000021101000041000008340001042e000000000007004b000000620000c13d0000000001000416000000000001004b000006340000c13d0000000001000019000008340001042e000002130020009c000000a70000a13d000002140020009c000001160000a13d000002150020009c000001a40000613d000002160020009c000002630000613d000002170020009c000000640000c13d000000440070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000000402400370000000000302043b0000022b0030009c000006340000213d0000002402400370000000000402043b0000022b0040009c000006340000213d0000022c02000041000000000202041a0000022b02200198000003890000613d0000022d05000041000000000050043f000000200030043f000000400040043f0000000003000414000000040020008c000004f50000c13d0000001c0200043d000000000020043f00000001020000390000000003000031000005180000013d000000000104043b000000e002100270000002570020009c000000c60000613d000002580020009c000000d80000613d000002590020009c000001050000c13d0000022c01000041000000000101041a0000022b011001970000000002000411000000000012004b000001090000c13d0000000401400370000000000101043b0000000402100039000000000224034f000000000202043b0000000502200212000001010000613d0000002401100039000400000012001d000500000001001d0000000101100367000000000101043b0000000102100190000000600610027000000000052600a9000000000600c019000000080110027000000000020004140000025d071001970000020e0020009c0000020e02008041000000c00120021000000242011001c70000800d0200003900000004030000390000024704000041083308290000040f0000000100200190000006340000613d00000005010000290000002001100039000000040010006c000000790000c13d000001010000013d000002260020009c0000013b0000213d000002290020009c0000027a0000613d0000022a0020009c000000640000c13d0000000002000416000000000002004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000022a03000041000000000030043f000000200000043f0000000003000414000000040020008c000002e20000c13d0000000003000031000002ed0000013d0000021a0020009c000001590000213d0000021d0020009c0000028e0000613d0000021e0020009c000000640000c13d000000240070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000000402400370000000000302043b0000022b0030009c000006340000213d0000022c02000041000000000202041a0000022b02200198000003890000613d0000024004000041000000000040043f000000200030043f000000400000043f0000000003000414000000040020008c000004460000c13d0000001c0200043d000000000020043f00000001020000390000000003000031000004680000013d0000020f01000041000000000101041a0000022b01100198000000cf0000613d0000000402400370000000000202043b0000022b02200197000000000012004b000002de0000c13d0000022c01000041000000000201041a0000022b00200198000002da0000c13d00000210022001970000000003000411000000000223019f000000000021041b000001010000013d0000022c01000041000000000101041a0000022b011001970000000002000411000000000012004b000001090000c13d0000002401400370000000000101043b000400000001001d0000004401400370000000000101043b0000000402100039000000000224034f0000000403400370000000000303043b000300000003001d000000000202043b0000000502200212000001010000613d0000002401100039000200000012001d000500000001001d0000000101100367000000000701043b00000000010004140000020e0010009c0000020e01008041000000c00110021000000242011001c70000800d020000390000000403000039000002470400004100000003050000290000000406000029083308290000040f0000000100200190000006340000613d00000005010000290000002001100039000000020010006c000000ed0000c13d0000000101000039000000000010043f0000023e01000041000008340001042e0000025e01000041000000000010043f000002530100004100000835000104300000025c01000041000000000010043f00000253010000410000083500010430000002240020009c0000029f0000613d000002250020009c000000640000c13d00000000010700190833070b0000040f0833071d0000040f0000000001000019000008340001042e000002180020009c000002b20000613d000002190020009c000000640000c13d000000440070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000000402400370000000000602043b0000022b0060009c000006340000213d0000002402400370000000000302043b000000000003004b0000000002000039000000010200c039000000000023004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000023a04000041000000000040043f000000200060043f000000400030043f0000000005000411000000600050043f0000000003000414000000040020008c000005960000c13d00000001020000390000001c0300043d000000000030043f000005bc0000013d000002270020009c000002bd0000613d000002280020009c000000640000c13d000000440070008c000006340000413d0000000402400370000000000602043b0000022b0060009c000006340000213d0000002402400370000000000702043b0000022c02000041000000000202041a0000022b04200198000003890000613d0000024e02000041000000000020043f000000200060043f000000400070043f0000000002000411000000600020043f0000000002000414000000040040008c000004720000c13d0000001c0200043d000000000020043f00000001020000390000000003000031000005610000013d0000021b0020009c000002d40000613d0000021c0020009c000000640000c13d0000000002000416000000000002004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000021c03000041000000000030043f000000200000043f0000000003000414000000040020008c000003060000c13d0000000003000031000003110000013d000000240070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000024c03000041000000000030043f0000000403400370000000000303043b000000200030043f000000400000043f0000000003000414000000040020008c0000032a0000c13d0000001c0200043d000000000020043f000000010200003900000000030000310000034c0000013d000000640070008c000006340000413d0000000402400370000000000502043b0000022b0050009c000006340000213d0000002402400370000000000602043b0000022b0060009c000006340000213d0000004402400370000000000702043b0000022c02000041000000000202041a0000022b04200198000003890000613d0000024402000041000000800020043f000000a00050043f000000c00060043f000000e00070043f0000000002000411000001000020043f0000000002000414000000040040008c000500000006001d000300000005001d000400000007001d000005250000c13d0000009c0200043d000000800020043f0000000102000039000006090000013d000000840070008c000006340000413d0000000401400370000000000101043b0000022b0010009c000006340000213d0000002402400370000000000202043b0000022b0020009c000006340000213d0000004405400370000000000305043b0000006405400370000000000605043b000002350060009c000006340000213d0000002305600039000000000075004b000006340000813d0000000408600039000000000484034f000000000504043b000002350050009c000006340000213d00000000045600190000002404400039000000000074004b000006340000213d000100000008001d000400000005001d000300000001001d000200000003001d000500000002001d0833071d0000040f000002360100004100000000001004430000000501000029000000040010044300000000010004140000020e0010009c0000020e01008041000000c00110021000000237011001c700008002020000390833082e0000040f0000000100200190000006530000613d000000000101043b000000000001004b0000000401000029000000390000613d0000001f011000390000025f011001970000003f011000390000025f02100197000000400100043d0000000002210019000000000012004b00000000040000390000000104004039000002350020009c0000062e0000213d00000001004001900000062e0000c13d000000400020043f000000040500002900000000025104360000025f045001980000001f0550018f0000000003420019000000010600002900000020066000390000000106600367000001f40000613d000000000706034f0000000008020019000000007907043c0000000008980436000000000038004b000001f00000c13d000000000005004b000002010000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f000000000043043500000004022000290000000000020435000000400400043d000000800240003900000080030000390000000000320435000000600240003900000002030000290000000000320435000000400240003900000003030000290000000000320435000000200240003900000000030004110000000000320435000002380200004100000000002404350000000002010433000400000004001d000000a0034000390000000000230435000000000002004b000002220000613d00000004030000290000000004310049000000c0013000390000000003120019000000a00440008a000000000514001900000000050504330000000001510436000000000031004b0000021d0000413d000000000100041400000004030000290000001c033000390000000504000029000000040040008c0000067c0000613d0000020e0030009c0000020e030080410000004003300210000000a4022000390000020e0020009c0000020e020080410000006002200210000000000232019f0000020e0010009c0000020e01008041000000c001100210000000000121019f0000000502000029083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000404600029000002450000613d000000000701034f0000000408000029000000007907043c0000000008980436000000000048004b000002410000c13d000000000005004b000002520000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350002000000010355000000000003001f000000000003004b00000001022061bf0000000100200190000006b00000c13d0000001f0430018f00000234053001980000000402500029000006c20000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000027004b0000025e0000c13d000006c20000013d000000240070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000000402400370000000000502043b0000022c02000041000000000202041a0000022b02200198000003890000613d0000023103000041000000000030043f000000200050043f000000400000043f0000000003000414000000040020008c0000035b0000c13d0000001c0200043d000000000020043f000000010200003900000000030000310000037f0000013d000000240070008c000006340000413d0000000001000416000000000001004b000006340000c13d0000000401400370000000000101043b0000025400100198000006340000c13d000000e001100270000002550010009c00000000020000390000000102006039000002290010009c00000001022061bf000002560010009c00000001022061bf000000800020043f0000023001000041000008340001042e0000000001000416000000000001004b000006340000c13d0000022c01000041000000000101041a0000022b02100198000003890000613d0000021b01000041000000000010043f0000000001000414000000040020008c0000038d0000c13d0000001c0100043d000000000010043f00000001020000390000000003000031000003b00000013d0000000002000416000000000002004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000024d03000041000000000030043f000000200000043f000000400000043f0000000003000414000000040020008c000003d20000c13d0000001c0200043d000000000020043f00000001020000390000000003000031000003f40000013d0000000001000416000000000001004b000006340000c13d083307bd0000040f000000400200043d00000000001204350000020e0020009c0000020e0200804100000040012002100000023e011001c7000008340001042e000000240070008c000006340000413d0000000002000416000000000002004b000006340000c13d0000022c02000041000000000202041a0000022b02200198000003890000613d0000025103000041000000000030043f0000000403400370000000000303043b000000200030043f000000400000043f0000000003000414000000040020008c000004030000c13d0000001c0200043d000000000020043f00000001020000390000000003000031000004250000013d0000000001000416000000000001004b000006340000c13d0000023f01000041000000000101041a0000042c0000013d0000025b01000041000000000010043f000002530100004100000835000104300000025a01000041000000000010043f000002530100004100000835000104300000020e0030009c0000020e03008041000000c00130021000000233011001c70833082e0000040f00000060031002700000020e0030019d0000020e03300197000200000001035500000001002001900000048c0000613d000000200030008c000006340000413d000000000401043b000000000040043f0000002002400039000000000032004b000006340000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000006340000213d000000000221034f0000025f034001980000001f0440018f000000a001300039000004cb0000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000003010000c13d000004cb0000013d0000020e0030009c0000020e03008041000000c00130021000000233011001c70833082e0000040f00000060031002700000020e0030019d0000020e0330019700020000000103550000000100200190000004970000613d000000200030008c000006340000413d000000000401043b000000000040043f0000002002400039000000000032004b000006340000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000006340000213d000000000221034f0000025f034001980000001f0440018f000000a001300039000004cb0000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000003250000c13d000004cb0000013d0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000033d0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003390000c13d000000000005004b0000034a0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000003500000613d0000001f0030008c000004290000213d0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000003560000c13d000005840000013d000500000005001d0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f00000020044001900000036f0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000036b0000c13d000000000005004b0000037c0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000005050000290000000100200190000004300000613d0000001f0030008c000004300000a13d0000008002000039000000400020043f0000022c02000041000000000202041a0000022b02200198000004a20000c13d0000025201000041000000000010043f000002530100004100000835000104300000020e0010009c0000020e01008041000000c00110021000000241011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003a00000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000039c0000c13d000000000005004b000003ad0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000010220018f000000000003001f00020000000103550000001f0030008c00000000010000390000000101002039000000000112016f0000000c0200043d000000600220027000000000062100a90000023f01000041000000000201041a0000022b05200197000000000065004b000003ca0000613d0000021002200197000000000226019f000000000021041b00000000010004140000020e0010009c0000020e01008041000000c00110021000000242011001c70000800d0200003900000003030000390000024304000041083308290000040f0000000100200190000006340000613d000000400100043d000000010200003900000000002104350000020e0010009c0000020e0100804100000040011002100000023e011001c7000008340001042e0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000003e50000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000003e10000c13d000000000005004b000003f20000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000003f80000613d000000200030008c0000046c0000813d0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000003fe0000c13d000005840000013d0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004160000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004120000c13d000000000005004b000004230000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001002001900000043b0000613d000000200030008c0000043b0000413d0000008001000039000000400010043f000000000100043d0000022b01100197000000800010043f0000023001000041000008340001042e0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004360000c13d000005840000013d0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004410000c13d000005840000013d0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000004590000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004550000c13d000000000005004b000004660000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000100200190000004ea0000613d0000001f0030008c000004ea0000a13d0000008001000039000000400010043f000000000100043d000000800010043f0000023001000041000008340001042e000400000007001d000500000006001d00000000030004160000020e0020009c0000020e02008041000000c001200210000000000003004b0000053e0000c13d0000023b011001c70000000002040019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000005500000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000004870000c13d000005500000013d0000001f0430018f00000234053001980000008002500039000005d60000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004920000c13d000005d60000013d0000001f0430018f00000234053001980000008002500039000005d60000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b0000049d0000c13d000005d60000013d0000023204000041000000000040043f000000200050043f0000000004000414000000040020008c000004b50000613d0000020e0040009c0000020e04008041000000c00140021000000233011001c70833082e0000040f00000060031002700000020e0030019d0000020e0330019700020000000103550000000100200190000005cc0000613d000000200030008c000006340000413d000000000401043b000000000040043f0000002002400039000000000032004b000006340000213d000000000441034f000000000404043b000000800040043f0000000005240019000000000035004b000006340000213d000000000221034f0000025f034001980000001f0440018f000000a001300039000004cb0000613d000000a005000039000000000602034f000000006706043c0000000005750436000000000015004b000004c70000c13d000000000004004b000004d80000613d000000000232034f0000000303400210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f0000000000210435000000800100043d000000a0021000390000000000020435000000c001100039000500000001001d000000400010043f0000008002000039083306d60000040f000000050200002900000000012100490000020e0010009c0000020e010080410000020e0020009c0000020e0200804100000060011002100000004002200210000000000121019f000008340001042e0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000004f00000c13d000005840000013d0000020e0030009c0000020e03008041000000c0013002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000005080000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005040000c13d000000000005004b0000008008000039000005160000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001002001900000057b0000613d000000200030008c0000057b0000413d0000008001000039000000400010043f000000000100043d000000000001004b0000000001000039000000010100c039000000800010043f0000023001000041000008340001042e00000000030004160000020e0020009c0000020e02008041000000c001200210000000000003004b000005e60000c13d00000246011001c70000000002040019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000005f90000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000005390000c13d000005f90000013d0000024f011001c700008009020000390000000005000019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000005500000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b0000054c0000c13d000000000005004b0000055d0000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000050600002900000004070000290000000100200190000005700000613d0000001f0030008c000005700000a13d0000000c0100043d00000000020004140000020e0020009c0000020e02008041000000c002200210000000600510027000000242012001c70000800d0200003900000004030000390000025004000041000005c80000013d0000025f043001980000001f0530018f0000008002400039000005840000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000026004b000005760000c13d000005840000013d0000025f043001980000001f0530018f0000008002400039000005840000613d000000000601034f000000006706043c0000000008780436000000000028004b000005800000c13d000000000005004b000005910000613d000000000141034f0000000304500210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001204350000020e0030009c0000020e0300804100000060013002100000022f011001c70000083500010430000500000006001d0000020e0030009c0000020e03008041000000c0013002100000023b011001c7083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000005aa0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000005a60000c13d000000000005004b000005b70000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f0002000000010355000000000300043d000000050600002900000000050004110000000100200190000006360000613d000000010030008c000006360000c13d00000000010004140000020e0010009c0000020e01008041000000c0011002100000023c011001c70000800d0200003900000003030000390000023d04000041083308290000040f0000000100200190000000390000c13d000006340000013d0000001f0430018f000002340530019800000080025000390000008008000039000005d60000613d000000000601034f000000006706043c0000000008780436000000000028004b000005d20000c13d000000000004004b000005930000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f000000000012043500000060013002100000022f011001c7000008350001043000000245011001c700008009020000390000000005000019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000005f90000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000005f50000c13d000000000005004b000006060000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000004070000290000000100200190000006360000613d000000800200043d000000010020008c000006360000c13d00000000010004140000020e0010009c0000020e01008041000000c00110021000000242011001c70000800d020000390000000403000039000002470400004100000003050000290000000506000029083308290000040f00000005030000290000000100200190000006340000613d00000236010000410000000000100443000000040030044300000000010004140000020e0010009c0000020e01008041000000c00110021000000237011001c700008002020000390833082e0000040f0000000100200190000006530000613d000000000101043b000000000001004b000000390000613d000000400200043d000002480020009c000006540000413d0000024a01000041000000000010043f0000004101000039000000040010043f0000024b0100004100000835000104300000000001000019000008350001043000000000020000310000025f042001980000001f0520018f0000008003400039000006410000613d0000008006000039000000000701034f000000007807043c0000000006860436000000000036004b0000063d0000c13d000000000005004b0000064e0000613d000000000141034f0000000304500210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f00000000001304350000020e0020009c0000020e0200804100000060012002100000022f011001c70000083500010430000000000001042f0000002001200039000000400010043f0000000000020435000000400400043d000000800140003900000080030000390000000000310435000000600140003900000004030000290000000000310435000000400140003900000003030000290000000000310435000000200140003900000000030004110000000000310435000002380100004100000000001404350000000001020433000400000004001d000000a0034000390000000000130435000000000001004b000006760000613d00000004030000290000000004320049000000c0023000390000000003210019000000a00440008a000000000524001900000000050504330000000002520436000000000032004b000006710000413d000000000200041400000004030000290000001c033000390000000504000029000000040040008c000006800000c13d000000000103043300000004020000290000000000120435000006b20000013d0000020e0030009c0000020e030080410000004003300210000000a4011000390000020e0010009c0000020e010080410000006001100210000000000131019f0000020e0020009c0000020e02008041000000c002200210000000000112019f0000000502000029083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000004046000290000069d0000613d000000000701034f0000000408000029000000007907043c0000000008980436000000000048004b000006990000c13d000000000005004b000006aa0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f00000000005404350002000000010355000000000003001f000000000003004b00000001022061bf0000000100200190000006b80000613d00000004010000290000000001010433000002390010009c000000390000613d0000024901000041000000000010043f000002410100004100000835000104300000001f0430018f00000234053001980000000402500029000006c20000613d000000000601034f0000000407000029000000006806043c0000000007870436000000000027004b000006be0000c13d000000000004004b000006cf0000613d000000000151034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000000004020000290000020e0020009c0000020e020080410000004002200210000000000121019f000008350001043000000020030000390000000003310436000000004202043400000000002304350000025f062001970000001f0520018f0000004001100039000000000014004b000006ef0000813d000000000006004b000006eb0000613d00000000085400190000000007510019000000200770008a000000200880008a0000000009670019000000000a680019000000000a0a04330000000000a90435000000200660008c000006e50000c13d000000000005004b000007050000613d0000000007010019000006fb0000013d0000000007610019000000000006004b000006f80000613d00000000080400190000000009010019000000008a0804340000000009a90436000000000079004b000006f40000c13d000000000005004b000007050000613d00000000046400190000000305500210000000000607043300000000065601cf000000000656022f00000000040404330000010005500089000000000454022f00000000045401cf000000000464019f0000000000470435000000000421001900000000000404350000001f022000390000025f022001970000000001210019000000000001042d000002600010009c0000071b0000213d000000630010008c0000071b0000a13d00000001030003670000000401300370000000000101043b0000022b0010009c0000071b0000213d0000002402300370000000000202043b0000022b0020009c0000071b0000213d0000004403300370000000000303043b000000000001042d00000000010000190000083500010430000400000000000200000000070300190000022c03000041000000000303041a0000022b04300198000007950000613d000000400a00043d0000008003a00039000000000500041100000000005304350000006003a000390000000000730435000002440300004100000000033a04360000022b062001970000004002a0003900000000006204350000022b0510019700000000005304350000001c01a000390000000002000414000000040040008c000007380000c13d000000000101043300000000001a04350000000102000039000007840000013d000100000005001d000200000006001d000300000007001d00040000000a001d00000000030004160000020e0020009c0000020e02008041000000c002200210000000000003004b0000075b0000613d0000004005100210000002610550009a000002620010009c0000026305008041000000000125001900008009020000390000000005000019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000040a00002900000000046a0019000007720000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b000007560000c13d000007720000013d0000020e0010009c0000020e010080410000004001100210000000000112019f00000264011001c70000000002040019083308290000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000040a00002900000000046a0019000007720000613d000000000701034f00000000080a0019000000007907043c0000000008980436000000000048004b0000076e0000c13d000000000005004b0000077f0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f00020000000103550000000307000029000000020600002900000001050000290000000100200190000007990000613d00000000010a0433000000010010008c000007990000c13d00000000010004140000020e0010009c0000020e01008041000000c00110021000000242011001c70000800d0200003900000004030000390000024704000041083308290000040f0000000100200190000007bb0000613d000000000001042d0000025201000041000000000010043f00000253010000410000083500010430000000020300036700000000010000310000025f041001980000001f0510018f00000000090a001900000000024a0019000007a60000613d000000000603034f0000000007090019000000006806043c0000000007870436000000000027004b000007a20000c13d000000000005004b000007b30000613d000000000343034f0000000304500210000000000502043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f00000000003204350000020e0090009c0000020e0900804100000040029002100000020e0010009c0000020e010080410000006001100210000000000121019f0000083500010430000000000100001900000835000104300000022c01000041000000000101041a0000022b01100198000007c20000613d000000000001042d0000025201000041000000000010043f0000025301000041000008350001043000010000000000020000022c02000041000000000202041a0000022b02200198000008030000613d000000400600043d0000023103000041000000000030043f000000200010043f000000400000043f0000000001000414000000040020008c000007d80000c13d0000001c0100043d000000000010043f00000001020000390000000003000031000007fc0000013d000100000006001d0000020e0010009c0000020e01008041000000c0011002100000022e011001c70833082e0000040f00000060031002700000020e03300197000000200030008c000000200400003900000000040340190000001f0540018f0000002004400190000007ec0000613d000000000601034f0000000007000019000000006806043c0000000007870436000000000047004b000007e80000c13d000000000005004b000007f90000613d000000000641034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000000000003001f000200000001035500000001060000290000000100200190000008070000613d000000200030008c000008070000413d000000400060043f000000000100043d000000000001042d0000025201000041000000000010043f0000025301000041000008350001043000000002020003670000025f043001980000001f0530018f00000000090600190000000001460019000008130000613d000000000602034f0000000007090019000000006806043c0000000007870436000000000017004b0000080f0000c13d000000000005004b000008200000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f00000000002104350000020e0090009c0000020e0900804100000040019002100000020e0030009c0000020e030080410000006002300210000000000112019f0000083500010430000000000001042f0000082c002104210000000102000039000000000001042d0000000002000019000000000001042d00000831002104230000000102000039000000000001042d0000000002000019000000000001042d0000083300000432000008340001042e00000835000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000000000000000003602298b8c10b01231ffffffffffffffffffffffff00000000000000000000000000000000000000000000000200000000000000000000000000000040000001000000000000000000000000000000000000000000000000000000000000000000000000006cef16e50000000000000000000000000000000000000000000000000000000097e5311b00000000000000000000000000000000000000000000000000000000b88d4fdd00000000000000000000000000000000000000000000000000000000b88d4fde00000000000000000000000000000000000000000000000000000000c87b56dd00000000000000000000000000000000000000000000000000000000e985e9c50000000000000000000000000000000000000000000000000000000097e5311c00000000000000000000000000000000000000000000000000000000a22cb465000000000000000000000000000000000000000000000000000000008da5cb5a000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000095d89b41000000000000000000000000000000000000000000000000000000006cef16e60000000000000000000000000000000000000000000000000000000070a082310000000000000000000000000000000000000000000000000000000018160ddc000000000000000000000000000000000000000000000000000000002435987800000000000000000000000000000000000000000000000000000000243598790000000000000000000000000000000000000000000000000000000042842e0e000000000000000000000000000000000000000000000000000000006352211e0000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000081812fb00000000000000000000000000000000000000000000000000000000081812fc00000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000001ffc9a70000000000000000000000000000000000000000000000000000000006fdde03000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000003602298b8c10b012300000000000000000000000000000000000000000000000000000000062fb246d00000000000000000000000000000000000000440000001c000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000020000000800000000000000000000000000000000000000000000000000000000000000000000000002d8a746e00000000000000000000000000000000000000000000000000000000cb30b46000000000000000000000000000000000000000240000001c000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000000000000000000000000000000000ffffffffffffffff1806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000150b7a02150b7a020000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f6916ddd00000000000000000000000000000000000000640000001c0000000000000000020000000000000000000000000000000000002000000040000000000000000017307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000000000003602298b8c10b0123200000000000000000000000000000000000000000000000000000000f5b100ea00000000000000000000000000000000000000040000001c000000000000000002000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e000000000000000000000000000000000000000000000000000000000e5eb36c802000000000000000000000000000000000000840000009c000000000000000000000000000000000000000000000000000000840000009c0000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef000000000000000000000000000000000000000000000000ffffffffffffffe000000000000000000000000000000000000000000000000000000000d1a57ed64e487b7100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000000000000000000000c016aa5200000000000000000000000000000000000000000000000000000000e2c7928100000000000000000000000000000000000000000000000000000000d10b6e0c02000000000000000000000000000000000000640000001c00000000000000008c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9250000000000000000000000000000000000000000000000000000000027ef54955b2a47ae00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000080ac58cd000000000000000000000000000000000000000000000000000000005b5e139f000000000000000000000000000000000000000000000000000000000f4599e500000000000000000000000000000000000000000000000000000000144027d300000000000000000000000000000000000000000000000000000000263c69d6c59ec47a00000000000000000000000000000000000000000000000000000000bf656a4600000000000000000000000000000000000000000000000000000000363cb31200000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffff3c10b94e00000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe07ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffdffffffffffffffffffffffffffffffffffff7c00000000000000000000000000000000000000000000000000000000000000000000000000000001000000000200000000000000000000000000000000000084ffffffff0000000000000000000000000000000000000000000000000000008400000000000000000000000000000000000000000000000000000000000000000000000000000000000000009c1077b0ed8f06f7dfab9eac4aed8443e8e1da7e2fde362ec7f45510da59991a
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.