ETH Price: $3,397.02 (+6.56%)
Gas: 19 Gwei

Token

PunksShapeshifter (PUNKS)
 

Overview

Max Total Supply

10,000 PUNKS

Holders

102

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
punk4722.eth
Balance
0 PUNKS
0xb01e39a4965475047016544931f4b05b905b7059
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ShapeShifter

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 10 : ShapeShifter.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.16;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "./interfaces/ICryptoPunksMarket.sol";

/**
 * @title ShapeShifter
 * @dev The other Shape--
 *   If shape it might be called that shape had none
 *  Distinguishable in member, joint, or limb;
 *  Or substance might be called that shadow seemed,
 *  For each seemed either--black it stood as Night,
 *  Fierce as ten Furies, terrible as Hell
 */
contract ShapeShifter is Ownable, ERC165, IERC721, IERC721Metadata {
    using Strings for uint256;

    string public name;

    string public symbol;

    address public tokenAddress;

    string public baseTokenURI;

    uint256 public _totalSupply;

    /// @notice all hail the king
    bool public isPunks;

    mapping(address => bool) public minters;

    string public constant R =
        "For Spirits, when they please, Can either sex assume, or both; so soft And uncompounded is their essence pure, Not tried or manacled with joint or limb, Nor founded on the brittle strength of bones, Like cumbrous flesh; but, in what shape they choose, Dilated or condensed, bright or obscure, Can execute their airy purposes, And works of love or enmity fulfil.";

    /*//////////////////////////////////////////////////////////////
                               CONSTRUCTOR
    //////////////////////////////////////////////////////////////*/

    constructor(
        address _tokenAddress,
        string memory _name,
        string memory _symbol,
        string memory _baseTokenURI
    ) {
        tokenAddress = _tokenAddress;
        name = _name;
        symbol = _symbol;
        baseTokenURI = _baseTokenURI;
    }

    /*//////////////////////////////////////////////////////////////
                         METADATA LOGIC
    //////////////////////////////////////////////////////////////*/

    function tokenURI(uint256 tokenId) public view returns (string memory) {
        return string(abi.encodePacked(baseTokenURI, tokenId.toString()));
    }

    function totalSupply() public view returns (uint256) {
        if (_totalSupply == 0) {
            return IERC721Enumerable(tokenAddress).totalSupply();
        } else {
            return _totalSupply;
        }
    }

    /*//////////////////////////////////////////////////////////////
                      CONTRACT OWNER FUNCTIONS
    //////////////////////////////////////////////////////////////*/

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

    function setTotalSupply(uint256 _newTotalSupply) public onlyOwner {
        _totalSupply = _newTotalSupply;
    }

    function setIsPunks(bool _newIsPunks) public onlyOwner {
        isPunks = _newIsPunks;
    }

    function setIsMinter(address minter, bool _newIsMinter) public onlyOwner {
        minters[minter] = _newIsMinter;
    }

    /*//////////////////////////////////////////////////////////////
                      ERC721 BALANCE/OWNER STORAGE
    //////////////////////////////////////////////////////////////*/

    function ownerOf(uint256 id) public view returns (address owner) {
        return
            isPunks
                ? ICryptoPunksMarket(tokenAddress).punkIndexToAddress(id)
                : IERC721(tokenAddress).ownerOf(id);
    }

    function balanceOf(address owner) public view virtual returns (uint256) {
        return IERC721(tokenAddress).balanceOf(owner);
    }

    /*//////////////////////////////////////////////////////////////
                         ERC721 APPROVAL STORAGE
    //////////////////////////////////////////////////////////////*/

    function getApproved(uint256 tokenId)
        public
        view
        returns (address operator)
    {
        return address(0);
    }

    function isApprovedForAll(address owner, address operator)
        public
        view
        returns (bool)
    {
        return false;
    }

    /*//////////////////////////////////////////////////////////////
                              ERC721 LOGIC
    //////////////////////////////////////////////////////////////*/

    function mint(address receiver, uint256 tokenId) public {
        require(minters[msg.sender], "not a minter");
        emit Transfer(address(0), receiver, tokenId);
    }

    function mintBulk(address receiver, uint256[] memory tokenIds) public {
        require(minters[msg.sender], "not a minter");
        for (uint256 i = 0; i < tokenIds.length; i++) {
            emit Transfer(address(0), receiver, tokenIds[i]);
        }
    }

    function approve(address spender, uint256 id) public {
        require(false, "WONT APPROVE");
    }

    function setApprovalForAll(address operator, bool approved) public {
        require(false, "WONT APPROVE");
    }

    function transferFrom(
        address from,
        address to,
        uint256 id
    ) public {
        require(ownerOf(id) == to, "not owner");
        emit Transfer(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public {
        transferFrom(from, to, id);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public {
        transferFrom(from, to, id);
    }

    /*//////////////////////////////////////////////////////////////
                              ERC165 LOGIC
    //////////////////////////////////////////////////////////////*/

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

File 2 of 10 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

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

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

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

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

File 3 of 10 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 4 of 10 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 5 of 10 : IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "../../utils/introspection/IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

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

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);
}

File 6 of 10 : IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 7 of 10 : IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 8 of 10 : ICryptoPunksMarket.sol
interface ICryptoPunksMarket {
    function punkIndexToAddress(uint256 index) external view returns (address);
}

File 9 of 10 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 10 of 10 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

Settings
{
  "remappings": [
    "@ensdomains/=node_modules/@ensdomains/",
    "@openzeppelin/=node_modules/@openzeppelin/",
    "ds-test/=lib/forge-std/lib/ds-test/src/",
    "forge-std/=lib/forge-std/src/",
    "hardhat-deploy/=node_modules/hardhat-deploy/",
    "hardhat/=node_modules/hardhat/",
    "solmate/=lib/solmate/src/"
  ],
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "metadata": {
    "bytecodeHash": "none"
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "evmVersion": "london",
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_tokenAddress","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_baseTokenURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"R","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":"spender","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"operator","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPunks","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"mintBulk","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minters","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":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"minter","type":"address"},{"internalType":"bool","name":"_newIsMinter","type":"bool"}],"name":"setIsMinter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_newIsPunks","type":"bool"}],"name":"setIsPunks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTotalSupply","type":"uint256"}],"name":"setTotalSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200182f3803806200182f8339810160408190526200003491620001a6565b6200003f3362000091565b600380546001600160a01b0319166001600160a01b0386161790556001620000688482620002e7565b506002620000778382620002e7565b506004620000868282620002e7565b5050505050620003b3565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200010957600080fd5b81516001600160401b0380821115620001265762000126620000e1565b604051601f8301601f19908116603f01168101908282118183101715620001515762000151620000e1565b816040528381526020925086838588010111156200016e57600080fd5b600091505b8382101562000192578582018301518183018401529082019062000173565b600093810190920192909252949350505050565b60008060008060808587031215620001bd57600080fd5b84516001600160a01b0381168114620001d557600080fd5b60208601519094506001600160401b0380821115620001f357600080fd5b6200020188838901620000f7565b945060408701519150808211156200021857600080fd5b6200022688838901620000f7565b935060608701519150808211156200023d57600080fd5b506200024c87828801620000f7565b91505092959194509250565b600181811c908216806200026d57607f821691505b6020821081036200028e57634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002e257600081815260208120601f850160051c81016020861015620002bd5750805b601f850160051c820191505b81811015620002de57828155600101620002c9565b5050505b505050565b81516001600160401b03811115620003035762000303620000e1565b6200031b8162000314845462000258565b8462000294565b602080601f8311600181146200035357600084156200033a5750858301515b600019600386901b1c1916600185901b178555620002de565b600085815260208120601f198616915b82811015620003845788860151825594840194600190910190840162000363565b5085821015620003a35787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61146c80620003c36000396000f3fe608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063c87b56dd116100a2578063e985e9c511610071578063e985e9c5146103a1578063f2fde38b146103b7578063f46eccc4146103ca578063f7ea7a3d146103ed57600080fd5b8063c87b56dd14610366578063ce4098c914610379578063d547cfb714610386578063d6efa3b71461038e57600080fd5b806395d89b41116100de57806395d89b411461032a5780639d76ea5814610332578063a22cb46514610345578063b88d4fde1461035357600080fd5b806370a08231146102fe578063715018a6146103115780638da5cb5b1461031957600080fd5b806340c10f19116101715780634980e1be1161014b5780634980e1be146102bd57806355f804b3146102c55780636352211e146102d857806366eb399f146102eb57600080fd5b806340c10f191461028457806342842e0e1461029757806344a9945e146102aa57600080fd5b8063095ea7b3116101ad578063095ea7b31461023d57806318160ddd1461025257806323b872dd146102685780633eaaf86b1461027b57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004610c34565b610400565b60405190151581526020015b60405180910390f35b610204610452565b6040516101f39190610c89565b61022561021f366004610cbc565b50600090565b6040516001600160a01b0390911681526020016101f3565b61025061024b366004610cea565b6104e0565b005b61025a610520565b6040519081526020016101f3565b610250610276366004610d16565b6105af565b61025a60055481565b610250610292366004610cea565b61064a565b6102506102a5366004610d16565b6106d4565b6102506102b8366004610d9e565b6106e4565b6102046107ab565b6102506102d3366004610e59565b6107ca565b6102256102e6366004610cbc565b6107de565b6102506102f9366004610f03565b6108ca565b61025a61030c366004610f38565b6108fd565b61025061096c565b6000546001600160a01b0316610225565b610204610980565b600354610225906001600160a01b031681565b61025061024b366004610f03565b610250610361366004610f55565b61098d565b610204610374366004610cbc565b61099f565b6006546101e79060ff1681565b6102046109d3565b61025061039c366004610ff4565b6109e0565b6101e76103af36600461100f565b600092915050565b6102506103c5366004610f38565b6109fb565b6101e76103d8366004610f38565b60076020526000908152604090205460ff1681565b6102506103fb366004610cbc565b610a74565b60006001600160e01b031982166380ac58cd60e01b148061043157506001600160e01b03198216635b5e139f60e01b145b8061044c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001805461045f90611048565b80601f016020809104026020016040519081016040528092919081815260200182805461048b90611048565b80156104d85780601f106104ad576101008083540402835291602001916104d8565b820191906000526020600020905b8154815290600101906020018083116104bb57829003601f168201915b505050505081565b60405162461bcd60e51b815260206004820152600c60248201526b574f4e5420415050524f564560a01b60448201526064015b60405180910390fd5b5050565b60006005546000036105a857600360009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611082565b905090565b5060055490565b816001600160a01b03166105c2826107de565b6001600160a01b0316146106045760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610513565b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b3360009081526007602052604090205460ff166106985760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610513565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6106df8383836105af565b505050565b3360009081526007602052604090205460ff166107325760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610513565b60005b81518110156106df578181815181106107505761075061109b565b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806107a3816110c7565b915050610735565b604051806101a0016040528061016981526020016112f7610169913981565b6107d2610a81565b600461051c828261112e565b60065460009060ff1661085d576003546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa158015610834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085891906111ee565b61044c565b600354604051630b02f02d60e31b8152600481018490526001600160a01b0390911690635817816890602401602060405180830381865afa1580156108a6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c91906111ee565b6108d2610a81565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6003546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a0823190602401602060405180830381865afa158015610948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c9190611082565b610974610a81565b61097e6000610adb565b565b6002805461045f90611048565b6109988585856105af565b5050505050565b606060046109ac83610b2b565b6040516020016109bd92919061120b565b6040516020818303038152906040529050919050565b6004805461045f90611048565b6109e8610a81565b6006805460ff1916911515919091179055565b610a03610a81565b6001600160a01b038116610a685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610513565b610a7181610adb565b50565b610a7c610a81565b600555565b6000546001600160a01b0316331461097e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610513565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606081600003610b525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b7c5780610b66816110c7565b9150610b759050600a836112a8565b9150610b56565b60008167ffffffffffffffff811115610b9757610b97610d57565b6040519080825280601f01601f191660200182016040528015610bc1576020820181803683370190505b5090505b8415610c2c57610bd66001836112bc565b9150610be3600a866112cf565b610bee9060306112e3565b60f81b818381518110610c0357610c0361109b565b60200101906001600160f81b031916908160001a905350610c25600a866112a8565b9450610bc5565b949350505050565b600060208284031215610c4657600080fd5b81356001600160e01b031981168114610c5e57600080fd5b9392505050565b60005b83811015610c80578181015183820152602001610c68565b50506000910152565b6020815260008251806020840152610ca8816040850160208701610c65565b601f01601f19169190910160400192915050565b600060208284031215610cce57600080fd5b5035919050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215610cfd57600080fd5b8235610d0881610cd5565b946020939093013593505050565b600080600060608486031215610d2b57600080fd5b8335610d3681610cd5565b92506020840135610d4681610cd5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610d9657610d96610d57565b604052919050565b60008060408385031215610db157600080fd5b8235610dbc81610cd5565b915060208381013567ffffffffffffffff80821115610dda57600080fd5b818601915086601f830112610dee57600080fd5b813581811115610e0057610e00610d57565b8060051b9150610e11848301610d6d565b8181529183018401918481019089841115610e2b57600080fd5b938501935b83851015610e4957843582529385019390850190610e30565b8096505050505050509250929050565b60006020808385031215610e6c57600080fd5b823567ffffffffffffffff80821115610e8457600080fd5b818501915085601f830112610e9857600080fd5b813581811115610eaa57610eaa610d57565b610ebc601f8201601f19168501610d6d565b91508082528684828501011115610ed257600080fd5b8084840185840137600090820190930192909252509392505050565b80358015158114610efe57600080fd5b919050565b60008060408385031215610f1657600080fd5b8235610f2181610cd5565b9150610f2f60208401610eee565b90509250929050565b600060208284031215610f4a57600080fd5b8135610c5e81610cd5565b600080600080600060808688031215610f6d57600080fd5b8535610f7881610cd5565b94506020860135610f8881610cd5565b935060408601359250606086013567ffffffffffffffff80821115610fac57600080fd5b818801915088601f830112610fc057600080fd5b813581811115610fcf57600080fd5b896020828501011115610fe157600080fd5b9699959850939650602001949392505050565b60006020828403121561100657600080fd5b610c5e82610eee565b6000806040838503121561102257600080fd5b823561102d81610cd5565b9150602083013561103d81610cd5565b809150509250929050565b600181811c9082168061105c57607f821691505b60208210810361107c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561109457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016110d9576110d96110b1565b5060010190565b601f8211156106df57600081815260208120601f850160051c810160208610156111075750805b601f850160051c820191505b8181101561112657828155600101611113565b505050505050565b815167ffffffffffffffff81111561114857611148610d57565b61115c816111568454611048565b846110e0565b602080601f83116001811461119157600084156111795750858301515b600019600386901b1c1916600185901b178555611126565b600085815260208120601f198616915b828110156111c0578886015182559484019460019091019084016111a1565b50858210156111de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561120057600080fd5b8151610c5e81610cd5565b600080845461121981611048565b60018281168015611231576001811461124657611275565b60ff1984168752821515830287019450611275565b8860005260208060002060005b8581101561126c5781548a820152908401908201611253565b50505082870194505b505050508351611289818360208801610c65565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826112b7576112b7611292565b500490565b8181038181111561044c5761044c6110b1565b6000826112de576112de611292565b500690565b8082018082111561044c5761044c6110b156fe466f7220537069726974732c207768656e207468657920706c656173652c2043616e206569746865722073657820617373756d652c206f7220626f74683b20736f20736f667420416e6420756e636f6d706f756e64656420697320746865697220657373656e636520707572652c204e6f74207472696564206f72206d616e61636c65642077697468206a6f696e74206f72206c696d622c204e6f7220666f756e646564206f6e207468652062726974746c6520737472656e677468206f6620626f6e65732c204c696b652063756d62726f757320666c6573683b206275742c20696e207768617420736861706520746865792063686f6f73652c2044696c61746564206f7220636f6e64656e7365642c20627269676874206f72206f6273637572652c2043616e2065786563757465207468656972206169727920707572706f7365732c20416e6420776f726b73206f66206c6f7665206f7220656e6d6974792066756c66696c2ea164736f6c6343000811000a000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001150756e6b73536861706573686966746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006168747470733a2f2f706f7274616c2e666f72676f7474656e72756e65732e636f6d2f6170692f736861706573686966742f3078623437653363643833376464663865346335376630356437306162383635646536653139336262622f646174612f00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101cf5760003560e01c806370a0823111610104578063c87b56dd116100a2578063e985e9c511610071578063e985e9c5146103a1578063f2fde38b146103b7578063f46eccc4146103ca578063f7ea7a3d146103ed57600080fd5b8063c87b56dd14610366578063ce4098c914610379578063d547cfb714610386578063d6efa3b71461038e57600080fd5b806395d89b41116100de57806395d89b411461032a5780639d76ea5814610332578063a22cb46514610345578063b88d4fde1461035357600080fd5b806370a08231146102fe578063715018a6146103115780638da5cb5b1461031957600080fd5b806340c10f19116101715780634980e1be1161014b5780634980e1be146102bd57806355f804b3146102c55780636352211e146102d857806366eb399f146102eb57600080fd5b806340c10f191461028457806342842e0e1461029757806344a9945e146102aa57600080fd5b8063095ea7b3116101ad578063095ea7b31461023d57806318160ddd1461025257806323b872dd146102685780633eaaf86b1461027b57600080fd5b806301ffc9a7146101d457806306fdde03146101fc578063081812fc14610211575b600080fd5b6101e76101e2366004610c34565b610400565b60405190151581526020015b60405180910390f35b610204610452565b6040516101f39190610c89565b61022561021f366004610cbc565b50600090565b6040516001600160a01b0390911681526020016101f3565b61025061024b366004610cea565b6104e0565b005b61025a610520565b6040519081526020016101f3565b610250610276366004610d16565b6105af565b61025a60055481565b610250610292366004610cea565b61064a565b6102506102a5366004610d16565b6106d4565b6102506102b8366004610d9e565b6106e4565b6102046107ab565b6102506102d3366004610e59565b6107ca565b6102256102e6366004610cbc565b6107de565b6102506102f9366004610f03565b6108ca565b61025a61030c366004610f38565b6108fd565b61025061096c565b6000546001600160a01b0316610225565b610204610980565b600354610225906001600160a01b031681565b61025061024b366004610f03565b610250610361366004610f55565b61098d565b610204610374366004610cbc565b61099f565b6006546101e79060ff1681565b6102046109d3565b61025061039c366004610ff4565b6109e0565b6101e76103af36600461100f565b600092915050565b6102506103c5366004610f38565b6109fb565b6101e76103d8366004610f38565b60076020526000908152604090205460ff1681565b6102506103fb366004610cbc565b610a74565b60006001600160e01b031982166380ac58cd60e01b148061043157506001600160e01b03198216635b5e139f60e01b145b8061044c57506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001805461045f90611048565b80601f016020809104026020016040519081016040528092919081815260200182805461048b90611048565b80156104d85780601f106104ad576101008083540402835291602001916104d8565b820191906000526020600020905b8154815290600101906020018083116104bb57829003601f168201915b505050505081565b60405162461bcd60e51b815260206004820152600c60248201526b574f4e5420415050524f564560a01b60448201526064015b60405180910390fd5b5050565b60006005546000036105a857600360009054906101000a90046001600160a01b03166001600160a01b03166318160ddd6040518163ffffffff1660e01b8152600401602060405180830381865afa15801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611082565b905090565b5060055490565b816001600160a01b03166105c2826107de565b6001600160a01b0316146106045760405162461bcd60e51b81526020600482015260096024820152683737ba1037bbb732b960b91b6044820152606401610513565b80826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b3360009081526007602052604090205460ff166106985760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610513565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6106df8383836105af565b505050565b3360009081526007602052604090205460ff166107325760405162461bcd60e51b815260206004820152600c60248201526b3737ba10309036b4b73a32b960a11b6044820152606401610513565b60005b81518110156106df578181815181106107505761075061109b565b6020026020010151836001600160a01b031660006001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4806107a3816110c7565b915050610735565b604051806101a0016040528061016981526020016112f7610169913981565b6107d2610a81565b600461051c828261112e565b60065460009060ff1661085d576003546040516331a9108f60e11b8152600481018490526001600160a01b0390911690636352211e90602401602060405180830381865afa158015610834573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061085891906111ee565b61044c565b600354604051630b02f02d60e31b8152600481018490526001600160a01b0390911690635817816890602401602060405180830381865afa1580156108a6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c91906111ee565b6108d2610a81565b6001600160a01b03919091166000908152600760205260409020805460ff1916911515919091179055565b6003546040516370a0823160e01b81526001600160a01b03838116600483015260009216906370a0823190602401602060405180830381865afa158015610948573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061044c9190611082565b610974610a81565b61097e6000610adb565b565b6002805461045f90611048565b6109988585856105af565b5050505050565b606060046109ac83610b2b565b6040516020016109bd92919061120b565b6040516020818303038152906040529050919050565b6004805461045f90611048565b6109e8610a81565b6006805460ff1916911515919091179055565b610a03610a81565b6001600160a01b038116610a685760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610513565b610a7181610adb565b50565b610a7c610a81565b600555565b6000546001600160a01b0316331461097e5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610513565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b606081600003610b525750506040805180820190915260018152600360fc1b602082015290565b8160005b8115610b7c5780610b66816110c7565b9150610b759050600a836112a8565b9150610b56565b60008167ffffffffffffffff811115610b9757610b97610d57565b6040519080825280601f01601f191660200182016040528015610bc1576020820181803683370190505b5090505b8415610c2c57610bd66001836112bc565b9150610be3600a866112cf565b610bee9060306112e3565b60f81b818381518110610c0357610c0361109b565b60200101906001600160f81b031916908160001a905350610c25600a866112a8565b9450610bc5565b949350505050565b600060208284031215610c4657600080fd5b81356001600160e01b031981168114610c5e57600080fd5b9392505050565b60005b83811015610c80578181015183820152602001610c68565b50506000910152565b6020815260008251806020840152610ca8816040850160208701610c65565b601f01601f19169190910160400192915050565b600060208284031215610cce57600080fd5b5035919050565b6001600160a01b0381168114610a7157600080fd5b60008060408385031215610cfd57600080fd5b8235610d0881610cd5565b946020939093013593505050565b600080600060608486031215610d2b57600080fd5b8335610d3681610cd5565b92506020840135610d4681610cd5565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610d9657610d96610d57565b604052919050565b60008060408385031215610db157600080fd5b8235610dbc81610cd5565b915060208381013567ffffffffffffffff80821115610dda57600080fd5b818601915086601f830112610dee57600080fd5b813581811115610e0057610e00610d57565b8060051b9150610e11848301610d6d565b8181529183018401918481019089841115610e2b57600080fd5b938501935b83851015610e4957843582529385019390850190610e30565b8096505050505050509250929050565b60006020808385031215610e6c57600080fd5b823567ffffffffffffffff80821115610e8457600080fd5b818501915085601f830112610e9857600080fd5b813581811115610eaa57610eaa610d57565b610ebc601f8201601f19168501610d6d565b91508082528684828501011115610ed257600080fd5b8084840185840137600090820190930192909252509392505050565b80358015158114610efe57600080fd5b919050565b60008060408385031215610f1657600080fd5b8235610f2181610cd5565b9150610f2f60208401610eee565b90509250929050565b600060208284031215610f4a57600080fd5b8135610c5e81610cd5565b600080600080600060808688031215610f6d57600080fd5b8535610f7881610cd5565b94506020860135610f8881610cd5565b935060408601359250606086013567ffffffffffffffff80821115610fac57600080fd5b818801915088601f830112610fc057600080fd5b813581811115610fcf57600080fd5b896020828501011115610fe157600080fd5b9699959850939650602001949392505050565b60006020828403121561100657600080fd5b610c5e82610eee565b6000806040838503121561102257600080fd5b823561102d81610cd5565b9150602083013561103d81610cd5565b809150509250929050565b600181811c9082168061105c57607f821691505b60208210810361107c57634e487b7160e01b600052602260045260246000fd5b50919050565b60006020828403121561109457600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600182016110d9576110d96110b1565b5060010190565b601f8211156106df57600081815260208120601f850160051c810160208610156111075750805b601f850160051c820191505b8181101561112657828155600101611113565b505050505050565b815167ffffffffffffffff81111561114857611148610d57565b61115c816111568454611048565b846110e0565b602080601f83116001811461119157600084156111795750858301515b600019600386901b1c1916600185901b178555611126565b600085815260208120601f198616915b828110156111c0578886015182559484019460019091019084016111a1565b50858210156111de5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60006020828403121561120057600080fd5b8151610c5e81610cd5565b600080845461121981611048565b60018281168015611231576001811461124657611275565b60ff1984168752821515830287019450611275565b8860005260208060002060005b8581101561126c5781548a820152908401908201611253565b50505082870194505b505050508351611289818360208801610c65565b01949350505050565b634e487b7160e01b600052601260045260246000fd5b6000826112b7576112b7611292565b500490565b8181038181111561044c5761044c6110b1565b6000826112de576112de611292565b500690565b8082018082111561044c5761044c6110b156fe466f7220537069726974732c207768656e207468657920706c656173652c2043616e206569746865722073657820617373756d652c206f7220626f74683b20736f20736f667420416e6420756e636f6d706f756e64656420697320746865697220657373656e636520707572652c204e6f74207472696564206f72206d616e61636c65642077697468206a6f696e74206f72206c696d622c204e6f7220666f756e646564206f6e207468652062726974746c6520737472656e677468206f6620626f6e65732c204c696b652063756d62726f757320666c6573683b206275742c20696e207768617420736861706520746865792063686f6f73652c2044696c61746564206f7220636f6e64656e7365642c20627269676874206f72206f6273637572652c2043616e2065786563757465207468656972206169727920707572706f7365732c20416e6420776f726b73206f66206c6f7665206f7220656e6d6974792066756c66696c2ea164736f6c6343000811000a

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

000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001150756e6b73536861706573686966746572000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000550554e4b53000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006168747470733a2f2f706f7274616c2e666f72676f7474656e72756e65732e636f6d2f6170692f736861706573686966742f3078623437653363643833376464663865346335376630356437306162383635646536653139336262622f646174612f00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenAddress (address): 0xb47e3cd837dDF8e4c57F05d70Ab865de6e193BBB
Arg [1] : _name (string): PunksShapeshifter
Arg [2] : _symbol (string): PUNKS
Arg [3] : _baseTokenURI (string): https://portal.forgottenrunes.com/api/shapeshift/0xb47e3cd837ddf8e4c57f05d70ab865de6e193bbb/data/

-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 000000000000000000000000b47e3cd837ddf8e4c57f05d70ab865de6e193bbb
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000011
Arg [5] : 50756e6b73536861706573686966746572000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 50554e4b53000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000061
Arg [9] : 68747470733a2f2f706f7274616c2e666f72676f7474656e72756e65732e636f
Arg [10] : 6d2f6170692f736861706573686966742f307862343765336364383337646466
Arg [11] : 3865346335376630356437306162383635646536653139336262622f64617461
Arg [12] : 2f00000000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.