ETH Price: $2,731.60 (-1.22%)

Token

VamPunks (VP)
 

Overview

Max Total Supply

1,072 VP

Holders

320

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
2 VP
0x478644ebb5b2d4542164152ec269b1e6ad122834
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:
VamPunks

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-05-03
*/

// SPDX-License-Identifier: MIT

/**

 ██▒   █▓ ▄▄▄       ███▄ ▄███▓ ██▓███   █    ██  ███▄    █  ██ ▄█▀  ██████ 
▓██░   █▒▒████▄    ▓██▒▀█▀ ██▒▓██░  ██▒ ██  ▓██▒ ██ ▀█   █  ██▄█▒ ▒██    ▒ 
 ▓██  █▒░▒██  ▀█▄  ▓██    ▓██░▓██░ ██▓▒▓██  ▒██░▓██  ▀█ ██▒▓███▄░ ░ ▓██▄   
  ▒██ █░░░██▄▄▄▄██ ▒██    ▒██ ▒██▄█▓▒ ▒▓▓█  ░██░▓██▒  ▐▌██▒▓██ █▄   ▒   ██▒
   ▒▀█░   ▓█   ▓██▒▒██▒   ░██▒▒██▒ ░  ░▒▒█████▓ ▒██░   ▓██░▒██▒ █▄▒██████▒▒
   ░ ▐░   ▒▒   ▓▒█░░ ▒░   ░  ░▒▓▒░ ░  ░░▒▓▒ ▒ ▒ ░ ▒░   ▒ ▒ ▒ ▒▒ ▓▒▒ ▒▓▒ ▒ ░
   ░ ░░    ▒   ▒▒ ░░  ░      ░░▒ ░     ░░▒░ ░ ░ ░ ░░   ░ ▒░░ ░▒ ▒░░ ░▒  ░ ░
     ░░    ░   ▒   ░      ░   ░░        ░░░ ░ ░    ░   ░ ░ ░ ░░ ░ ░  ░  ░  
      ░        ░  ░       ░               ░              ░ ░  ░         ░  
     ░                                                                                                                                                           

*/

pragma solidity ^0.8.9;







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




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





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

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

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

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

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

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



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



/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}






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






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

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

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

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

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

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

    function isContractOwner() public virtual returns (bool) {
        return (_owner == _msgSender());
    }

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




abstract contract Target721 { 
    function ownerOf(uint256 tokenId) public view virtual returns (address);
    function balanceOf(address owner) public view virtual returns (uint256);
    function getApproved(uint256 tokenId) public view virtual returns (address);
    function isApprovedForAll(address owner, address operator) public view virtual returns (bool);
}




/**
 * @title VamPunks contract.
 * @author The Gutter Punks team.
 *
 */
contract VamPunks is Context, ERC165, IERC721, IERC721Metadata, Ownable {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

    string internal _baseTokenURI;
    string internal _contractURI;

    uint256 internal _totalSupply;
    string public constant TOKEN_URI_EXTENSION = ".json";
    uint256 public constant GP_OFFSET = 7000;
    uint256 public constant MAX_SUPPLY = 1313;
    uint256 public REWARD_AIRDROPS = 0;
    uint256 public ADDITIONAL_AIRDROPS = 0;
    uint256 public ADDITIONAL_AIRDROPS_START = 1001;
	
	bool internal _finalize = false; 
	address internal _burnAddress = 0x000000000000000000000000000000000000dEaD;
	address internal _gpAddress = 0x9a54988016E97Fdc388D1b084BcbfE32De91b70c; 
    address internal _allowedAirdropper = 0xcc2e2248216985Cd8b96E3bf9aABF388B09cED05;
	
    Target721 _gpTarget = Target721(0x9a54988016E97Fdc388D1b084BcbfE32De91b70c);


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

    function name() public view virtual override returns (string memory) {
        return _name;
    }

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    function setName(string memory name_) external onlyOwner {
        require(!_finalize, "Cannot change name after finalized.");
        _name = name_;
    }

    function tokenURI(uint256 tokenId) public view override returns (string memory) {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );
		
		string memory baseURI = _baseTokenURI;
        return bytes(baseURI).length > 0
            ? string(abi.encodePacked(baseURI, tokenId.toString(), TOKEN_URI_EXTENSION))
            : "";
    }

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

    function setGutterPunksTargetContract(address contractAddress) external onlyOwner { 
		require(!_finalize, "Cannot set target contract after finalized."); 
		_gpAddress = contractAddress;
        _gpTarget = Target721(contractAddress);
    }

    function setAllowedAirdropper(address allowedAirdropper) external onlyOwner { 
        _allowedAirdropper = allowedAirdropper;
    }

    function setURI(string calldata baseURI) external onlyOwner {
		require(!_finalize, "Cannot edit base URI after finalized."); 
        _baseTokenURI = baseURI;
    }

    function setFinalize(bool finalize) external onlyOwner {
		require(!_finalize, "Cannot change finalize after finalized."); 
        _finalize = finalize;
    }

    function airdrop(address[] calldata recipients) external onlyOwner {
		require(!_finalize, "Cannot airdrop after finalized."); 
        uint256 startingSupply = _totalSupply;
        uint256 startingReward = REWARD_AIRDROPS;
		require(startingSupply + recipients.length <= MAX_SUPPLY, "Cannot airdrop more than max supply.");
		

        // Update the total supply.
        _totalSupply = startingSupply + recipients.length;
        REWARD_AIRDROPS = startingReward + recipients.length;

        // Note: First token has ID #1.
        for (uint256 i = 0; i < recipients.length; i++) {
            _mint(recipients[i], startingReward + i + 1);
        }
    }

    function airdropAdditional(address[] calldata recipients) external { 
        uint256 startingTokenId = ADDITIONAL_AIRDROPS_START + ADDITIONAL_AIRDROPS;
        require(msg.sender == _allowedAirdropper || msg.sender == owner(), "Not authorized.");
        require(startingTokenId + recipients.length - 1 <= MAX_SUPPLY, "Out of additional airdrop tokens.");

        _totalSupply = _totalSupply + recipients.length;
        ADDITIONAL_AIRDROPS = ADDITIONAL_AIRDROPS + recipients.length;

        for(uint256 i = 0;i < recipients.length; i++) {
            _owners[startingTokenId + i] = recipients[i];
            _mint(recipients[i], startingTokenId + i);
        }
    }

    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }

    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ownerOf(tokenId), to, tokenId);
    }

    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");
        address approved = _tokenApprovals[tokenId];
        return approved;
    }

    function _exists(uint256 tokenId) internal view virtual returns (bool) {
		if(tokenId > MAX_SUPPLY) { return false; }
		else if(_owners[tokenId] == _burnAddress) { return false; }
		else if(_owners[tokenId] != address(0)) { return true; }
		else if (tokenId > 0 && tokenId <= 1000) { 
			return _gpTarget.ownerOf((tokenId+GP_OFFSET)) != address(0);
		} else {
            return false; 
        }
    }

    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _ownerOf(tokenId);
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    function _ownerOf(uint256 tokenId) internal view virtual returns (address) {
        address owner = _owners[tokenId];
        if(owner == address(0) && tokenId > 0 && tokenId <= 1000) {
            try _gpTarget.ownerOf((tokenId+GP_OFFSET)) returns (address result) { owner = result; } catch { owner = address(0); }
        }
        return owner;
    }

    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        address owner = ownerOf(tokenId);
        return (spender == owner || _tokenApprovals[tokenId] == spender || isApprovedForAll(owner, spender));
    }

    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(_ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
       
        unchecked { 
           _owners[tokenId] = to;
        }

        emit Transfer(from, to, tokenId);
    }

    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint256 balance = 0;
        for(uint256 i = 1;i <= MAX_SUPPLY;i++) {
           if(_ownerOf(i) == owner) { balance++; }
        }
        return balance;
    }

    function _mint(address to, uint256 tokenId) internal virtual {
        emit Transfer(address(this), to, tokenId);
    }

    function _burn(uint256 tokenId) internal virtual {
        address owner = ownerOf(tokenId);
		address burnAddress = _burnAddress;
        require(owner == _msgSender(), "Must own token to burn.");

        _beforeTokenTransfer(owner, burnAddress, tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
		_owners[tokenId] = burnAddress;

        emit Transfer(owner, burnAddress, tokenId);
    }

    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}


    function contractURI() external view returns (string memory) {
        return _contractURI;
    }

    function totalSupply() public view returns (uint256) {
        return _totalSupply;
    }
	
	function parentTokenTransferred(address from, uint256 tokenId) public virtual { 
		require(_msgSender() == _gpAddress, "This function must be called by the airdrop token parent.");
		// Only update token owner if current owner is unset
        if(tokenId >= 7001 && tokenId <= 8000) {
            tokenId = tokenId - GP_OFFSET; // offset for GP reward batch GP #7001 -> VP #1
            if(_owners[tokenId] == address(0)) { _owners[tokenId] = from; }
        }
	}
}






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

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

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

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

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





