ETH Price: $3,395.88 (-1.17%)
Gas: 1 Gwei

Token

NFT Classic (NFT)
 

Overview

Max Total Supply

66 NFT

Holders

52

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
captainricky.eth
Balance
1 NFT
0xc51215c8ccb1ebb4303fc549f93b10a28d8bd7d6
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:
ERC721Classic

Compiler Version
v0.5.5+commit.47a71e8f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2019-05-21
*/

pragma solidity ^0.5.0;

/**
 * @title IERC165
 * @dev https://eips.ethereum.org/EIPS/eip-165
 */
interface IERC165 {
    /**
     * @notice Query if a contract implements an interface
     * @param interfaceId The interface identifier, as specified in ERC-165
     * @dev Interface identification is specified in ERC-165. This function
     * uses less than 30,000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}



/**
 * @title ERC721 Non-Fungible Token Standard basic interface
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721 is IERC165 {
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    function balanceOf(address owner) public view returns (uint256 balance);
    function ownerOf(uint256 tokenId) public view returns (address owner);

    function approve(address to, uint256 tokenId) public;
    function getApproved(uint256 tokenId) public view returns (address operator);

    function setApprovalForAll(address operator, bool _approved) public;
    function isApprovedForAll(address owner, address operator) public view returns (bool);

    function transferFrom(address from, address to, uint256 tokenId) public;
    function safeTransferFrom(address from, address to, uint256 tokenId) public;

    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public;
}


/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
contract IERC721Receiver {
    /**
     * @notice Handle the receipt of an NFT
     * @dev The ERC721 smart contract calls this function on the recipient
     * after a `safeTransfer`. This function MUST return the function selector,
     * otherwise the caller will revert the transaction. The selector to be
     * returned can be obtained as `this.onERC721Received.selector`. This
     * function MAY throw to revert and reject the transfer.
     * Note: the ERC721 contract address is always the message sender.
     * @param operator The address which called `safeTransferFrom` function
     * @param from The address which previously owned the token
     * @param tokenId The NFT identifier which is being transferred
     * @param data Additional data with no specified format
     * @return bytes4 `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
     */
    function onERC721Received(address operator, address from, uint256 tokenId, bytes memory data)
    public returns (bytes4);
}


/**
 * @title SafeMath
 * @dev Unsigned math operations with safety checks that revert on error.
 */
library SafeMath {
    /**
     * @dev Multiplies two unsigned integers, reverts on overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
        // benefit is lost if 'b' is also tested.
        // See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
        if (a == 0) {
            return 0;
        }

        uint256 c = a * b;
        require(c / a == b);

        return c;
    }

    /**
     * @dev Integer division of two unsigned integers truncating the quotient, reverts on division by zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0);
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Subtracts two unsigned integers, reverts on overflow (i.e. if subtrahend is greater than minuend).
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b <= a);
        uint256 c = a - b;

        return c;
    }

    /**
     * @dev Adds two unsigned integers, reverts on overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        uint256 c = a + b;
        require(c >= a);

        return c;
    }

    /**
     * @dev Divides two unsigned integers and returns the remainder (unsigned integer modulo),
     * reverts when dividing by zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        require(b != 0);
        return a % b;
    }
}


/**
 * Utility library of inline functions on addresses
 */
library Address {
    /**
     * Returns whether the target address is a contract
     * @dev This function will return false if invoked during the constructor of a contract,
     * as the code is not actually created until after the constructor finishes.
     * @param account address of the account to check
     * @return whether the target address is a contract
     */
    function isContract(address account) internal view returns (bool) {
        uint256 size;
        // XXX Currently there is no better way to check if there is a contract in an address
        // than to check the size of the code at that address.
        // See https://ethereum.stackexchange.com/a/14016/36603
        // for more details about how this works.
        // TODO Check this again before the Serenity release, because all addresses will be
        // contracts then.
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }
}



/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 * Since it is not possible to overflow a 256 bit integer with increments of one, `increment` can skip the SafeMath
 * overflow check, thereby saving gas. This does assume however correct usage, in that the underlying `_value` is never
 * directly accessed.
 */
library Counters {
    using SafeMath for uint256;

    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        counter._value += 1;
    }

    function decrement(Counter storage counter) internal {
        counter._value = counter._value.sub(1);
    }
}



/**
 * @title ERC165
 * @author Matt Condon (@shrugs)
 * @dev Implements ERC165 using a lookup table.
 */
contract ERC165 is IERC165 {
    /*
     * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7
     */
    bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7;

    /**
     * @dev Mapping of interface ids to whether or not it's supported.
     */
    mapping(bytes4 => bool) private _supportedInterfaces;

    /**
     * @dev A contract implementing SupportsInterfaceWithLookup
     * implements ERC165 itself.
     */
    constructor () internal {
        _registerInterface(_INTERFACE_ID_ERC165);
    }

    /**
     * @dev Implement supportsInterface(bytes4) using a lookup table.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool) {
        return _supportedInterfaces[interfaceId];
    }

    /**
     * @dev Internal method for registering an interface.
     */
    function _registerInterface(bytes4 interfaceId) internal {
        require(interfaceId != 0xffffffff);
        _supportedInterfaces[interfaceId] = true;
    }
}