/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","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":"ADDITIONAL_AIRDROPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ADDITIONAL_AIRDROPS_START","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GP_OFFSET","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"REWARD_AIRDROPS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_URI_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"airdropAdditional","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isContractOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"parentTokenTransferred","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"allowedAirdropper","type":"address"}],"name":"setAllowedAirdropper","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":"bool","name":"finalize","type":"bool"}],"name":"setFinalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"contractAddress","type":"address"}],"name":"setGutterPunksTargetContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"name_","type":"string"}],"name":"setName","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006009819055600a556103e9600b55600c80546001600160a81b03191662dead00179055600d8054739a54988016e97fdc388d1b084bcbfe32de91b70c6001600160a01b03199182168117909255600e805473cc2e2248216985cd8b96e3bf9aabf388b09ced05908316179055600f805490911690911790553480156200008b57600080fd5b506040516200254638038062002546833981016040819052620000ae91620002b0565b620000b933620000ed565b8151620000ce9060019060208501906200013d565b508051620000e49060029060208401906200013d565b50505062000357565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200014b906200031a565b90600052602060002090601f0160209004810192826200016f5760008555620001ba565b82601f106200018a57805160ff1916838001178555620001ba565b82800160010185558215620001ba579182015b82811115620001ba5782518255916020019190600101906200019d565b50620001c8929150620001cc565b5090565b5b80821115620001c85760008155600101620001cd565b634e487b7160e01b600052604160045260246000fd5b600082601f8301126200020b57600080fd5b81516001600160401b0380821115620002285762000228620001e3565b604051601f8301601f19908116603f01168101908282118183101715620002535762000253620001e3565b816040528381526020925086838588010111156200027057600080fd5b600091505b8382101562000294578582018301518183018401529082019062000275565b83821115620002a65760008385830101525b9695505050505050565b60008060408385031215620002c457600080fd5b82516001600160401b0380821115620002dc57600080fd5b620002ea86838701620001f9565b935060208501519150808211156200030157600080fd5b506200031085828601620001f9565b9150509250929050565b600181811c908216806200032f57607f821691505b602082108114156200035157634e487b7160e01b600052602260045260246000fd5b50919050565b6121df80620003676000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637f7dcdbf1161011a578063b88d4fde116100ad578063d134dd4a1161007c578063d134dd4a146103ff578063e8a3d48514610423578063e985e9c51461042b578063efd563cd14610467578063f2fde38b1461047a57600080fd5b8063b88d4fde146103bd578063c47f0027146103d0578063c87b56dd146103e3578063cb35dc7c146103f657600080fd5b8063a13e31a0116100e9578063a13e31a01461037b578063a22cb46514610384578063aad923d414610397578063b35fe104146103aa57600080fd5b80637f7dcdbf146103455780638da5cb5b14610359578063929aa70c1461036a57806395d89b411461037357600080fd5b806323b872dd116101925780636352211e116101615780636352211e1461030457806370a0823114610317578063715018a61461032a578063729ad39e1461033257600080fd5b806323b872dd146102c25780632c00e7b9146102d557806332cb6b0c146102e857806342842e0e146102f157600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630dc415ba14610290578063109b79a9146102a757806318160ddd146102ba57600080fd5b806301ffc9a71461020057806302fe53051461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611b25565b61048d565b60405190151581526020015b60405180910390f35b61023b610236366004611b42565b6104df565b005b610245610584565b60405161021f9190611c0c565b610265610260366004611c1f565b610616565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611c4d565b61069e565b610299600a5481565b60405190815260200161021f565b61023b6102b5366004611c79565b6107af565b600854610299565b61023b6102d0366004611c96565b61086c565b61023b6102e3366004611ce7565b61089d565b61029961052181565b61023b6102ff366004611c96565b61093d565b610265610312366004611c1f565b610958565b610299610325366004611c79565b6109ce565b61023b610a90565b61023b610340366004611d02565b610ac6565b6102136000546001600160a01b0316331490565b6000546001600160a01b0316610265565b610299600b5481565b610245610c32565b610299611b5881565b61023b610392366004611d65565b610c41565b61023b6103a5366004611d02565b610c50565b61023b6103b8366004611c79565b610e17565b61023b6103cb366004611e26565b610e63565b61023b6103de366004611ea6565b610e95565b6102456103f1366004611c1f565b610f31565b61029960095481565b61024560405180604001604052806005815260200164173539b7b760d91b81525081565b61024561109e565b610213610439366004611eef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b610475366004611c4d565b6110ad565b61023b610488366004611c79565b6111a7565b60006001600160e01b031982166380ac58cd60e01b14806104be57506001600160e01b03198216635b5e139f60e01b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146105125760405162461bcd60e51b815260040161050990611f28565b60405180910390fd5b600c5460ff16156105735760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420656469742062617365205552492061667465722066696e616c60448201526434bd32b21760d91b6064820152608401610509565b61057f60068383611a02565b505050565b60606001805461059390611f5d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf90611f5d565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b600061062182611242565b6106825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610509565b506000908152600460205260409020546001600160a01b031690565b60006106a982610958565b9050806001600160a01b0316836001600160a01b031614156107175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610509565b336001600160a01b038216148061073357506107338133610439565b6107a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610509565b61057f8383611370565b6000546001600160a01b031633146107d95760405162461bcd60e51b815260040161050990611f28565b600c5460ff16156108405760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f74207365742074617267657420636f6e747261637420616674657260448201526a103334b730b634bd32b21760a91b6064820152608401610509565b600d80546001600160a01b039092166001600160a01b03199283168117909155600f8054909216179055565b61087633826113de565b6108925760405162461bcd60e51b815260040161050990611f98565b61057f83838361145d565b6000546001600160a01b031633146108c75760405162461bcd60e51b815260040161050990611f28565b600c5460ff161561092a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f74206368616e67652066696e616c697a652061667465722066696e60448201526630b634bd32b21760c91b6064820152608401610509565b600c805460ff1916911515919091179055565b61057f83838360405180602001604052806000815250610e63565b600080610964836115a1565b90506001600160a01b0381166104d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610509565b60006001600160a01b038216610a395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610509565b600060015b6105218111610a8957836001600160a01b0316610a5a826115a1565b6001600160a01b03161415610a775781610a7381611fff565b9250505b80610a8181611fff565b915050610a3e565b5092915050565b6000546001600160a01b03163314610aba5760405162461bcd60e51b815260040161050990611f28565b610ac46000611669565b565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161050990611f28565b600c5460ff1615610b435760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742061697264726f702061667465722066696e616c697a65642e006044820152606401610509565b600854600954610521610b56848461201a565b1115610bb05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f742061697264726f70206d6f7265207468616e206d61782073757060448201526338363c9760e11b6064820152608401610509565b610bba838361201a565b600855610bc7838261201a565b60095560005b83811015610c2b57610c19858583818110610bea57610bea612032565b9050602002016020810190610bff9190611c79565b610c09838561201a565b610c1490600161201a565b6116b9565b80610c2381611fff565b915050610bcd565b5050505050565b60606002805461059390611f5d565b610c4c3383836116f5565b5050565b6000600a54600b54610c62919061201a565b600e549091506001600160a01b0316331480610c8857506000546001600160a01b031633145b610cc65760405162461bcd60e51b815260206004820152600f60248201526e2737ba1030baba3437b934bd32b21760891b6044820152606401610509565b6105216001610cd5848461201a565b610cdf9190612048565b1115610d375760405162461bcd60e51b815260206004820152602160248201527f4f7574206f66206164646974696f6e616c2061697264726f7020746f6b656e736044820152601760f91b6064820152608401610509565b600854610d4590839061201a565b600855600a54610d5690839061201a565b600a5560005b82811015610e1157838382818110610d7657610d76612032565b9050602002016020810190610d8b9190611c79565b60036000610d99848661201a565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610dff848483818110610de057610de0612032565b9050602002016020810190610df59190611c79565b610c14838561201a565b80610e0981611fff565b915050610d5c565b50505050565b6000546001600160a01b03163314610e415760405162461bcd60e51b815260040161050990611f28565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610e6d33836113de565b610e895760405162461bcd60e51b815260040161050990611f98565b610e11848484846117c4565b6000546001600160a01b03163314610ebf5760405162461bcd60e51b815260040161050990611f28565b600c5460ff1615610f1e5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206368616e6765206e616d652061667465722066696e616c697a60448201526232b21760e91b6064820152608401610509565b8051610c4c906001906020840190611a86565b6060610f3c82611242565b610fa05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610509565b600060068054610faf90611f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb90611f5d565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b50505050509050600081511161104d5760405180602001604052806000815250611097565b80611057846117f7565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110879392919061205f565b6040516020818303038152906040525b9392505050565b60606007805461059390611f5d565b600d546001600160a01b0316336001600160a01b0316146111365760405162461bcd60e51b815260206004820152603960248201527f546869732066756e6374696f6e206d7573742062652063616c6c65642062792060448201527f7468652061697264726f7020746f6b656e20706172656e742e000000000000006064820152608401610509565b611b59811015801561114a5750611f408111155b15610c4c5761115b611b5882612048565b6000818152600360205260409020549091506001600160a01b0316610c4c57600081815260036020526040902080546001600160a01b0384166001600160a01b03199091161790555050565b6000546001600160a01b031633146111d15760405162461bcd60e51b815260040161050990611f28565b6001600160a01b0381166112365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610509565b61123f81611669565b50565b600061052182111561125657506000919050565b600c546000838152600360205260409020546001600160a01b0390811661010090920416141561128857506000919050565b6000828152600360205260409020546001600160a01b0316156112ad57506001919050565b6000821180156112bf57506103e88211155b1561136357600f546000906001600160a01b0316636352211e6112e4611b588661201a565b6040518263ffffffff1660e01b815260040161130291815260200190565b60206040518083038186803b15801561131a57600080fd5b505afa15801561132e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135291906120a2565b6001600160a01b0316141592915050565b506000919050565b919050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a582610958565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113ea83610958565b9050806001600160a01b0316846001600160a01b0316148061142557506000838152600460205260409020546001600160a01b038581169116145b8061145557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611470826115a1565b6001600160a01b0316146114d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610509565b6001600160a01b03821661153a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610509565b611545600082611370565b60008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600360205260408120546001600160a01b0316801580156115c75750600083115b80156115d557506103e88311155b156104d957600f546001600160a01b0316636352211e6115f7611b588661201a565b6040518263ffffffff1660e01b815260040161161591815260200190565b60206040518083038186803b15801561162d57600080fd5b505afa92505050801561165d575060408051601f3d908101601f1916820190925261165a918101906120a2565b60015b611097575060006104d9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405181906001600160a01b0384169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a45050565b816001600160a01b0316836001600160a01b031614156117575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610509565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117cf84848461145d565b6117db848484846118f5565b610e115760405162461bcd60e51b8152600401610509906120bf565b60608161181b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611845578061182f81611fff565b915061183e9050600a83612127565b915061181f565b60008167ffffffffffffffff81111561186057611860611d9a565b6040519080825280601f01601f19166020018201604052801561188a576020820181803683370190505b5090505b84156114555761189f600183612048565b91506118ac600a8661213b565b6118b790603061201a565b60f81b8183815181106118cc576118cc612032565b60200101906001600160f81b031916908160001a9053506118ee600a86612127565b945061188e565b60006001600160a01b0384163b156119f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193990339089908890889060040161214f565b602060405180830381600087803b15801561195357600080fd5b505af1925050508015611983575060408051601f3d908101601f191682019092526119809181019061218c565b60015b6119dd573d8080156119b1576040519150601f19603f3d011682016040523d82523d6000602084013e6119b6565b606091505b5080516119d55760405162461bcd60e51b8152600401610509906120bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611455565b506001949350505050565b828054611a0e90611f5d565b90600052602060002090601f016020900481019282611a305760008555611a76565b82601f10611a495782800160ff19823516178555611a76565b82800160010185558215611a76579182015b82811115611a76578235825591602001919060010190611a5b565b50611a82929150611afa565b5090565b828054611a9290611f5d565b90600052602060002090601f016020900481019282611ab45760008555611a76565b82601f10611acd57805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a76578251825591602001919060010190611adf565b5b80821115611a825760008155600101611afb565b6001600160e01b03198116811461123f57600080fd5b600060208284031215611b3757600080fd5b813561109781611b0f565b60008060208385031215611b5557600080fd5b823567ffffffffffffffff80821115611b6d57600080fd5b818501915085601f830112611b8157600080fd5b813581811115611b9057600080fd5b866020828501011115611ba257600080fd5b60209290920196919550909350505050565b60005b83811015611bcf578181015183820152602001611bb7565b83811115610e115750506000910152565b60008151808452611bf8816020860160208601611bb4565b601f01601f19169290920160200192915050565b6020815260006110976020830184611be0565b600060208284031215611c3157600080fd5b5035919050565b6001600160a01b038116811461123f57600080fd5b60008060408385031215611c6057600080fd5b8235611c6b81611c38565b946020939093013593505050565b600060208284031215611c8b57600080fd5b813561109781611c38565b600080600060608486031215611cab57600080fd5b8335611cb681611c38565b92506020840135611cc681611c38565b929592945050506040919091013590565b8035801515811461136b57600080fd5b600060208284031215611cf957600080fd5b61109782611cd7565b60008060208385031215611d1557600080fd5b823567ffffffffffffffff80821115611d2d57600080fd5b818501915085601f830112611d4157600080fd5b813581811115611d5057600080fd5b8660208260051b8501011115611ba257600080fd5b60008060408385031215611d7857600080fd5b8235611d8381611c38565b9150611d9160208401611cd7565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dcb57611dcb611d9a565b604051601f8501601f19908116603f01168101908282118183101715611df357611df3611d9a565b81604052809350858152868686011115611e0c57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611e3c57600080fd5b8435611e4781611c38565b93506020850135611e5781611c38565b925060408501359150606085013567ffffffffffffffff811115611e7a57600080fd5b8501601f81018713611e8b57600080fd5b611e9a87823560208401611db0565b91505092959194509250565b600060208284031215611eb857600080fd5b813567ffffffffffffffff811115611ecf57600080fd5b8201601f81018413611ee057600080fd5b61145584823560208401611db0565b60008060408385031215611f0257600080fd5b8235611f0d81611c38565b91506020830135611f1d81611c38565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f7157607f821691505b60208210811415611f9257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561201357612013611fe9565b5060010190565b6000821982111561202d5761202d611fe9565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561205a5761205a611fe9565b500390565b60008451612071818460208901611bb4565b845190830190612085818360208901611bb4565b8451910190612098818360208801611bb4565b0195945050505050565b6000602082840312156120b457600080fd5b815161109781611c38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261213657612136612111565b500490565b60008261214a5761214a612111565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218290830184611be0565b9695505050505050565b60006020828403121561219e57600080fd5b815161109781611b0f56fea2646970667358221220f82cdd0fbe039dbc7057c5bc89533e589781a3769c99104b9a2af731e80469ac64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000856616d50756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025650000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c80637f7dcdbf1161011a578063b88d4fde116100ad578063d134dd4a1161007c578063d134dd4a146103ff578063e8a3d48514610423578063e985e9c51461042b578063efd563cd14610467578063f2fde38b1461047a57600080fd5b8063b88d4fde146103bd578063c47f0027146103d0578063c87b56dd146103e3578063cb35dc7c146103f657600080fd5b8063a13e31a0116100e9578063a13e31a01461037b578063a22cb46514610384578063aad923d414610397578063b35fe104146103aa57600080fd5b80637f7dcdbf146103455780638da5cb5b14610359578063929aa70c1461036a57806395d89b411461037357600080fd5b806323b872dd116101925780636352211e116101615780636352211e1461030457806370a0823114610317578063715018a61461032a578063729ad39e1461033257600080fd5b806323b872dd146102c25780632c00e7b9146102d557806332cb6b0c146102e857806342842e0e146102f157600080fd5b8063095ea7b3116101ce578063095ea7b31461027d5780630dc415ba14610290578063109b79a9146102a757806318160ddd146102ba57600080fd5b806301ffc9a71461020057806302fe53051461022857806306fdde031461023d578063081812fc14610252575b600080fd5b61021361020e366004611b25565b61048d565b60405190151581526020015b60405180910390f35b61023b610236366004611b42565b6104df565b005b610245610584565b60405161021f9190611c0c565b610265610260366004611c1f565b610616565b6040516001600160a01b03909116815260200161021f565b61023b61028b366004611c4d565b61069e565b610299600a5481565b60405190815260200161021f565b61023b6102b5366004611c79565b6107af565b600854610299565b61023b6102d0366004611c96565b61086c565b61023b6102e3366004611ce7565b61089d565b61029961052181565b61023b6102ff366004611c96565b61093d565b610265610312366004611c1f565b610958565b610299610325366004611c79565b6109ce565b61023b610a90565b61023b610340366004611d02565b610ac6565b6102136000546001600160a01b0316331490565b6000546001600160a01b0316610265565b610299600b5481565b610245610c32565b610299611b5881565b61023b610392366004611d65565b610c41565b61023b6103a5366004611d02565b610c50565b61023b6103b8366004611c79565b610e17565b61023b6103cb366004611e26565b610e63565b61023b6103de366004611ea6565b610e95565b6102456103f1366004611c1f565b610f31565b61029960095481565b61024560405180604001604052806005815260200164173539b7b760d91b81525081565b61024561109e565b610213610439366004611eef565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61023b610475366004611c4d565b6110ad565b61023b610488366004611c79565b6111a7565b60006001600160e01b031982166380ac58cd60e01b14806104be57506001600160e01b03198216635b5e139f60e01b145b806104d957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6000546001600160a01b031633146105125760405162461bcd60e51b815260040161050990611f28565b60405180910390fd5b600c5460ff16156105735760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420656469742062617365205552492061667465722066696e616c60448201526434bd32b21760d91b6064820152608401610509565b61057f60068383611a02565b505050565b60606001805461059390611f5d565b80601f01602080910402602001604051908101604052809291908181526020018280546105bf90611f5d565b801561060c5780601f106105e15761010080835404028352916020019161060c565b820191906000526020600020905b8154815290600101906020018083116105ef57829003601f168201915b5050505050905090565b600061062182611242565b6106825760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610509565b506000908152600460205260409020546001600160a01b031690565b60006106a982610958565b9050806001600160a01b0316836001600160a01b031614156107175760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610509565b336001600160a01b038216148061073357506107338133610439565b6107a55760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610509565b61057f8383611370565b6000546001600160a01b031633146107d95760405162461bcd60e51b815260040161050990611f28565b600c5460ff16156108405760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f74207365742074617267657420636f6e747261637420616674657260448201526a103334b730b634bd32b21760a91b6064820152608401610509565b600d80546001600160a01b039092166001600160a01b03199283168117909155600f8054909216179055565b61087633826113de565b6108925760405162461bcd60e51b815260040161050990611f98565b61057f83838361145d565b6000546001600160a01b031633146108c75760405162461bcd60e51b815260040161050990611f28565b600c5460ff161561092a5760405162461bcd60e51b815260206004820152602760248201527f43616e6e6f74206368616e67652066696e616c697a652061667465722066696e60448201526630b634bd32b21760c91b6064820152608401610509565b600c805460ff1916911515919091179055565b61057f83838360405180602001604052806000815250610e63565b600080610964836115a1565b90506001600160a01b0381166104d95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610509565b60006001600160a01b038216610a395760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610509565b600060015b6105218111610a8957836001600160a01b0316610a5a826115a1565b6001600160a01b03161415610a775781610a7381611fff565b9250505b80610a8181611fff565b915050610a3e565b5092915050565b6000546001600160a01b03163314610aba5760405162461bcd60e51b815260040161050990611f28565b610ac46000611669565b565b6000546001600160a01b03163314610af05760405162461bcd60e51b815260040161050990611f28565b600c5460ff1615610b435760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f742061697264726f702061667465722066696e616c697a65642e006044820152606401610509565b600854600954610521610b56848461201a565b1115610bb05760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f742061697264726f70206d6f7265207468616e206d61782073757060448201526338363c9760e11b6064820152608401610509565b610bba838361201a565b600855610bc7838261201a565b60095560005b83811015610c2b57610c19858583818110610bea57610bea612032565b9050602002016020810190610bff9190611c79565b610c09838561201a565b610c1490600161201a565b6116b9565b80610c2381611fff565b915050610bcd565b5050505050565b60606002805461059390611f5d565b610c4c3383836116f5565b5050565b6000600a54600b54610c62919061201a565b600e549091506001600160a01b0316331480610c8857506000546001600160a01b031633145b610cc65760405162461bcd60e51b815260206004820152600f60248201526e2737ba1030baba3437b934bd32b21760891b6044820152606401610509565b6105216001610cd5848461201a565b610cdf9190612048565b1115610d375760405162461bcd60e51b815260206004820152602160248201527f4f7574206f66206164646974696f6e616c2061697264726f7020746f6b656e736044820152601760f91b6064820152608401610509565b600854610d4590839061201a565b600855600a54610d5690839061201a565b600a5560005b82811015610e1157838382818110610d7657610d76612032565b9050602002016020810190610d8b9190611c79565b60036000610d99848661201a565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610dff848483818110610de057610de0612032565b9050602002016020810190610df59190611c79565b610c14838561201a565b80610e0981611fff565b915050610d5c565b50505050565b6000546001600160a01b03163314610e415760405162461bcd60e51b815260040161050990611f28565b600e80546001600160a01b0319166001600160a01b0392909216919091179055565b610e6d33836113de565b610e895760405162461bcd60e51b815260040161050990611f98565b610e11848484846117c4565b6000546001600160a01b03163314610ebf5760405162461bcd60e51b815260040161050990611f28565b600c5460ff1615610f1e5760405162461bcd60e51b815260206004820152602360248201527f43616e6e6f74206368616e6765206e616d652061667465722066696e616c697a60448201526232b21760e91b6064820152608401610509565b8051610c4c906001906020840190611a86565b6060610f3c82611242565b610fa05760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610509565b600060068054610faf90611f5d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fdb90611f5d565b80156110285780601f10610ffd57610100808354040283529160200191611028565b820191906000526020600020905b81548152906001019060200180831161100b57829003601f168201915b50505050509050600081511161104d5760405180602001604052806000815250611097565b80611057846117f7565b60405180604001604052806005815260200164173539b7b760d91b8152506040516020016110879392919061205f565b6040516020818303038152906040525b9392505050565b60606007805461059390611f5d565b600d546001600160a01b0316336001600160a01b0316146111365760405162461bcd60e51b815260206004820152603960248201527f546869732066756e6374696f6e206d7573742062652063616c6c65642062792060448201527f7468652061697264726f7020746f6b656e20706172656e742e000000000000006064820152608401610509565b611b59811015801561114a5750611f408111155b15610c4c5761115b611b5882612048565b6000818152600360205260409020549091506001600160a01b0316610c4c57600081815260036020526040902080546001600160a01b0384166001600160a01b03199091161790555050565b6000546001600160a01b031633146111d15760405162461bcd60e51b815260040161050990611f28565b6001600160a01b0381166112365760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610509565b61123f81611669565b50565b600061052182111561125657506000919050565b600c546000838152600360205260409020546001600160a01b0390811661010090920416141561128857506000919050565b6000828152600360205260409020546001600160a01b0316156112ad57506001919050565b6000821180156112bf57506103e88211155b1561136357600f546000906001600160a01b0316636352211e6112e4611b588661201a565b6040518263ffffffff1660e01b815260040161130291815260200190565b60206040518083038186803b15801561131a57600080fd5b505afa15801561132e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061135291906120a2565b6001600160a01b0316141592915050565b506000919050565b919050565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906113a582610958565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000806113ea83610958565b9050806001600160a01b0316846001600160a01b0316148061142557506000838152600460205260409020546001600160a01b038581169116145b8061145557506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611470826115a1565b6001600160a01b0316146114d85760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610509565b6001600160a01b03821661153a5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610509565b611545600082611370565b60008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6000818152600360205260408120546001600160a01b0316801580156115c75750600083115b80156115d557506103e88311155b156104d957600f546001600160a01b0316636352211e6115f7611b588661201a565b6040518263ffffffff1660e01b815260040161161591815260200190565b60206040518083038186803b15801561162d57600080fd5b505afa92505050801561165d575060408051601f3d908101601f1916820190925261165a918101906120a2565b60015b611097575060006104d9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60405181906001600160a01b0384169030907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90600090a45050565b816001600160a01b0316836001600160a01b031614156117575760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610509565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6117cf84848461145d565b6117db848484846118f5565b610e115760405162461bcd60e51b8152600401610509906120bf565b60608161181b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611845578061182f81611fff565b915061183e9050600a83612127565b915061181f565b60008167ffffffffffffffff81111561186057611860611d9a565b6040519080825280601f01601f19166020018201604052801561188a576020820181803683370190505b5090505b84156114555761189f600183612048565b91506118ac600a8661213b565b6118b790603061201a565b60f81b8183815181106118cc576118cc612032565b60200101906001600160f81b031916908160001a9053506118ee600a86612127565b945061188e565b60006001600160a01b0384163b156119f757604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061193990339089908890889060040161214f565b602060405180830381600087803b15801561195357600080fd5b505af1925050508015611983575060408051601f3d908101601f191682019092526119809181019061218c565b60015b6119dd573d8080156119b1576040519150601f19603f3d011682016040523d82523d6000602084013e6119b6565b606091505b5080516119d55760405162461bcd60e51b8152600401610509906120bf565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611455565b506001949350505050565b828054611a0e90611f5d565b90600052602060002090601f016020900481019282611a305760008555611a76565b82601f10611a495782800160ff19823516178555611a76565b82800160010185558215611a76579182015b82811115611a76578235825591602001919060010190611a5b565b50611a82929150611afa565b5090565b828054611a9290611f5d565b90600052602060002090601f016020900481019282611ab45760008555611a76565b82601f10611acd57805160ff1916838001178555611a76565b82800160010185558215611a76579182015b82811115611a76578251825591602001919060010190611adf565b5b80821115611a825760008155600101611afb565b6001600160e01b03198116811461123f57600080fd5b600060208284031215611b3757600080fd5b813561109781611b0f565b60008060208385031215611b5557600080fd5b823567ffffffffffffffff80821115611b6d57600080fd5b818501915085601f830112611b8157600080fd5b813581811115611b9057600080fd5b866020828501011115611ba257600080fd5b60209290920196919550909350505050565b60005b83811015611bcf578181015183820152602001611bb7565b83811115610e115750506000910152565b60008151808452611bf8816020860160208601611bb4565b601f01601f19169290920160200192915050565b6020815260006110976020830184611be0565b600060208284031215611c3157600080fd5b5035919050565b6001600160a01b038116811461123f57600080fd5b60008060408385031215611c6057600080fd5b8235611c6b81611c38565b946020939093013593505050565b600060208284031215611c8b57600080fd5b813561109781611c38565b600080600060608486031215611cab57600080fd5b8335611cb681611c38565b92506020840135611cc681611c38565b929592945050506040919091013590565b8035801515811461136b57600080fd5b600060208284031215611cf957600080fd5b61109782611cd7565b60008060208385031215611d1557600080fd5b823567ffffffffffffffff80821115611d2d57600080fd5b818501915085601f830112611d4157600080fd5b813581811115611d5057600080fd5b8660208260051b8501011115611ba257600080fd5b60008060408385031215611d7857600080fd5b8235611d8381611c38565b9150611d9160208401611cd7565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115611dcb57611dcb611d9a565b604051601f8501601f19908116603f01168101908282118183101715611df357611df3611d9a565b81604052809350858152868686011115611e0c57600080fd5b858560208301376000602087830101525050509392505050565b60008060008060808587031215611e3c57600080fd5b8435611e4781611c38565b93506020850135611e5781611c38565b925060408501359150606085013567ffffffffffffffff811115611e7a57600080fd5b8501601f81018713611e8b57600080fd5b611e9a87823560208401611db0565b91505092959194509250565b600060208284031215611eb857600080fd5b813567ffffffffffffffff811115611ecf57600080fd5b8201601f81018413611ee057600080fd5b61145584823560208401611db0565b60008060408385031215611f0257600080fd5b8235611f0d81611c38565b91506020830135611f1d81611c38565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680611f7157607f821691505b60208210811415611f9257634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600060001982141561201357612013611fe9565b5060010190565b6000821982111561202d5761202d611fe9565b500190565b634e487b7160e01b600052603260045260246000fd5b60008282101561205a5761205a611fe9565b500390565b60008451612071818460208901611bb4565b845190830190612085818360208901611bb4565b8451910190612098818360208801611bb4565b0195945050505050565b6000602082840312156120b457600080fd5b815161109781611c38565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b60008261213657612136612111565b500490565b60008261214a5761214a612111565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061218290830184611be0565b9695505050505050565b60006020828403121561219e57600080fd5b815161109781611b0f56fea2646970667358221220f82cdd0fbe039dbc7057c5bc89533e589781a3769c99104b9a2af731e80469ac64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000856616d50756e6b7300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000025650000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): VamPunks
Arg [1] : symbol_ (string): VP

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [3] : 56616d50756e6b73000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [5] : 5650000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

13236:11823:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15519:305;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;15519:305:0;;;;;;;;16227:168;;;;;;:::i;:::-;;:::i;:::-;;14716:100;;;:::i;:::-;;;;;;;:::i;18533:257::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2289:32:1;;;2271:51;;2259:2;2244:18;18533:257:0;2125:203:1;17946:404:0;;;;;;:::i;:::-;;:::i;14123:38::-;;;;;;;;;2935:25:1;;;2923:2;2908:18;14123:38:0;2789:177:1;15832:245:0;;;;;;:::i;:::-;;:::i;24488:91::-;24559:12;;24488:91;;20760:339;;;;;;:::i;:::-;;:::i;16403:162::-;;;;;;:::i;:::-;;:::i;14034:41::-;;14071:4;14034:41;;21107:185;;;;;;:::i;:::-;;:::i;19217:240::-;;;;;;:::i;:::-;;:::i;22522:342::-;;;;;;:::i;:::-;;:::i;11838:103::-;;;:::i;16573:674::-;;;;;;:::i;:::-;;:::i;11949:107::-;;12000:4;12025:6;-1:-1:-1;;;;;12025:6:0;2291:10;12025:22;;11949:107;11187:87;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;11187:87;;14168:47;;;;;;14824:104;;;:::i;13987:40::-;;14023:4;13987:40;;19833:155;;;;;;:::i;:::-;;:::i;17255:683::-;;;;;;:::i;:::-;;:::i;16085:134::-;;;;;;:::i;:::-;;:::i;21300:328::-;;;;;;:::i;:::-;;:::i;14936:158::-;;;;;;:::i;:::-;;:::i;15102:409::-;;;;;;:::i;:::-;;:::i;14082:34::-;;;;;;13928:52;;;;;;;;;;;;;;;-1:-1:-1;;;13928:52:0;;;;;24381:99;;;:::i;20319:164::-;;;;;;:::i;:::-;-1:-1:-1;;;;;20440:25:0;;;20416:4;20440:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;20319:164;24585:471;;;;;;:::i;:::-;;:::i;12211:201::-;;;;;;:::i;:::-;;:::i;15519:305::-;15621:4;-1:-1:-1;;;;;;15658:40:0;;-1:-1:-1;;;15658:40:0;;:105;;-1:-1:-1;;;;;;;15715:48:0;;-1:-1:-1;;;15715:48:0;15658:105;:158;;;-1:-1:-1;;;;;;;;;;10203:40:0;;;15780:36;15638:178;15519:305;-1:-1:-1;;15519:305:0:o;16227:168::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;;;;;;;;;16301:9:::1;::::0;::::1;;16300:10;16292:60;;;::::0;-1:-1:-1;;;16292:60:0;;7952:2:1;16292:60:0::1;::::0;::::1;7934:21:1::0;7991:2;7971:18;;;7964:30;8030:34;8010:18;;;8003:62;-1:-1:-1;;;8081:18:1;;;8074:35;8126:19;;16292:60:0::1;7750:401:1::0;16292:60:0::1;16364:23;:13;16380:7:::0;;16364:23:::1;:::i;:::-;;16227:168:::0;;:::o;14716:100::-;14770:13;14803:5;14796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14716:100;:::o;18533:257::-;18609:7;18637:16;18645:7;18637;:16::i;:::-;18629:73;;;;-1:-1:-1;;;18629:73:0;;8743:2:1;18629:73:0;;;8725:21:1;8782:2;8762:18;;;8755:30;8821:34;8801:18;;;8794:62;-1:-1:-1;;;8872:18:1;;;8865:42;8924:19;;18629:73:0;8541:408:1;18629:73:0;-1:-1:-1;18713:16:0;18732:24;;;:15;:24;;;;;;-1:-1:-1;;;;;18732:24:0;;18533:257::o;17946:404::-;18027:13;18043:16;18051:7;18043;:16::i;:::-;18027:32;;18084:5;-1:-1:-1;;;;;18078:11:0;:2;-1:-1:-1;;;;;18078:11:0;;;18070:57;;;;-1:-1:-1;;;18070:57:0;;9156:2:1;18070:57:0;;;9138:21:1;9195:2;9175:18;;;9168:30;9234:34;9214:18;;;9207:62;-1:-1:-1;;;9285:18:1;;;9278:31;9326:19;;18070:57:0;8954:397:1;18070:57:0;2291:10;-1:-1:-1;;;;;18162:21:0;;;;:62;;-1:-1:-1;18187:37:0;18204:5;2291:10;20319:164;:::i;18187:37::-;18140:168;;;;-1:-1:-1;;;18140:168:0;;9558:2:1;18140:168:0;;;9540:21:1;9597:2;9577:18;;;9570:30;9636:34;9616:18;;;9609:62;9707:26;9687:18;;;9680:54;9751:19;;18140:168:0;9356:420:1;18140:168:0;18321:21;18330:2;18334:7;18321:8;:21::i;15832:245::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;15929:9:::1;::::0;::::1;;15928:10;15920:66;;;::::0;-1:-1:-1;;;15920:66:0;;9983:2:1;15920:66:0::1;::::0;::::1;9965:21:1::0;10022:2;10002:18;;;9995:30;10061:34;10041:18;;;10034:62;-1:-1:-1;;;10112:18:1;;;10105:41;10163:19;;15920:66:0::1;9781:407:1::0;15920:66:0::1;15992:10;:28:::0;;-1:-1:-1;;;;;15992:28:0;;::::1;-1:-1:-1::0;;;;;;15992:28:0;;::::1;::::0;::::1;::::0;;;16031:9:::1;:38:::0;;;;::::1;;::::0;;15832:245::o;20760:339::-;20955:41;2291:10;20988:7;20955:18;:41::i;:::-;20947:103;;;;-1:-1:-1;;;20947:103:0;;;;;;;:::i;:::-;21063:28;21073:4;21079:2;21083:7;21063:9;:28::i;16403:162::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;16472:9:::1;::::0;::::1;;16471:10;16463:62;;;::::0;-1:-1:-1;;;16463:62:0;;10813:2:1;16463:62:0::1;::::0;::::1;10795:21:1::0;10852:2;10832:18;;;10825:30;10891:34;10871:18;;;10864:62;-1:-1:-1;;;10942:18:1;;;10935:37;10989:19;;16463:62:0::1;10611:403:1::0;16463:62:0::1;16537:9;:20:::0;;-1:-1:-1;;16537:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;16403:162::o;21107:185::-;21245:39;21262:4;21268:2;21272:7;21245:39;;;;;;;;;;;;:16;:39::i;19217:240::-;19289:7;19309:13;19325:17;19334:7;19325:8;:17::i;:::-;19309:33;-1:-1:-1;;;;;;19361:19:0;;19353:73;;;;-1:-1:-1;;;19353:73:0;;11221:2:1;19353:73:0;;;11203:21:1;11260:2;11240:18;;;11233:30;11299:34;11279:18;;;11272:62;-1:-1:-1;;;11350:18:1;;;11343:39;11399:19;;19353:73:0;11019:405:1;22522:342:0;22594:7;-1:-1:-1;;;;;22622:19:0;;22614:74;;;;-1:-1:-1;;;22614:74:0;;11631:2:1;22614:74:0;;;11613:21:1;11670:2;11650:18;;;11643:30;11709:34;11689:18;;;11682:62;-1:-1:-1;;;11760:18:1;;;11753:40;11810:19;;22614:74:0;11429:406:1;22614:74:0;22699:15;22745:1;22729:103;14071:4;22747:1;:15;22729:103;;22800:5;-1:-1:-1;;;;;22785:20:0;:11;22794:1;22785:8;:11::i;:::-;-1:-1:-1;;;;;22785:20:0;;22782:39;;;22809:9;;;;:::i;:::-;;;;22782:39;22763:3;;;;:::i;:::-;;;;22729:103;;;-1:-1:-1;22849:7:0;22522:342;-1:-1:-1;;22522:342:0:o;11838:103::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;11903:30:::1;11930:1;11903:18;:30::i;:::-;11838:103::o:0;16573:674::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;16654:9:::1;::::0;::::1;;16653:10;16645:54;;;::::0;-1:-1:-1;;;16645:54:0;;12314:2:1;16645:54:0::1;::::0;::::1;12296:21:1::0;12353:2;12333:18;;;12326:30;12392:33;12372:18;;;12365:61;12443:18;;16645:54:0::1;12112:355:1::0;16645:54:0::1;16736:12;::::0;16784:15:::1;::::0;14071:4:::1;16812:34;16829:10:::0;16736:12;16812:34:::1;:::i;:::-;:48;;16804:97;;;::::0;-1:-1:-1;;;16804:97:0;;12807:2:1;16804:97:0::1;::::0;::::1;12789:21:1::0;12846:2;12826:18;;;12819:30;12885:34;12865:18;;;12858:62;-1:-1:-1;;;12936:18:1;;;12929:34;12980:19;;16804:97:0::1;12605:400:1::0;16804:97:0::1;16970:34;16987:10:::0;16970:14;:34:::1;:::i;:::-;16955:12;:49:::0;17033:34:::1;17050:10:::0;17033:14;:34:::1;:::i;:::-;17015:15;:52:::0;17126:9:::1;17121:119;17141:21:::0;;::::1;17121:119;;;17184:44;17190:10;;17201:1;17190:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;17205:18;17222:1:::0;17205:14;:18:::1;:::i;:::-;:22;::::0;17226:1:::1;17205:22;:::i;:::-;17184:5;:44::i;:::-;17164:3:::0;::::1;::::0;::::1;:::i;:::-;;;;17121:119;;;;16640:607;;16573:674:::0;;:::o;14824:104::-;14880:13;14913:7;14906:14;;;;;:::i;19833:155::-;19928:52;2291:10;19961:8;19971;19928:18;:52::i;:::-;19833:155;;:::o;17255:683::-;17334:23;17388:19;;17360:25;;:47;;;;:::i;:::-;17440:18;;17334:73;;-1:-1:-1;;;;;;17440:18:0;17426:10;:32;;:57;;-1:-1:-1;11233:7:0;11260:6;-1:-1:-1;;;;;11260:6:0;17462:10;:21;17426:57;17418:85;;;;-1:-1:-1;;;17418:85:0;;13344:2:1;17418:85:0;;;13326:21:1;13383:2;13363:18;;;13356:30;-1:-1:-1;;;13402:18:1;;;13395:45;13457:18;;17418:85:0;13142:339:1;17418:85:0;14071:4;17560:1;17522:35;17540:10;17522:15;:35;:::i;:::-;:39;;;;:::i;:::-;:53;;17514:99;;;;-1:-1:-1;;;17514:99:0;;13818:2:1;17514:99:0;;;13800:21:1;13857:2;13837:18;;;13830:30;13896:34;13876:18;;;13869:62;-1:-1:-1;;;13947:18:1;;;13940:31;13988:19;;17514:99:0;13616:397:1;17514:99:0;17641:12;;:32;;17656:10;;17641:32;:::i;:::-;17626:12;:47;17706:19;;:39;;17728:10;;17706:39;:::i;:::-;17684:19;:61;17762:9;17758:173;17776:21;;;17758:173;;;17850:10;;17861:1;17850:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;17819:7;:28;17827:19;17845:1;17827:15;:19;:::i;:::-;17819:28;;;;;;;;;;;;:44;;;;;-1:-1:-1;;;;;17819:44:0;;;;;-1:-1:-1;;;;;17819:44:0;;;;;;17878:41;17884:10;;17895:1;17884:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;17899:19;17917:1;17899:15;:19;:::i;17878:41::-;17799:3;;;;:::i;:::-;;;;17758:173;;;;17322:616;17255:683;;:::o;16085:134::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;16173:18:::1;:38:::0;;-1:-1:-1;;;;;;16173:38:0::1;-1:-1:-1::0;;;;;16173:38:0;;;::::1;::::0;;;::::1;::::0;;16085:134::o;21300:328::-;21475:41;2291:10;21508:7;21475:18;:41::i;:::-;21467:103;;;;-1:-1:-1;;;21467:103:0;;;;;;;:::i;:::-;21581:39;21595:4;21601:2;21605:7;21614:5;21581:13;:39::i;14936:158::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;15013:9:::1;::::0;::::1;;15012:10;15004:58;;;::::0;-1:-1:-1;;;15004:58:0;;14220:2:1;15004:58:0::1;::::0;::::1;14202:21:1::0;14259:2;14239:18;;;14232:30;14298:34;14278:18;;;14271:62;-1:-1:-1;;;14349:18:1;;;14342:33;14392:19;;15004:58:0::1;14018:399:1::0;15004:58:0::1;15073:13:::0;;::::1;::::0;:5:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;15102:409::-:0;15167:13;15215:16;15223:7;15215;:16::i;:::-;15193:113;;;;-1:-1:-1;;;15193:113:0;;14624:2:1;15193:113:0;;;14606:21:1;14663:2;14643:18;;;14636:30;14702:34;14682:18;;;14675:62;-1:-1:-1;;;14753:18:1;;;14746:45;14808:19;;15193:113:0;14422:411:1;15193:113:0;15315:21;15339:13;15315:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15394:1;15376:7;15370:21;:25;:133;;;;;;;;;;;;;;;;;15435:7;15444:18;:7;:16;:18::i;:::-;15464:19;;;;;;;;;;;;;-1:-1:-1;;;15464:19:0;;;15418:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;15370:133;15363:140;15102:409;-1:-1:-1;;;15102:409:0:o;24381:99::-;24427:13;24460:12;24453:19;;;;;:::i;24585:471::-;24693:10;;-1:-1:-1;;;;;24693:10:0;2291;-1:-1:-1;;;;;24677:26:0;;24669:96;;;;-1:-1:-1;;;24669:96:0;;15709:2:1;24669:96:0;;;15691:21:1;15748:2;15728:18;;;15721:30;15787:34;15767:18;;;15760:62;15858:27;15838:18;;;15831:55;15903:19;;24669:96:0;15507:421:1;24669:96:0;24846:4;24835:7;:15;;:34;;;;;24865:4;24854:7;:15;;24835:34;24832:220;;;24896:19;14023:4;24896:7;:19;:::i;:::-;25009:1;24981:16;;;:7;:16;;;;;;24886:29;;-1:-1:-1;;;;;;24981:16:0;24978:63;;25015:16;;;;:7;:16;;;;;:23;;-1:-1:-1;;;;;25015:23:0;;-1:-1:-1;;;;;;25015:23:0;;;;;;24585:471;;:::o;12211:201::-;11233:7;11260:6;-1:-1:-1;;;;;11260:6:0;2291:10;11407:23;11399:68;;;;-1:-1:-1;;;11399:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;12300:22:0;::::1;12292:73;;;::::0;-1:-1:-1;;;12292:73:0;;16135:2:1;12292:73:0::1;::::0;::::1;16117:21:1::0;16174:2;16154:18;;;16147:30;16213:34;16193:18;;;16186:62;-1:-1:-1;;;16264:18:1;;;16257:36;16310:19;;12292:73:0::1;15933:402:1::0;12292:73:0::1;12376:28;12395:8;12376:18;:28::i;:::-;12211:201:::0;:::o;18798:411::-;18863:4;14071;18877:7;:20;18874:328;;;-1:-1:-1;18908:5:0;;18798:411;-1:-1:-1;18798:411:0:o;18874:328::-;18948:12;;18928:16;;;;:7;:16;;;;;;-1:-1:-1;;;;;18928:16:0;;;18948:12;;;;;18928:32;18925:277;;;-1:-1:-1;18971:5:0;;18798:411;-1:-1:-1;18798:411:0:o;18925:277::-;19019:1;18991:16;;;:7;:16;;;;;;-1:-1:-1;;;;;18991:16:0;:30;18988:214;;-1:-1:-1;19032:4:0;;18798:411;-1:-1:-1;18798:411:0:o;18988:214::-;19062:1;19052:7;:11;:30;;;;;19078:4;19067:7;:15;;19052:30;19048:154;;;19098:9;;19148:1;;-1:-1:-1;;;;;19098:9:0;:17;19117;14023:4;19117:7;:17;:::i;:::-;19098:38;;;;;;;;;;;;;2935:25:1;;2923:2;2908:18;;2789:177;19098:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;19098:52:0;;;;18798:411;-1:-1:-1;;18798:411:0:o;19048:154::-;-1:-1:-1;19184:5:0;;18798:411;-1:-1:-1;18798:411:0:o;19048:154::-;18798:411;;;:::o;18358:167::-;18433:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;18433:29:0;-1:-1:-1;;;;;18433:29:0;;;;;;;;:24;;18487:16;18433:24;18487:7;:16::i;:::-;-1:-1:-1;;;;;18478:39:0;;;;;;;;;;;18358:167;;:::o;20491:261::-;20584:4;20601:13;20617:16;20625:7;20617;:16::i;:::-;20601:32;;20663:5;-1:-1:-1;;;;;20652:16:0;:7;-1:-1:-1;;;;;20652:16:0;;:55;;;-1:-1:-1;20672:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;20672:35:0;;;:24;;:35;20652:55;:91;;;-1:-1:-1;;;;;;20440:25:0;;;20416:4;20440:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;20711:32;20644:100;20491:261;-1:-1:-1;;;;20491:261:0:o;21959:555::-;22112:4;-1:-1:-1;;;;;22091:25:0;:17;22100:7;22091:8;:17::i;:::-;-1:-1:-1;;;;;22091:25:0;;22083:79;;;;-1:-1:-1;;;22083:79:0;;16798:2:1;22083:79:0;;;16780:21:1;16837:2;16817:18;;;16810:30;16876:34;16856:18;;;16849:62;-1:-1:-1;;;16927:18:1;;;16920:39;16976:19;;22083:79:0;16596:405:1;22083:79:0;-1:-1:-1;;;;;22181:16:0;;22173:65;;;;-1:-1:-1;;;22173:65:0;;17208:2:1;22173:65:0;;;17190:21:1;17247:2;17227:18;;;17220:30;17286:34;17266:18;;;17259:62;-1:-1:-1;;;17337:18:1;;;17330:34;17381:19;;22173:65:0;17006:400:1;22173:65:0;22355:29;22372:1;22376:7;22355:8;:29::i;:::-;22429:16;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;22429:21:0;-1:-1:-1;;;;;22429:21:0;;;;;;;;;22479:27;;22429:16;;22479:27;;;;;;;21959:555;;;:::o;19465:360::-;19531:7;19567:16;;;:7;:16;;;;;;-1:-1:-1;;;;;19567:16:0;19597:19;;:34;;;;;19630:1;19620:7;:11;19597:34;:53;;;;;19646:4;19635:7;:15;;19597:53;19594:201;;;19671:9;;-1:-1:-1;;;;;19671:9:0;:17;19690;14023:4;19690:7;:17;:::i;:::-;19671:38;;;;;;;;;;;;;2935:25:1;;2923:2;2908:18;;2789:177;19671:38:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19671:38:0;;;;;;;;-1:-1:-1;;19671:38:0;;;;;;;;;;;;:::i;:::-;;;19667:117;;-1:-1:-1;19779:1:0;19667:117;;12572:191;12646:16;12665:6;;-1:-1:-1;;;;;12682:17:0;;;-1:-1:-1;;;;;;12682:17:0;;;;;;12715:40;;12665:6;;;;;;;12715:40;;12646:16;12715:40;12635:128;12572:191;:::o;22872:121::-;22949:36;;22977:7;;-1:-1:-1;;;;;22949:36:0;;;22966:4;;22949:36;;;;;22872:121;;:::o;19996:315::-;20151:8;-1:-1:-1;;;;;20142:17:0;:5;-1:-1:-1;;;;;20142:17:0;;;20134:55;;;;-1:-1:-1;;;20134:55:0;;17613:2:1;20134:55:0;;;17595:21:1;17652:2;17632:18;;;17625:30;17691:27;17671:18;;;17664:55;17736:18;;20134:55:0;17411:349:1;20134:55:0;-1:-1:-1;;;;;20200:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;20200:46:0;;;;;;;;;;20262:41;;540::1;;;20262::0;;513:18:1;20262:41:0;;;;;;;19996:315;;;:::o;21636:::-;21793:28;21803:4;21809:2;21813:7;21793:9;:28::i;:::-;21840:48;21863:4;21869:2;21873:7;21882:5;21840:22;:48::i;:::-;21832:111;;;;-1:-1:-1;;;21832:111:0;;;;;;;:::i;25299:723::-;25355:13;25576:10;25572:53;;-1:-1:-1;;25603:10:0;;;;;;;;;;;;-1:-1:-1;;;25603:10:0;;;;;25299:723::o;25572:53::-;25650:5;25635:12;25691:78;25698:9;;25691:78;;25724:8;;;;:::i;:::-;;-1:-1:-1;25747:10:0;;-1:-1:-1;25755:2:0;25747:10;;:::i;:::-;;;25691:78;;;25779:19;25811:6;25801:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25801:17:0;;25779:39;;25829:154;25836:10;;25829:154;;25863:11;25873:1;25863:11;;:::i;:::-;;-1:-1:-1;25932:10:0;25940:2;25932:5;:10;:::i;:::-;25919:24;;:2;:24;:::i;:::-;25906:39;;25889:6;25896;25889:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;25889:56:0;;;;;;;;-1:-1:-1;25960:11:0;25969:2;25960:11;;:::i;:::-;;;25829:154;;23438:799;23593:4;-1:-1:-1;;;;;23614:13:0;;28070:20;28118:8;23610:620;;23650:72;;-1:-1:-1;;;23650:72:0;;-1:-1:-1;;;;;23650:36:0;;;;;:72;;2291:10;;23701:4;;23707:7;;23716:5;;23650:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23650:72:0;;;;;;;;-1:-1:-1;;23650:72:0;;;;;;;;;;;;:::i;:::-;;;23646:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;23892:13:0;;23888:272;;23935:60;;-1:-1:-1;;;23935:60:0;;;;;;;:::i;23888:272::-;24110:6;24104:13;24095:6;24091:2;24087:15;24080:38;23646:529;-1:-1:-1;;;;;;23773:51:0;-1:-1:-1;;;23773:51:0;;-1:-1:-1;23766:58:0;;23610:620;-1:-1:-1;24214:4:0;23438:799;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:592::-;663:6;671;724:2;712:9;703:7;699:23;695:32;692:52;;;740:1;737;730:12;692:52;780:9;767:23;809:18;850:2;842:6;839:14;836:34;;;866:1;863;856:12;836:34;904:6;893:9;889:22;879:32;;949:7;942:4;938:2;934:13;930:27;920:55;;971:1;968;961:12;920:55;1011:2;998:16;1037:2;1029:6;1026:14;1023:34;;;1053:1;1050;1043:12;1023:34;1098:7;1093:2;1084:6;1080:2;1076:15;1072:24;1069:37;1066:57;;;1119:1;1116;1109:12;1066:57;1150:2;1142:11;;;;;1172:6;;-1:-1:-1;592:592:1;;-1:-1:-1;;;;592:592:1:o;1189:258::-;1261:1;1271:113;1285:6;1282:1;1279:13;1271:113;;;1361:11;;;1355:18;1342:11;;;1335:39;1307:2;1300:10;1271:113;;;1402:6;1399:1;1396:13;1393:48;;;-1:-1:-1;;1437:1:1;1419:16;;1412:27;1189:258::o;1452:::-;1494:3;1532:5;1526:12;1559:6;1554:3;1547:19;1575:63;1631:6;1624:4;1619:3;1615:14;1608:4;1601:5;1597:16;1575:63;:::i;:::-;1692:2;1671:15;-1:-1:-1;;1667:29:1;1658:39;;;;1699:4;1654:50;;1452:258;-1:-1:-1;;1452:258:1:o;1715:220::-;1864:2;1853:9;1846:21;1827:4;1884:45;1925:2;1914:9;1910:18;1902:6;1884:45;:::i;1940:180::-;1999:6;2052:2;2040:9;2031:7;2027:23;2023:32;2020:52;;;2068:1;2065;2058:12;2020:52;-1:-1:-1;2091:23:1;;1940:180;-1:-1:-1;1940:180:1:o;2333:131::-;-1:-1:-1;;;;;2408:31:1;;2398:42;;2388:70;;2454:1;2451;2444:12;2469:315;2537:6;2545;2598:2;2586:9;2577:7;2573:23;2569:32;2566:52;;;2614:1;2611;2604:12;2566:52;2653:9;2640:23;2672:31;2697:5;2672:31;:::i;:::-;2722:5;2774:2;2759:18;;;;2746:32;;-1:-1:-1;;;2469:315:1:o;2971:247::-;3030:6;3083:2;3071:9;3062:7;3058:23;3054:32;3051:52;;;3099:1;3096;3089:12;3051:52;3138:9;3125:23;3157:31;3182:5;3157:31;:::i;3223:456::-;3300:6;3308;3316;3369:2;3357:9;3348:7;3344:23;3340:32;3337:52;;;3385:1;3382;3375:12;3337:52;3424:9;3411:23;3443:31;3468:5;3443:31;:::i;:::-;3493:5;-1:-1:-1;3550:2:1;3535:18;;3522:32;3563:33;3522:32;3563:33;:::i;:::-;3223:456;;3615:7;;-1:-1:-1;;;3669:2:1;3654:18;;;;3641:32;;3223:456::o;3684:160::-;3749:20;;3805:13;;3798:21;3788:32;;3778:60;;3834:1;3831;3824:12;3849:180;3905:6;3958:2;3946:9;3937:7;3933:23;3929:32;3926:52;;;3974:1;3971;3964:12;3926:52;3997:26;4013:9;3997:26;:::i;4034:615::-;4120:6;4128;4181:2;4169:9;4160:7;4156:23;4152:32;4149:52;;;4197:1;4194;4187:12;4149:52;4237:9;4224:23;4266:18;4307:2;4299:6;4296:14;4293:34;;;4323:1;4320;4313:12;4293:34;4361:6;4350:9;4346:22;4336:32;;4406:7;4399:4;4395:2;4391:13;4387:27;4377:55;;4428:1;4425;4418:12;4377:55;4468:2;4455:16;4494:2;4486:6;4483:14;4480:34;;;4510:1;4507;4500:12;4480:34;4563:7;4558:2;4548:6;4545:1;4541:14;4537:2;4533:23;4529:32;4526:45;4523:65;;;4584:1;4581;4574:12;4654:315;4719:6;4727;4780:2;4768:9;4759:7;4755:23;4751:32;4748:52;;;4796:1;4793;4786:12;4748:52;4835:9;4822:23;4854:31;4879:5;4854:31;:::i;:::-;4904:5;-1:-1:-1;4928:35:1;4959:2;4944:18;;4928:35;:::i;:::-;4918:45;;4654:315;;;;;:::o;4974:127::-;5035:10;5030:3;5026:20;5023:1;5016:31;5066:4;5063:1;5056:15;5090:4;5087:1;5080:15;5106:631;5170:5;5200:18;5241:2;5233:6;5230:14;5227:40;;;5247:18;;:::i;:::-;5322:2;5316:9;5290:2;5376:15;;-1:-1:-1;;5372:24:1;;;5398:2;5368:33;5364:42;5352:55;;;5422:18;;;5442:22;;;5419:46;5416:72;;;5468:18;;:::i;:::-;5508:10;5504:2;5497:22;5537:6;5528:15;;5567:6;5559;5552:22;5607:3;5598:6;5593:3;5589:16;5586:25;5583:45;;;5624:1;5621;5614:12;5583:45;5674:6;5669:3;5662:4;5654:6;5650:17;5637:44;5729:1;5722:4;5713:6;5705;5701:19;5697:30;5690:41;;;;5106:631;;;;;:::o;5742:794::-;5837:6;5845;5853;5861;5914:3;5902:9;5893:7;5889:23;5885:33;5882:53;;;5931:1;5928;5921:12;5882:53;5970:9;5957:23;5989:31;6014:5;5989:31;:::i;:::-;6039:5;-1:-1:-1;6096:2:1;6081:18;;6068:32;6109:33;6068:32;6109:33;:::i;:::-;6161:7;-1:-1:-1;6215:2:1;6200:18;;6187:32;;-1:-1:-1;6270:2:1;6255:18;;6242:32;6297:18;6286:30;;6283:50;;;6329:1;6326;6319:12;6283:50;6352:22;;6405:4;6397:13;;6393:27;-1:-1:-1;6383:55:1;;6434:1;6431;6424:12;6383:55;6457:73;6522:7;6517:2;6504:16;6499:2;6495;6491:11;6457:73;:::i;:::-;6447:83;;;5742:794;;;;;;;:::o;6541:450::-;6610:6;6663:2;6651:9;6642:7;6638:23;6634:32;6631:52;;;6679:1;6676;6669:12;6631:52;6719:9;6706:23;6752:18;6744:6;6741:30;6738:50;;;6784:1;6781;6774:12;6738:50;6807:22;;6860:4;6852:13;;6848:27;-1:-1:-1;6838:55:1;;6889:1;6886;6879:12;6838:55;6912:73;6977:7;6972:2;6959:16;6954:2;6950;6946:11;6912:73;:::i;6996:388::-;7064:6;7072;7125:2;7113:9;7104:7;7100:23;7096:32;7093:52;;;7141:1;7138;7131:12;7093:52;7180:9;7167:23;7199:31;7224:5;7199:31;:::i;:::-;7249:5;-1:-1:-1;7306:2:1;7291:18;;7278:32;7319:33;7278:32;7319:33;:::i;:::-;7371:7;7361:17;;;6996:388;;;;;:::o;7389:356::-;7591:2;7573:21;;;7610:18;;;7603:30;7669:34;7664:2;7649:18;;7642:62;7736:2;7721:18;;7389:356::o;8156:380::-;8235:1;8231:12;;;;8278;;;8299:61;;8353:4;8345:6;8341:17;8331:27;;8299:61;8406:2;8398:6;8395:14;8375:18;8372:38;8369:161;;;8452:10;8447:3;8443:20;8440:1;8433:31;8487:4;8484:1;8477:15;8515:4;8512:1;8505:15;8369:161;;8156:380;;;:::o;10193:413::-;10395:2;10377:21;;;10434:2;10414:18;;;10407:30;10473:34;10468:2;10453:18;;10446:62;-1:-1:-1;;;10539:2:1;10524:18;;10517:47;10596:3;10581:19;;10193:413::o;11840:127::-;11901:10;11896:3;11892:20;11889:1;11882:31;11932:4;11929:1;11922:15;11956:4;11953:1;11946:15;11972:135;12011:3;-1:-1:-1;;12032:17:1;;12029:43;;;12052:18;;:::i;:::-;-1:-1:-1;12099:1:1;12088:13;;11972:135::o;12472:128::-;12512:3;12543:1;12539:6;12536:1;12533:13;12530:39;;;12549:18;;:::i;:::-;-1:-1:-1;12585:9:1;;12472:128::o;13010:127::-;13071:10;13066:3;13062:20;13059:1;13052:31;13102:4;13099:1;13092:15;13126:4;13123:1;13116:15;13486:125;13526:4;13554:1;13551;13548:8;13545:34;;;13559:18;;:::i;:::-;-1:-1:-1;13596:9:1;;13486:125::o;14838:664::-;15065:3;15103:6;15097:13;15119:53;15165:6;15160:3;15153:4;15145:6;15141:17;15119:53;:::i;:::-;15235:13;;15194:16;;;;15257:57;15235:13;15194:16;15291:4;15279:17;;15257:57;:::i;:::-;15381:13;;15336:20;;;15403:57;15381:13;15336:20;15437:4;15425:17;;15403:57;:::i;:::-;15476:20;;14838:664;-1:-1:-1;;;;;14838:664:1:o;16340:251::-;16410:6;16463:2;16451:9;16442:7;16438:23;16434:32;16431:52;;;16479:1;16476;16469:12;16431:52;16511:9;16505:16;16530:31;16555:5;16530:31;:::i;17765:414::-;17967:2;17949:21;;;18006:2;17986:18;;;17979:30;18045:34;18040:2;18025:18;;18018:62;-1:-1:-1;;;18111:2:1;18096:18;;18089:48;18169:3;18154:19;;17765:414::o;18184:127::-;18245:10;18240:3;18236:20;18233:1;18226:31;18276:4;18273:1;18266:15;18300:4;18297:1;18290:15;18316:120;18356:1;18382;18372:35;;18387:18;;:::i;:::-;-1:-1:-1;18421:9:1;;18316:120::o;18441:112::-;18473:1;18499;18489:35;;18504:18;;:::i;:::-;-1:-1:-1;18538:9:1;;18441:112::o;18558:489::-;-1:-1:-1;;;;;18827:15:1;;;18809:34;;18879:15;;18874:2;18859:18;;18852:43;18926:2;18911:18;;18904:34;;;18974:3;18969:2;18954:18;;18947:31;;;18752:4;;18995:46;;19021:19;;19013:6;18995:46;:::i;:::-;18987:54;18558:489;-1:-1:-1;;;;;;18558:489:1:o;19052:249::-;19121:6;19174:2;19162:9;19153:7;19149:23;19145:32;19142:52;;;19190:1;19187;19180:12;19142:52;19222:9;19216:16;19241:30;19265:5;19241:30;:::i

Swarm Source

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