/**
 * @title ERC721 Non-Fungible Token Standard basic implementation
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721 is ERC165, IERC721 {
    using SafeMath for uint256;
    using Address for address;
    using Counters for Counters.Counter;

    // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`
    // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector`
    bytes4 private constant _ERC721_RECEIVED = 0x150b7a02;

    // Mapping from token ID to owner
    mapping (uint256 => address) private _tokenOwner;

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

    // Mapping from owner to number of owned token
    mapping (address => Counters.Counter) private _ownedTokensCount;

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

    /*
     *     bytes4(keccak256('balanceOf(address)')) == 0x70a08231
     *     bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e
     *     bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3
     *     bytes4(keccak256('getApproved(uint256)')) == 0x081812fc
     *     bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465
     *     bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c
     *     bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e
     *     bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde
     *    
     *     => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^
     *        0xa22cb465 ^ 0xe985e9c ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd
     */
    bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd;

    constructor () public {
        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721);
    }

    /**
     * @dev Gets the balance of the specified address.
     * @param owner address to query the balance of
     * @return uint256 representing the amount owned by the passed address
     */
    function balanceOf(address owner) public view returns (uint256) {
        require(owner != address(0));
        return _ownedTokensCount[owner].current();
    }

    /**
     * @dev Gets the owner of the specified token ID.
     * @param tokenId uint256 ID of the token to query the owner of
     * @return address currently marked as the owner of the given token ID
     */
    function ownerOf(uint256 tokenId) public view returns (address) {
        address owner = _tokenOwner[tokenId];
        require(owner != address(0));
        return owner;
    }

    /**
     * @dev Approves another address to transfer the given token ID
     * The zero address indicates there is no approved address.
     * There can only be one approved address per token at a given time.
     * Can only be called by the token owner or an approved operator.
     * @param to address to be approved for the given token ID
     * @param tokenId uint256 ID of the token to be approved
     */
    function approve(address to, uint256 tokenId) public {
        address owner = ownerOf(tokenId);
        require(to != owner);
        require(msg.sender == owner || isApprovedForAll(owner, msg.sender));

        _tokenApprovals[tokenId] = to;
        emit Approval(owner, to, tokenId);
    }

    /**
     * @dev Gets the approved address for a token ID, or zero if no address set
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to query the approval of
     * @return address currently approved for the given token ID
     */
    function getApproved(uint256 tokenId) public view returns (address) {
        require(_exists(tokenId));
        return _tokenApprovals[tokenId];
    }

    /**
     * @dev Sets or unsets the approval of a given operator
     * An operator is allowed to transfer all tokens of the sender on their behalf.
     * @param to operator address to set the approval
     * @param approved representing the status of the approval to be set
     */
    function setApprovalForAll(address to, bool approved) public {
        require(to != msg.sender);
        _operatorApprovals[msg.sender][to] = approved;
        emit ApprovalForAll(msg.sender, to, approved);
    }

    /**
     * @dev Tells whether an operator is approved by a given owner.
     * @param owner owner address which you want to query the approval of
     * @param operator operator address which you want to query the approval of
     * @return bool whether the given operator is approved by the given owner
     */
    function isApprovedForAll(address owner, address operator) public view returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev Transfers the ownership of a given token ID to another address.
     * Usage of this method is discouraged, use `safeTransferFrom` whenever possible.
     * Requires the msg.sender to be the owner, approved, or operator.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function transferFrom(address from, address to, uint256 tokenId) public {
        require(_isApprovedOrOwner(msg.sender, tokenId));

        _transferFrom(from, to, tokenId);
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function safeTransferFrom(address from, address to, uint256 tokenId) public {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev Safely transfers the ownership of a given token ID to another address
     * If the target address is a contract, it must implement `onERC721Received`,
     * which is called upon a safe transfer, and return the magic value
     * `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))`; otherwise,
     * the transfer is reverted.
     * Requires the msg.sender to be the owner, approved, or operator
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes data to send along with a safe transfer check
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public {
        transferFrom(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data));
    }

    /**
     * @dev Returns whether the specified token exists.
     * @param tokenId uint256 ID of the token to query the existence of
     * @return bool whether the token exists
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        address owner = _tokenOwner[tokenId];
        return owner != address(0);
    }

    /**
     * @dev Returns whether the given spender can transfer a given token ID.
     * @param spender address of the spender to query
     * @param tokenId uint256 ID of the token to be transferred
     * @return bool whether the msg.sender is approved for the given token ID,
     * is an operator of the owner, or is the owner of the token
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view returns (bool) {
        address owner = ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to The address that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        require(to != address(0));
        require(!_exists(tokenId));

        _tokenOwner[tokenId] = to;
        _ownedTokensCount[to].increment();

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        require(ownerOf(tokenId) == owner);

        _clearApproval(tokenId);

        _ownedTokensCount[owner].decrement();
        _tokenOwner[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(uint256 tokenId) internal {
        _burn(ownerOf(tokenId), tokenId);
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        require(ownerOf(tokenId) == from);
        require(to != address(0));

        _clearApproval(tokenId);

        _ownedTokensCount[from].decrement();
        _ownedTokensCount[to].increment();

        _tokenOwner[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Internal function to invoke `onERC721Received` on a target address.
     * The call is not executed if the target address is not a contract.
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        internal returns (bool)
    {
        if (!to.isContract()) {
            return true;
        }

        bytes4 retval = IERC721Receiver(to).onERC721Received(msg.sender, from, tokenId, _data);
        return (retval == _ERC721_RECEIVED);
    }

    /**
     * @dev Private function to clear current approval of a given token ID.
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _clearApproval(uint256 tokenId) private {
        if (_tokenApprovals[tokenId] != address(0)) {
            _tokenApprovals[tokenId] = address(0);
        }
    }
}



/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Enumerable is IERC721 {
    function totalSupply() public view returns (uint256);
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256 tokenId);

    function tokenByIndex(uint256 index) public view returns (uint256);
}





/**
 * @title ERC-721 Non-Fungible Token with optional enumeration extension logic
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Enumerable is ERC165, ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => uint256[]) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

    /* 
     *     bytes4(keccak256('totalSupply()')) == 0x18160ddd
     *     bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59
     *     bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7
     *      
     *     => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63  
     */
    bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63;

    /**
     * @dev Constructor function.
     */
    constructor () public {
        // register the supported interface to conform to ERC721Enumerable via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE);
    }

    /**
     * @dev Gets the token ID at a given index of the tokens list of the requested owner.
     * @param owner address owning the tokens list to be accessed
     * @param index uint256 representing the index to be accessed of the requested tokens list
     * @return uint256 token ID at the given index of the tokens list owned by the requested address
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view returns (uint256) {
        require(index < balanceOf(owner));
        return _ownedTokens[owner][index];
    }

    /**
     * @dev Gets the total amount of tokens stored by the contract.
     * @return uint256 representing the total amount of tokens
     */
    function totalSupply() public view returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev Gets the token ID at a given index of all the tokens in this contract
     * Reverts if the index is greater or equal to the total number of tokens.
     * @param index uint256 representing the index to be accessed of the tokens list
     * @return uint256 token ID at the given index of the tokens list
     */
    function tokenByIndex(uint256 index) public view returns (uint256) {
        require(index < totalSupply());
        return _allTokens[index];
    }

    /**
     * @dev Internal function to transfer ownership of a given token ID to another address.
     * As opposed to transferFrom, this imposes no restrictions on msg.sender.
     * @param from current owner of the token
     * @param to address to receive the ownership of the given token ID
     * @param tokenId uint256 ID of the token to be transferred
     */
    function _transferFrom(address from, address to, uint256 tokenId) internal {
        super._transferFrom(from, to, tokenId);

        _removeTokenFromOwnerEnumeration(from, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);
    }

    /**
     * @dev Internal function to mint a new token.
     * Reverts if the given token ID already exists.
     * @param to address the beneficiary that will own the minted token
     * @param tokenId uint256 ID of the token to be minted
     */
    function _mint(address to, uint256 tokenId) internal {
        super._mint(to, tokenId);

        _addTokenToOwnerEnumeration(to, tokenId);

        _addTokenToAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        _removeTokenFromOwnerEnumeration(owner, tokenId);
        // Since tokenId will be deleted, we can clear its slot in _ownedTokensIndex to trigger a gas refund
        _ownedTokensIndex[tokenId] = 0;

        _removeTokenFromAllTokensEnumeration(tokenId);
    }

    /**
     * @dev Gets the list of token IDs of the requested owner.
     * @param owner address owning the tokens
     * @return uint256[] List of token IDs owned by the requested address
     */
    function _tokensOfOwner(address owner) internal view returns (uint256[] storage) {
        return _ownedTokens[owner];
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        _ownedTokensIndex[tokenId] = _ownedTokens[to].length;
        _ownedTokens[to].push(tokenId);
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the _ownedTokensIndex mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _ownedTokens[from].length.sub(1);
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        _ownedTokens[from].length--;

        // Note that _ownedTokensIndex[tokenId] hasn't been cleared: it still points to the old slot (now occupied by
        // lastTokenId, or just over the end of the array if the token was the last one).
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length.sub(1);
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        _allTokens.length--;
        _allTokensIndex[tokenId] = 0;
    }
}



/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
contract IERC721Metadata is IERC721 {
    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function tokenURI(uint256 tokenId) external view returns (string memory);
}





contract ERC721Metadata is ERC165, ERC721, IERC721Metadata {
    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Optional mapping for token URIs
    mapping(uint256 => string) private _tokenURIs;

    /*
     *     bytes4(keccak256('name()')) == 0x06fdde03
     *     bytes4(keccak256('symbol()')) == 0x95d89b41
     *     bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd
     *     
     *     => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f
     */
    bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f;

    /**
     * @dev Constructor function
     */
    constructor (string memory name, string memory symbol) public {
        _name = name;
        _symbol = symbol;

        // register the supported interfaces to conform to ERC721 via ERC165
        _registerInterface(_INTERFACE_ID_ERC721_METADATA);
    }

    /**
     * @dev Gets the token name.
     * @return string representing the token name
     */
    function name() external view returns (string memory) {
        return _name;
    }

    /**
     * @dev Gets the token symbol.
     * @return string representing the token symbol
     */
    function symbol() external view returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns an URI for a given token ID.
     * Throws if the token ID does not exist. May return an empty string.
     * @param tokenId uint256 ID of the token to query
     */
    function tokenURI(uint256 tokenId) external view returns (string memory) {
        require(_exists(tokenId));
        return _tokenURIs[tokenId];
    }

    /**
     * @dev Internal function to set the token URI for a given token.
     * Reverts if the token ID does not exist.
     * @param tokenId uint256 ID of the token to set its URI
     * @param uri string URI to assign
     */
    function _setTokenURI(uint256 tokenId, string memory uri) internal {
        require(_exists(tokenId));
        _tokenURIs[tokenId] = uri;
    }

    /**
     * @dev Internal function to burn a specific token.
     * Reverts if the token does not exist.
     * Deprecated, use _burn(uint256) instead.
     * @param owner owner of the token to burn
     * @param tokenId uint256 ID of the token being burned by the msg.sender
     */
    function _burn(address owner, uint256 tokenId) internal {
        super._burn(owner, tokenId);

        // Clear metadata (if any)
        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}





/**
 * @title Full ERC721 Token
 * This implementation includes all the required and some optional functionality of the ERC721 standard
 * Moreover, it includes approve all functionality using operator terminology
 * @dev see https://eips.ethereum.org/EIPS/eip-721
 */
contract ERC721Full is ERC721, ERC721Enumerable, ERC721Metadata {
    constructor (string memory name, string memory symbol) public ERC721Metadata(name, symbol) {
        // solhint-disable-previous-line no-empty-blocks
    }
}


/**
 * @title Roles
 * @dev Library for managing addresses assigned to a Role.
 */
library Roles {
    struct Role {
        mapping (address => bool) bearer;
    }

    /**
     * @dev Give an account access to this role.
     */
    function add(Role storage role, address account) internal {
        require(!has(role, account));

        role.bearer[account] = true;
    }

    /**
     * @dev Remove an account's access to this role.
     */
    function remove(Role storage role, address account) internal {
        require(has(role, account));

        role.bearer[account] = false;
    }

    /**
     * @dev Check if an account has this role.
     * @return bool
     */
    function has(Role storage role, address account) internal view returns (bool) {
        require(account != address(0));
        return role.bearer[account];
    }
}



contract Governable {
    using Roles for Roles.Role;

    event GovernorAdded(address indexed account);
    event GovernorRemoved(address indexed account);

    Roles.Role private _governors;

    constructor () internal {
        _addGovernor(msg.sender);
    }

    modifier onlyGovernor() {
        require(isGovernor(msg.sender));
        _;
    }

    function isGovernor(address account) public view returns (bool) {
        return _governors.has(account);
    }

    function addGovernor(address account) public onlyGovernor {
        _addGovernor(account);
    }

    function renounceGovernor() public {
        _removeGovernor(msg.sender);
    }

    function _addGovernor(address account) internal {
        _governors.add(account);
        emit GovernorAdded(account);
    }

    function _removeGovernor(address account) internal {
        _governors.remove(account);
        emit GovernorRemoved(account);
    }
}




/**
 * @title ERC721MetadataMintable
 * @dev ERC721 minting logic with metadata.
 */
contract ERC721MetadataMintable is ERC721, ERC721Metadata, Governable {
    /**
     * @dev Function to mint tokens.
     * @param to The address that will receive the minted tokens.
     * @param tokenId The token id to mint.
     * @param tokenURI The token URI of the minted token.
     * @return A boolean that indicates if the operation was successful.
     */
    function mint(address to, uint256 tokenId, string memory tokenURI)
        public
        onlyGovernor
        returns (bool)
    {
        _mint(to, tokenId);
        _setTokenURI(tokenId, tokenURI);
        return true;
    }
}


/**
 * @title Ownable
 * @dev The Ownable contract has an owner address, and provides basic authorization control
 * functions, this simplifies the implementation of "user permissions".
 */
contract Ownable {
    address private _owner;

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

    /**
     * @dev The Ownable constructor sets the original `owner` of the contract to the sender
     * account.
     */
    constructor () internal {
        _owner = msg.sender;
        emit OwnershipTransferred(address(0), _owner);
    }

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

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

    /**
     * @return true if `msg.sender` is the owner of the contract.
     */
    function isOwner() public view returns (bool) {
        return msg.sender == _owner;
    }

    /**
     * @dev Allows the current owner to relinquish control of the contract.
     * It will not be possible to call the functions with the `onlyOwner`
     * modifier anymore.
     * @notice Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Allows the current owner to transfer control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function transferOwnership(address newOwner) public onlyOwner {
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers control of the contract to a newOwner.
     * @param newOwner The address to transfer ownership to.
     */
    function _transferOwnership(address newOwner) internal {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}






contract ERC721Classic is
    ERC721Full,
    ERC721MetadataMintable,
    Ownable
{
    constructor(string memory name, string memory symbol)
        public
        ERC721Full(name, symbol)
        Ownable()
    {} // solium-disable-line
}

Contract Security Audit

Contract ABI

[{"constant":true,"inputs":[{"name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"account","type":"address"}],"name":"addGovernor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"},{"name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"tokenId","type":"uint256"},{"name":"tokenURI","type":"string"}],"name":"mint","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"renounceGovernor","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"name":"account","type":"address"}],"name":"isGovernor","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"inputs":[{"name":"name","type":"string"},{"name":"symbol","type":"string"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"name":"previousOwner","type":"address"},{"indexed":true,"name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"GovernorAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"account","type":"address"}],"name":"GovernorRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"approved","type":"address"},{"indexed":true,"name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"operator","type":"address"},{"indexed":false,"name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"}]

60806040523480156200001157600080fd5b50604051620018b1380380620018b1833981018060405260408110156200003757600080fd5b8101908080516401000000008111156200005057600080fd5b820160208101848111156200006457600080fd5b81516401000000008111828201871017156200007f57600080fd5b505092919060200180516401000000008111156200009c57600080fd5b82016020810184811115620000b057600080fd5b8151640100000000811182820187101715620000cb57600080fd5b505092919050505081818181620000ef6301ffc9a760e01b620001cc60201b60201c565b620001076380ac58cd60e01b620001cc60201b60201c565b6200011f63780e9d6360e01b620001cc60201b60201c565b81516200013490600990602085019062000305565b5080516200014a90600a90602084019062000305565b5062000163635b5e139f60e01b620001cc60201b60201c565b5050505062000178336200023960201b60201c565b600d80546001600160a01b0319163317908190556040516001600160a01b0391909116906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35050620003aa565b7fffffffff000000000000000000000000000000000000000000000000000000008082161415620001fc57600080fd5b7fffffffff00000000000000000000000000000000000000000000000000000000166000908152602081905260409020805460ff19166001179055565b6200025481600c6200028b60201b620012201790919060201c565b6040516001600160a01b038216907fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b590600090a250565b6200029d8282620002cd60201b60201c565b15620002a857600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b60006001600160a01b0382161515620002e557600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200034857805160ff191683800117855562000378565b8280016001018555821562000378579182015b82811115620003785782518255916020019190600101906200035b565b50620003869291506200038a565b5090565b620003a791905b8082111562000386576000815560010162000391565b90565b6114f780620003ba6000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146104c8578063d3fc9864146104e5578063e026049c146105a0578063e43581b8146105a8578063e985e9c5146105ce578063f2fde38b146105fc57610158565b8063715018a6146103b45780638da5cb5b146103bc5780638f32d59b146103c457806395d89b41146103cc578063a22cb465146103d4578063b88d4fde1461040257610158565b80632f745c59116101155780632f745c59146102cc5780633c4a25d0146102f857806342842e0e1461031e5780634f6ccce7146103545780636352211e1461037157806370a082311461038e57610158565b806301ffc9a71461015d57806306fdde0314610198578063081812fc14610215578063095ea7b31461024e57806318160ddd1461027c57806323b872dd14610296575b600080fd5b6101846004803603602081101561017357600080fd5b50356001600160e01b031916610622565b604080519115158252519081900360200190f35b6101a0610641565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102326004803603602081101561022b57600080fd5b50356106d8565b604080516001600160a01b039092168252519081900360200190f35b61027a6004803603604081101561026457600080fd5b506001600160a01b03813516906020013561070a565b005b6102846107b3565b60408051918252519081900360200190f35b61027a600480360360608110156102ac57600080fd5b506001600160a01b038135811691602081013590911690604001356107b9565b610284600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356107de565b61027a6004803603602081101561030e57600080fd5b50356001600160a01b031661082b565b61027a6004803603606081101561033457600080fd5b506001600160a01b0381358116916020810135909116906040013561084b565b6102846004803603602081101561036a57600080fd5b5035610866565b6102326004803603602081101561038757600080fd5b503561089b565b610284600480360360208110156103a457600080fd5b50356001600160a01b03166108c5565b61027a6108fd565b6102326109a5565b6101846109b4565b6101a06109c5565b61027a600480360360408110156103ea57600080fd5b506001600160a01b0381351690602001351515610a26565b61027a6004803603608081101561041857600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561045357600080fd5b82018360208201111561046557600080fd5b8035906020019184600183028401116401000000008311171561048757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610aaa945050505050565b6101a0600480360360208110156104de57600080fd5b5035610ad2565b610184600480360360608110156104fb57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561052b57600080fd5b82018360208201111561053d57600080fd5b8035906020019184600183028401116401000000008311171561055f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b87945050505050565b61027a610bbb565b610184600480360360208110156105be57600080fd5b50356001600160a01b0316610bc6565b610184600480360360408110156105e457600080fd5b506001600160a01b0381358116916020013516610bd9565b61027a6004803603602081101561061257600080fd5b50356001600160a01b0316610c07565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cd5780601f106106a2576101008083540402835291602001916106cd565b820191906000526020600020905b8154815290600101906020018083116106b057829003601f168201915b505050505090505b90565b60006106e382610c6e565b15156106ee57600080fd5b506000908152600260205260409020546001600160a01b031690565b60006107158261089b565b90506001600160a01b03838116908216141561073057600080fd5b336001600160a01b038216148061074c575061074c8133610bd9565b151561075757600080fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6107c33382610c8b565b15156107ce57600080fd5b6107d9838383610cea565b505050565b60006107e9836108c5565b82106107f457600080fd5b6001600160a01b038316600090815260056020526040902080548390811061081857fe5b9060005260206000200154905092915050565b61083433610bc6565b151561083f57600080fd5b61084881610d09565b50565b6107d983838360405180602001604052806000815250610aaa565b60006108706107b3565b821061087b57600080fd5b600780548390811061088957fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168015156108bf57600080fd5b92915050565b60006001600160a01b03821615156108dc57600080fd5b6001600160a01b03821660009081526003602052604090206108bf90610d51565b6109056109b4565b151561095b5760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546001600160a01b0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cd5780601f106106a2576101008083540402835291602001916106cd565b6001600160a01b038216331415610a3c57600080fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610ab58484846107b9565b610ac184848484610d55565b1515610acc57600080fd5b50505050565b6060610add82610c6e565b1515610ae857600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b50505050509050919050565b6000610b9233610bc6565b1515610b9d57600080fd5b610ba78484610e90565b610bb18383610eb1565b5060019392505050565b610bc433610ee4565b565b60006108bf600c8363ffffffff610f2c16565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610c0f6109b4565b1515610c655760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61084881610f63565b6000908152600160205260409020546001600160a01b0316151590565b600080610c978361089b565b9050806001600160a01b0316846001600160a01b03161480610cd25750836001600160a01b0316610cc7846106d8565b6001600160a01b0316145b80610ce25750610ce28185610bd9565b949350505050565b610cf5838383611009565b610cff83826110eb565b6107d982826111e2565b610d1a600c8263ffffffff61122016565b6040516001600160a01b038216907fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b590600090a250565b5490565b6000610d69846001600160a01b0316611259565b1515610d7757506001610ce2565b604051600160e11b630a85bd0102815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015610df4578181015183820152602001610ddc565b50505050905090810190601f168015610e215780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610e4357600080fd5b505af1158015610e57573d6000803e3d6000fd5b505050506040513d6020811015610e6d57600080fd5b50516001600160e01b031916600160e11b630a85bd010214915050949350505050565b610e9a828261125f565b610ea482826111e2565b610ead81611302565b5050565b610eba82610c6e565b1515610ec557600080fd5b6000828152600b6020908152604090912082516107d9928401906113ed565b610ef5600c8263ffffffff61134616565b6040516001600160a01b038216907f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b90600090a250565b60006001600160a01b0382161515610f4357600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381161515610fad57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806114a66026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661101c8261089b565b6001600160a01b03161461102f57600080fd5b6001600160a01b038216151561104457600080fd5b61104d8161137d565b6001600160a01b038316600090815260036020526040902061106e906113b8565b6001600160a01b038216600090815260036020526040902061108f906113cf565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461111590600163ffffffff6113d816565b6000838152600660205260409020549091508082146111b2576001600160a01b038416600090815260056020526040812080548490811061115257fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110151561119257fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906111db90600019830161146b565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b61122a8282610f2c565b1561123457600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3b151590565b6001600160a01b038216151561127457600080fd5b61127d81610c6e565b1561128757600080fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600390915290206112c6906113cf565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6113508282610f2c565b151561135b57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561084857600090815260026020526040902080546001600160a01b0319169055565b80546113cb90600163ffffffff6113d816565b9055565b80546001019055565b6000828211156113e757600080fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061142e57805160ff191683800117855561145b565b8280016001018555821561145b579182015b8281111561145b578251825591602001919060010190611440565b5061146792915061148b565b5090565b8154818355818111156107d9576000838152602090206107d99181019083015b6106d591905b80821115611467576000815560010161149156fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a165627a7a7230582062358f4b614ae78a0d701df48e2615a036e0cb7091b43ac9a8ff33d12c512ff6002900000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4e465420436c617373696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c8063715018a6116100c3578063c87b56dd1161007c578063c87b56dd146104c8578063d3fc9864146104e5578063e026049c146105a0578063e43581b8146105a8578063e985e9c5146105ce578063f2fde38b146105fc57610158565b8063715018a6146103b45780638da5cb5b146103bc5780638f32d59b146103c457806395d89b41146103cc578063a22cb465146103d4578063b88d4fde1461040257610158565b80632f745c59116101155780632f745c59146102cc5780633c4a25d0146102f857806342842e0e1461031e5780634f6ccce7146103545780636352211e1461037157806370a082311461038e57610158565b806301ffc9a71461015d57806306fdde0314610198578063081812fc14610215578063095ea7b31461024e57806318160ddd1461027c57806323b872dd14610296575b600080fd5b6101846004803603602081101561017357600080fd5b50356001600160e01b031916610622565b604080519115158252519081900360200190f35b6101a0610641565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101da5781810151838201526020016101c2565b50505050905090810190601f1680156102075780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6102326004803603602081101561022b57600080fd5b50356106d8565b604080516001600160a01b039092168252519081900360200190f35b61027a6004803603604081101561026457600080fd5b506001600160a01b03813516906020013561070a565b005b6102846107b3565b60408051918252519081900360200190f35b61027a600480360360608110156102ac57600080fd5b506001600160a01b038135811691602081013590911690604001356107b9565b610284600480360360408110156102e257600080fd5b506001600160a01b0381351690602001356107de565b61027a6004803603602081101561030e57600080fd5b50356001600160a01b031661082b565b61027a6004803603606081101561033457600080fd5b506001600160a01b0381358116916020810135909116906040013561084b565b6102846004803603602081101561036a57600080fd5b5035610866565b6102326004803603602081101561038757600080fd5b503561089b565b610284600480360360208110156103a457600080fd5b50356001600160a01b03166108c5565b61027a6108fd565b6102326109a5565b6101846109b4565b6101a06109c5565b61027a600480360360408110156103ea57600080fd5b506001600160a01b0381351690602001351515610a26565b61027a6004803603608081101561041857600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561045357600080fd5b82018360208201111561046557600080fd5b8035906020019184600183028401116401000000008311171561048757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610aaa945050505050565b6101a0600480360360208110156104de57600080fd5b5035610ad2565b610184600480360360608110156104fb57600080fd5b6001600160a01b038235169160208101359181019060608101604082013564010000000081111561052b57600080fd5b82018360208201111561053d57600080fd5b8035906020019184600183028401116401000000008311171561055f57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610b87945050505050565b61027a610bbb565b610184600480360360208110156105be57600080fd5b50356001600160a01b0316610bc6565b610184600480360360408110156105e457600080fd5b506001600160a01b0381358116916020013516610bd9565b61027a6004803603602081101561061257600080fd5b50356001600160a01b0316610c07565b6001600160e01b03191660009081526020819052604090205460ff1690565b60098054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cd5780601f106106a2576101008083540402835291602001916106cd565b820191906000526020600020905b8154815290600101906020018083116106b057829003601f168201915b505050505090505b90565b60006106e382610c6e565b15156106ee57600080fd5b506000908152600260205260409020546001600160a01b031690565b60006107158261089b565b90506001600160a01b03838116908216141561073057600080fd5b336001600160a01b038216148061074c575061074c8133610bd9565b151561075757600080fd5b60008281526002602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60075490565b6107c33382610c8b565b15156107ce57600080fd5b6107d9838383610cea565b505050565b60006107e9836108c5565b82106107f457600080fd5b6001600160a01b038316600090815260056020526040902080548390811061081857fe5b9060005260206000200154905092915050565b61083433610bc6565b151561083f57600080fd5b61084881610d09565b50565b6107d983838360405180602001604052806000815250610aaa565b60006108706107b3565b821061087b57600080fd5b600780548390811061088957fe5b90600052602060002001549050919050565b6000818152600160205260408120546001600160a01b03168015156108bf57600080fd5b92915050565b60006001600160a01b03821615156108dc57600080fd5b6001600160a01b03821660009081526003602052604090206108bf90610d51565b6109056109b4565b151561095b5760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600d546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80546001600160a01b0319169055565b600d546001600160a01b031690565b600d546001600160a01b0316331490565b600a8054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156106cd5780601f106106a2576101008083540402835291602001916106cd565b6001600160a01b038216331415610a3c57600080fd5b3360008181526004602090815260408083206001600160a01b03871680855290835292819020805460ff1916861515908117909155815190815290519293927f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31929181900390910190a35050565b610ab58484846107b9565b610ac184848484610d55565b1515610acc57600080fd5b50505050565b6060610add82610c6e565b1515610ae857600080fd5b6000828152600b602090815260409182902080548351601f600260001961010060018616150201909316929092049182018490048402810184019094528084529091830182828015610b7b5780601f10610b5057610100808354040283529160200191610b7b565b820191906000526020600020905b815481529060010190602001808311610b5e57829003601f168201915b50505050509050919050565b6000610b9233610bc6565b1515610b9d57600080fd5b610ba78484610e90565b610bb18383610eb1565b5060019392505050565b610bc433610ee4565b565b60006108bf600c8363ffffffff610f2c16565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b610c0f6109b4565b1515610c655760408051600160e51b62461bcd02815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b61084881610f63565b6000908152600160205260409020546001600160a01b0316151590565b600080610c978361089b565b9050806001600160a01b0316846001600160a01b03161480610cd25750836001600160a01b0316610cc7846106d8565b6001600160a01b0316145b80610ce25750610ce28185610bd9565b949350505050565b610cf5838383611009565b610cff83826110eb565b6107d982826111e2565b610d1a600c8263ffffffff61122016565b6040516001600160a01b038216907fdc5a48d79e2e147530ff63ecdbed5a5a66adb9d5cf339384d5d076da197c40b590600090a250565b5490565b6000610d69846001600160a01b0316611259565b1515610d7757506001610ce2565b604051600160e11b630a85bd0102815233600482018181526001600160a01b03888116602485015260448401879052608060648501908152865160848601528651600095928a169463150b7a029490938c938b938b939260a4019060208501908083838e5b83811015610df4578181015183820152602001610ddc565b50505050905090810190601f168015610e215780820380516001836020036101000a031916815260200191505b5095505050505050602060405180830381600087803b158015610e4357600080fd5b505af1158015610e57573d6000803e3d6000fd5b505050506040513d6020811015610e6d57600080fd5b50516001600160e01b031916600160e11b630a85bd010214915050949350505050565b610e9a828261125f565b610ea482826111e2565b610ead81611302565b5050565b610eba82610c6e565b1515610ec557600080fd5b6000828152600b6020908152604090912082516107d9928401906113ed565b610ef5600c8263ffffffff61134616565b6040516001600160a01b038216907f1ebe834e73d60a5fec822c1e1727d34bc79f2ad977ed504581cc1822fe20fb5b90600090a250565b60006001600160a01b0382161515610f4357600080fd5b506001600160a01b03166000908152602091909152604090205460ff1690565b6001600160a01b0381161515610fad57604051600160e51b62461bcd0281526004018080602001828103825260268152602001806114a66026913960400191505060405180910390fd5b600d546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b826001600160a01b031661101c8261089b565b6001600160a01b03161461102f57600080fd5b6001600160a01b038216151561104457600080fd5b61104d8161137d565b6001600160a01b038316600090815260036020526040902061106e906113b8565b6001600160a01b038216600090815260036020526040902061108f906113cf565b60008181526001602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6001600160a01b03821660009081526005602052604081205461111590600163ffffffff6113d816565b6000838152600660205260409020549091508082146111b2576001600160a01b038416600090815260056020526040812080548490811061115257fe5b906000526020600020015490508060056000876001600160a01b03166001600160a01b031681526020019081526020016000208381548110151561119257fe5b600091825260208083209091019290925591825260069052604090208190555b6001600160a01b03841660009081526005602052604090208054906111db90600019830161146b565b5050505050565b6001600160a01b0390911660009081526005602081815260408084208054868652600684529185208290559282526001810183559183529091200155565b61122a8282610f2c565b1561123457600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19166001179055565b3b151590565b6001600160a01b038216151561127457600080fd5b61127d81610c6e565b1561128757600080fd5b600081815260016020908152604080832080546001600160a01b0319166001600160a01b0387169081179091558352600390915290206112c6906113cf565b60405181906001600160a01b038416906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b600780546000838152600860205260408120829055600182018355919091527fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c6880155565b6113508282610f2c565b151561135b57600080fd5b6001600160a01b0316600090815260209190915260409020805460ff19169055565b6000818152600260205260409020546001600160a01b03161561084857600090815260026020526040902080546001600160a01b0319169055565b80546113cb90600163ffffffff6113d816565b9055565b80546001019055565b6000828211156113e757600080fd5b50900390565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061142e57805160ff191683800117855561145b565b8280016001018555821561145b579182015b8281111561145b578251825591602001919060010190611440565b5061146792915061148b565b5090565b8154818355818111156107d9576000838152602090206107d99181019083015b6106d591905b80821115611467576000815560010161149156fe4f776e61626c653a206e6577206f776e657220697320746865207a65726f2061646472657373a165627a7a7230582062358f4b614ae78a0d701df48e2615a036e0cb7091b43ac9a8ff33d12c512ff60029

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000b4e465420436c617373696300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034e46540000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): NFT Classic
Arg [1] : symbol (string): NFT

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [3] : 4e465420436c6173736963000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 4e46540000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

37668:249:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37668:249:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7953:135;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;7953:135:0;-1:-1:-1;;;;;;7953:135:0;;:::i;:::-;;;;;;;;;;;;;;;;;;30666:85;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;30666:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12247:154;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12247:154:0;;:::i;:::-;;;;-1:-1:-1;;;;;12247:154:0;;;;;;;;;;;;;;11655:299;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;11655:299:0;;;;;;;;:::i;:::-;;22550:96;;;:::i;:::-;;;;;;;;;;;;;;;;13843:184;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13843:184:0;;;;;;;;;;;;;;;;;:::i;22206:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;22206:185:0;;;;;;;;:::i;34173:98::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34173:98:0;-1:-1:-1;;;;;34173:98:0;;:::i;14673:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;14673:134:0;;;;;;;;;;;;;;;;;:::i;22992:151::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22992:151:0;;:::i;11043:181::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11043:181:0;;:::i;10654:163::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10654:163:0;-1:-1:-1;;;;;10654:163:0;;:::i;36846:140::-;;;:::i;36020:79::-;;;:::i;36391:92::-;;;:::i;30866:89::-;;;:::i;12702:217::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;12702:217:0;;;;;;;;;;:::i;15526:214::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;15526:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;15526:214:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;15526:214:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;15526:214:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;15526:214:0;;-1:-1:-1;15526:214:0;;-1:-1:-1;;;;;15526:214:0:i;31162:154::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31162:154:0;;:::i;35120:235::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;35120:235:0;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;35120:235:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;35120:235:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;35120:235:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;35120:235:0;;-1:-1:-1;35120:235:0;;-1:-1:-1;;;;;35120:235:0:i;34279:81::-;;;:::i;34052:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;34052:113:0;-1:-1:-1;;;;;34052:113:0;;:::i;13249:147::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;13249:147:0;;;;;;;;;;:::i;37163:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37163:109:0;-1:-1:-1;;;;;37163:109:0;;:::i;7953:135::-;-1:-1:-1;;;;;;8047:33:0;8023:4;8047:33;;;;;;;;;;;;;;7953:135::o;30666:85::-;30738:5;30731:12;;;;;;;;-1:-1:-1;;30731:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30705:13;;30731:12;;30738:5;;30731:12;;30738:5;30731:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30666:85;;:::o;12247:154::-;12306:7;12334:16;12342:7;12334;:16::i;:::-;12326:25;;;;;;;;-1:-1:-1;12369:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;12369:24:0;;12247:154::o;11655:299::-;11719:13;11735:16;11743:7;11735;:16::i;:::-;11719:32;-1:-1:-1;;;;;;11770:11:0;;;;;;;;11762:20;;;;;;11801:10;-1:-1:-1;;;;;11801:19:0;;;;:58;;;11824:35;11841:5;11848:10;11824:16;:35::i;:::-;11793:67;;;;;;;;11873:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11873:29:0;-1:-1:-1;;;;;11873:29:0;;;;;;;;;11918:28;;11873:24;;11918:28;;;;;;;11655:299;;;:::o;22550:96::-;22621:10;:17;22550:96;:::o;13843:184::-;13934:39;13953:10;13965:7;13934:18;:39::i;:::-;13926:48;;;;;;;;13987:32;14001:4;14007:2;14011:7;13987:13;:32::i;:::-;13843:184;;;:::o;22206:185::-;22286:7;22322:16;22332:5;22322:9;:16::i;:::-;22314:24;;22306:33;;;;;;-1:-1:-1;;;;;22357:19:0;;;;;;:12;:19;;;;;:26;;22377:5;;22357:26;;;;;;;;;;;;;;22350:33;;22206:185;;;;:::o;34173:98::-;34001:22;34012:10;34001;:22::i;:::-;33993:31;;;;;;;;34242:21;34255:7;34242:12;:21::i;:::-;34173:98;:::o;14673:134::-;14760:39;14777:4;14783:2;14787:7;14760:39;;;;;;;;;;;;:16;:39::i;22992:151::-;23050:7;23086:13;:11;:13::i;:::-;23078:21;;23070:30;;;;;;23118:10;:17;;23129:5;;23118:17;;;;;;;;;;;;;;23111:24;;22992:151;;;:::o;11043:181::-;11098:7;11134:20;;;:11;:20;;;;;;-1:-1:-1;;;;;11134:20:0;11173:19;;;11165:28;;;;;;11211:5;11043:181;-1:-1:-1;;11043:181:0:o;10654:163::-;10709:7;-1:-1:-1;;;;;10737:19:0;;;;10729:28;;;;;;-1:-1:-1;;;;;10775:24:0;;;;;;:17;:24;;;;;:34;;:32;:34::i;36846:140::-;36232:9;:7;:9::i;:::-;36224:54;;;;;;;-1:-1:-1;;;;;36224:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36929:6;;36908:40;;36945:1;;-1:-1:-1;;;;;36929:6:0;;36908:40;;36945:1;;36908:40;36959:6;:19;;-1:-1:-1;;;;;;36959:19:0;;;36846:140::o;36020:79::-;36085:6;;-1:-1:-1;;;;;36085:6:0;36020:79;:::o;36391:92::-;36469:6;;-1:-1:-1;;;;;36469:6:0;36455:10;:20;;36391:92::o;30866:89::-;30940:7;30933:14;;;;;;;;-1:-1:-1;;30933:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30907:13;;30933:14;;30940:7;;30933:14;;30940:7;30933:14;;;;;;;;;;;;;;;;;;;;;;;;12702:217;-1:-1:-1;;;;;12782:16:0;;12788:10;12782:16;;12774:25;;;;;;12829:10;12810:30;;;;:18;:30;;;;;;;;-1:-1:-1;;;;;12810:34:0;;;;;;;;;;;;:45;;-1:-1:-1;;12810:45:0;;;;;;;;;;12871:40;;;;;;;12810:34;;12829:10;12871:40;;;;;;;;;;;12702:217;;:::o;15526:214::-;15633:31;15646:4;15652:2;15656:7;15633:12;:31::i;:::-;15683:48;15706:4;15712:2;15716:7;15725:5;15683:22;:48::i;:::-;15675:57;;;;;;;;15526:214;;;;:::o;31162:154::-;31220:13;31254:16;31262:7;31254;:16::i;:::-;31246:25;;;;;;;;31289:19;;;;:10;:19;;;;;;;;;31282:26;;;;;;-1:-1:-1;;31282:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31289:19;;31282:26;;31289:19;31282:26;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31162:154;;;:::o;35120:235::-;35243:4;34001:22;34012:10;34001;:22::i;:::-;33993:31;;;;;;;;35265:18;35271:2;35275:7;35265:5;:18::i;:::-;35294:31;35307:7;35316:8;35294:12;:31::i;:::-;-1:-1:-1;35343:4:0;35120:235;;;;;:::o;34279:81::-;34325:27;34341:10;34325:15;:27::i;:::-;34279:81::o;34052:113::-;34110:4;34134:23;:10;34149:7;34134:23;:14;:23;:::i;13249:147::-;-1:-1:-1;;;;;13353:25:0;;;13329:4;13353:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;13249:147::o;37163:109::-;36232:9;:7;:9::i;:::-;36224:54;;;;;;;-1:-1:-1;;;;;36224:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37236:28;37255:8;37236:18;:28::i;15942:155::-;15999:4;16032:20;;;:11;:20;;;;;;-1:-1:-1;;;;;16032:20:0;16070:19;;;15942:155::o;16467:249::-;16552:4;16569:13;16585:16;16593:7;16585;:16::i;:::-;16569:32;;16631:5;-1:-1:-1;;;;;16620:16:0;:7;-1:-1:-1;;;;;16620:16:0;;:51;;;;16664:7;-1:-1:-1;;;;;16640:31:0;:20;16652:7;16640:11;:20::i;:::-;-1:-1:-1;;;;;16640:31:0;;16620:51;:87;;;;16675:32;16692:5;16699:7;16675:16;:32::i;:::-;16612:96;16467:249;-1:-1:-1;;;;16467:249:0:o;23527:245::-;23613:38;23633:4;23639:2;23643:7;23613:19;:38::i;:::-;23664:47;23697:4;23703:7;23664:32;:47::i;:::-;23724:40;23752:2;23756:7;23724:27;:40::i;34368:128::-;34427:23;:10;34442:7;34427:23;:14;:23;:::i;:::-;34466:22;;-1:-1:-1;;;;;34466:22:0;;;;;;;;34368:128;:::o;6866:114::-;6958:14;;6866:114::o;19391:356::-;19513:4;19540:15;:2;-1:-1:-1;;;;;19540:13:0;;:15::i;:::-;19539:16;19535:60;;;-1:-1:-1;19579:4:0;19572:11;;19535:60;19623:70;;-1:-1:-1;;;;;19623:70:0;;19660:10;19623:70;;;;;;-1:-1:-1;;;;;19623:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;19607:13;;19623:36;;;;;;19660:10;;19672:4;;19678:7;;19687:5;;19623:70;;;;;;;;;;;19607:13;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;19623:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19623:70:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19623:70:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19623:70:0;-1:-1:-1;;;;;;19712:26:0;-1:-1:-1;;;;;19712:26:0;;-1:-1:-1;;19391:356:0;;;;;;:::o;24037:202::-;24101:24;24113:2;24117:7;24101:11;:24::i;:::-;24138:40;24166:2;24170:7;24138:27;:40::i;:::-;24191;24223:7;24191:31;:40::i;:::-;24037:202;;:::o;31563:147::-;31649:16;31657:7;31649;:16::i;:::-;31641:25;;;;;;;;31677:19;;;;:10;:19;;;;;;;;:25;;;;;;;;:::i;34504:136::-;34566:26;:10;34584:7;34566:26;:17;:26;:::i;:::-;34608:24;;-1:-1:-1;;;;;34608:24:0;;;;;;;;34504:136;:::o;33501:165::-;33573:4;-1:-1:-1;;;;;33598:21:0;;;;33590:30;;;;;;-1:-1:-1;;;;;;33638:20:0;:11;:20;;;;;;;;;;;;;;;33501:165::o;37422:229::-;-1:-1:-1;;;;;37496:22:0;;;;37488:73;;;;-1:-1:-1;;;;;37488:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37598:6;;37577:38;;-1:-1:-1;;;;;37577:38:0;;;;37598:6;;37577:38;;37598:6;;37577:38;37626:6;:17;;-1:-1:-1;;;;;;37626:17:0;-1:-1:-1;;;;;37626:17:0;;;;;;;;;;37422:229::o;18476:374::-;18590:4;-1:-1:-1;;;;;18570:24:0;:16;18578:7;18570;:16::i;:::-;-1:-1:-1;;;;;18570:24:0;;18562:33;;;;;;-1:-1:-1;;;;;18614:16:0;;;;18606:25;;;;;;18644:23;18659:7;18644:14;:23::i;:::-;-1:-1:-1;;;;;18680:23:0;;;;;;:17;:23;;;;;:35;;:33;:35::i;:::-;-1:-1:-1;;;;;18726:21:0;;;;;;:17;:21;;;;;:33;;:31;:33::i;:::-;18772:20;;;;:11;:20;;;;;;:25;;-1:-1:-1;;;;;;18772:25:0;-1:-1:-1;;;;;18772:25:0;;;;;;;;;18815:27;;18772:20;;18815:27;;;;;;;18476:374;;;:::o;26710:1148::-;-1:-1:-1;;;;;27001:18:0;;26976:22;27001:18;;;:12;:18;;;;;:25;:32;;27031:1;27001:32;:29;:32;:::i;:::-;27044:18;27065:26;;;:17;:26;;;;;;26976:57;;-1:-1:-1;27198:28:0;;;27194:328;;-1:-1:-1;;;;;27265:18:0;;27243:19;27265:18;;;:12;:18;;;;;:34;;27284:14;;27265:34;;;;;;;;;;;;;;27243:56;;27349:11;27316:12;:18;27329:4;-1:-1:-1;;;;;27316:18:0;-1:-1:-1;;;;;27316:18:0;;;;;;;;;;;;27335:10;27316:30;;;;;;;;;;;;;;;;;;;;;:44;;;;27433:30;;;:17;:30;;;;;:43;;;27194:328;-1:-1:-1;;;;;27611:18:0;;;;;;:12;:18;;;;;:27;;;;;-1:-1:-1;;27611:27:0;;;:::i;:::-;;26710:1148;;;;:::o;25534:186::-;-1:-1:-1;;;;;25648:16:0;;;;;;;:12;:16;;;;;;;;:23;;25619:26;;;:17;:26;;;;;:52;;;25682:16;;;39:1:-1;23:18;;45:23;;25682:30:0;;;;;;;;25534:186::o;33033:145::-;33111:18;33115:4;33121:7;33111:3;:18::i;:::-;33110:19;33102:28;;;;;;-1:-1:-1;;;;;33143:20:0;:11;:20;;;;;;;;;;;:27;;-1:-1:-1;;33143:27:0;33166:4;33143:27;;;33033:145::o;5201:627::-;5773:20;5812:8;;;5201:627::o;16969:267::-;-1:-1:-1;;;;;17041:16:0;;;;17033:25;;;;;;17078:16;17086:7;17078;:16::i;:::-;17077:17;17069:26;;;;;;17108:20;;;;:11;:20;;;;;;;;:25;;-1:-1:-1;;;;;;17108:25:0;-1:-1:-1;;;;;17108:25:0;;;;;;;;17144:21;;:17;:21;;;;;:33;;:31;:33::i;:::-;17195;;17220:7;;-1:-1:-1;;;;;17195:33:0;;;17212:1;;17195:33;;17212:1;;17195:33;16969:267;;:::o;25921:164::-;26025:10;:17;;25998:24;;;;:15;:24;;;;;:44;;;39:1:-1;23:18;;45:23;;26053:24:0;;;;;;;25921:164::o;33258:148::-;33338:18;33342:4;33348:7;33338:3;:18::i;:::-;33330:27;;;;;;;;-1:-1:-1;;;;;33370:20:0;33393:5;33370:20;;;;;;;;;;;:28;;-1:-1:-1;;33370:28:0;;;33258:148::o;19915:175::-;20015:1;19979:24;;;:15;:24;;;;;;-1:-1:-1;;;;;19979:24:0;:38;19975:108;;20069:1;20034:24;;;:15;:24;;;;;:37;;-1:-1:-1;;;;;;20034:37:0;;;19915:175::o;7087:110::-;7168:14;;:21;;7187:1;7168:21;:18;:21;:::i;:::-;7151:38;;7087:110::o;6988:91::-;7052:19;;7070:1;7052:19;;;6988:91::o;4070:150::-;4128:7;4156:6;;;;4148:15;;;;;;-1:-1:-1;4186:5:0;;;4070:150::o;37668:249::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37668:249:0;;;-1:-1:-1;37668:249:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;

Swarm Source

bzzr://62358f4b614ae78a0d701df48e2615a036e0cb7091b43ac9a8ff33d12c512ff6
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.