ETH Price: $3,355.66 (-2.86%)
Gas: 2 Gwei

Token

Toeken (TOEKEN)
 

Overview

Max Total Supply

1,059,401.047627314814814245 TOEKEN

Holders

136

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
65,000 TOEKEN

Value
$0.00
0x2b3da7b79ce082b8b8cf1185d9b5cf6d08f2e72b
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:
Toeken

Compiler Version
v0.8.12+commit.f00d7308

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

// File: @openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, _allowances[owner][spender] + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = _allowances[owner][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Spend `amount` form the allowance of `owner` toward `spender`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

// File: Toeken.sol


pragma solidity ^0.8.12;





contract Toeken is ERC20, Ownable, ReentrancyGuard {
    IERC721 public TiptoePunks;
    IERC721 public FootPunks;

    uint256 internal reserved;
    uint256 public startTime;

    mapping(address => uint256) public rewards;
    mapping(address => uint256) public lastUpdate;
    mapping(address => bool) public allowed;

    uint256 public constant TIPTOE_BASE_RATE = 5 ether;
    uint256 public constant FOOT_BASE_RATE = 75 ether;
    uint256 public constant MAX_RESERVED_AMOUNT = 100_000 ether;

    constructor(address tiptoePunks, address footPunks) ERC20("Toeken", "TOEKEN") {
        setTiptoePunks(tiptoePunks);
        setFootPunks(footPunks);
    }

    modifier onlyAllowed() {
        require(allowed[msg.sender], "Caller not allowed");
        _;
    }

    function setTiptoePunks(address tiptoePunks) public onlyOwner {
        TiptoePunks = IERC721(tiptoePunks);
        allowed[tiptoePunks] = true;
    }

    function setFootPunks(address footPunks) public onlyOwner {
        FootPunks = IERC721(footPunks);
        allowed[footPunks] = true;
    }

    function startRewards(uint256 timestamp) public onlyOwner {
        startTime = timestamp;
    }

    function stopRewards() public onlyOwner {
        startTime = 0;
    }

    function setAllowed(address account, bool isAllowed) public onlyOwner {
        allowed[account] = isAllowed;
    }

    function reserve(uint256 amount) external onlyOwner {
        require(reserved + amount <= MAX_RESERVED_AMOUNT, "Would exceed max reserved amount");
        _mint(msg.sender, amount);
        reserved += amount;
    }

    function burn(uint256 amount) external onlyOwner {
        _burn(msg.sender, amount);
    }

    function getClaimable(address account) external view returns (uint256) {
        return rewards[account] + getPending(account);
    }

    function getPending(address account) internal view returns (uint256) {
        if (startTime == 0) {
            return 0;
        }

        uint256 timeMultiplier = (block.timestamp -
            (lastUpdate[account] > startTime ? lastUpdate[account] : startTime));
        uint256 pendingFromTiptoe = (TiptoePunks.balanceOf(account) * TIPTOE_BASE_RATE * timeMultiplier) / 1 days;
        uint256 pendingFromFoot = (FootPunks.balanceOf(account) * FOOT_BASE_RATE * timeMultiplier) / 1 days;

        return pendingFromTiptoe + pendingFromFoot;
    }

    function update(address from, address to) external onlyAllowed {
        if (from != address(0)) {
            rewards[from] += getPending(from);
            lastUpdate[from] = block.timestamp;
        }
        if (to != address(0)) {
            rewards[to] += getPending(to);
            lastUpdate[to] = block.timestamp;
        }
    }

    function claim(address account) external nonReentrant {
        require(msg.sender == account || allowed[msg.sender], "Caller not allowed");
        _mint(account, rewards[account] + getPending(account));
        rewards[account] = 0;
        lastUpdate[account] = block.timestamp;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"tiptoePunks","type":"address"},{"internalType":"address","name":"footPunks","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"FOOT_BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FootPunks","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_RESERVED_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TIPTOE_BASE_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TiptoePunks","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastUpdate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isAllowed","type":"bool"}],"name":"setAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"footPunks","type":"address"}],"name":"setFootPunks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tiptoePunks","type":"address"}],"name":"setTiptoePunks","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"startRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stopRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001a6938038062001a69833981016040819052620000349162000307565b604051806040016040528060068152602001652a37b2b5b2b760d11b815250604051806040016040528060068152602001652a27a2a5a2a760d11b81525081600390805190602001906200008a92919062000244565b508051620000a090600490602084019062000244565b505050620000bd620000b7620000e060201b60201c565b620000e4565b6001600655620000cd8262000136565b620000d881620001bf565b50506200037c565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620001855760405162461bcd60e51b8152602060048201819052602482015260008051602062001a4983398151915260448201526064015b60405180910390fd5b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b6005546001600160a01b031633146200020a5760405162461bcd60e51b8152602060048201819052602482015260008051602062001a4983398151915260448201526064016200017c565b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b82805462000252906200033f565b90600052602060002090601f016020900481019282620002765760008555620002c1565b82601f106200029157805160ff1916838001178555620002c1565b82800160010185558215620002c1579182015b82811115620002c1578251825591602001919060010190620002a4565b50620002cf929150620002d3565b5090565b5b80821115620002cf5760008155600101620002d4565b80516001600160a01b03811681146200030257600080fd5b919050565b600080604083850312156200031b57600080fd5b6200032683620002ea565b91506200033660208401620002ea565b90509250929050565b600181811c908216806200035457607f821691505b602082108114156200037657634e487b7160e01b600052602260045260246000fd5b50919050565b6116bd806200038c6000396000f3fe608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063797008c61161011a578063a8eef670116100ad578063d63a8e111161007c578063d63a8e1114610440578063dd62ed3e14610463578063f09f18e31461049c578063f2fde38b146104ad578063f3afc2a2146104c057600080fd5b8063a8eef670146103e7578063a9059cbb146103fa578063c640752d1461040d578063cb03fb1e1461042057600080fd5b80639387c463116100e95780639387c463146103a657806395d89b41146103b9578063a457c2d7146103c1578063a583024b146103d457600080fd5b8063797008c614610357578063819b25ba1461035f5780638d3d382a146103725780638da5cb5b1461038157600080fd5b806342966c6811610192578063693ed8d411610161578063693ed8d41461030a57806370a082311461031d578063715018a61461034657806378e979251461034e57600080fd5b806342966c68146102c15780634697f05d146102d457806352c1c538146102e757806352e7ad05146102fa57600080fd5b80631e83409a116101ce5780631e83409a1461027757806323b872dd1461028c578063313ce5671461029f57806339509351146102ae57600080fd5b806306fdde03146102005780630700037d1461021e578063095ea7b31461024c57806318160ddd1461026f575b600080fd5b6102086104d3565b60405161021591906113f7565b60405180910390f35b61023e61022c366004611468565b600b6020526000908152604090205481565b604051908152602001610215565b61025f61025a36600461148a565b610565565b6040519015158152602001610215565b60025461023e565b61028a610285366004611468565b61057d565b005b61025f61029a3660046114b4565b6106a4565b60405160128152602001610215565b61025f6102bc36600461148a565b6106c8565b61028a6102cf3660046114f0565b610707565b61028a6102e2366004611509565b61073e565b61028a6102f5366004611468565b610793565b61023e680410d586a20a4c000081565b61028a6103183660046114f0565b6107f7565b61023e61032b366004611468565b6001600160a01b031660009081526020819052604090205490565b61028a610826565b61023e600a5481565b61028a61085c565b61028a61036d3660046114f0565b61088d565b61023e674563918244f4000081565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610215565b60075461038e906001600160a01b031681565b610208610942565b61025f6103cf36600461148a565b610951565b61023e6103e2366004611468565b6109e3565b60085461038e906001600160a01b031681565b61025f61040836600461148a565b610a17565b61028a61041b366004611545565b610a25565b61023e61042e366004611468565b600c6020526000908152604090205481565b61025f61044e366004611468565b600d6020526000908152604090205460ff1681565b61023e610471366004611545565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61023e69152d02c7e14af680000081565b61028a6104bb366004611468565b610b3f565b61028a6104ce366004611468565b610bd7565b6060600380546104e290611578565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90611578565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b600033610573818585610c3b565b5060019392505050565b600260065414156105d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600655336001600160a01b03821614806106005750336000908152600d602052604090205460ff165b6106415760405162461bcd60e51b815260206004820152601260248201527110d85b1b195c881b9bdd08185b1b1bddd95960721b60448201526064016105cc565b6106768161064e83610d60565b6001600160a01b0384166000908152600b602052604090205461067191906115c9565b610f20565b6001600160a01b03166000908152600b60209081526040808320839055600c90915290204290556001600655565b6000336106b2858285610fff565b6106bd858585611091565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061057390829086906107029087906115c9565b610c3b565b6005546001600160a01b031633146107315760405162461bcd60e51b81526004016105cc906115e1565b61073b338261125f565b50565b6005546001600160a01b031633146107685760405162461bcd60e51b81526004016105cc906115e1565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146107bd5760405162461bcd60e51b81526004016105cc906115e1565b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b6005546001600160a01b031633146108215760405162461bcd60e51b81526004016105cc906115e1565b600a55565b6005546001600160a01b031633146108505760405162461bcd60e51b81526004016105cc906115e1565b61085a60006113a5565b565b6005546001600160a01b031633146108865760405162461bcd60e51b81526004016105cc906115e1565b6000600a55565b6005546001600160a01b031633146108b75760405162461bcd60e51b81526004016105cc906115e1565b69152d02c7e14af6800000816009546108d091906115c9565b111561091e5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e7460448201526064016105cc565b6109283382610f20565b806009600082825461093a91906115c9565b909155505050565b6060600480546104e290611578565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105cc565b6106bd8286868403610c3b565b60006109ee82610d60565b6001600160a01b0383166000908152600b6020526040902054610a1191906115c9565b92915050565b600033610573818585611091565b336000908152600d602052604090205460ff16610a795760405162461bcd60e51b815260206004820152601260248201527110d85b1b195c881b9bdd08185b1b1bddd95960721b60448201526064016105cc565b6001600160a01b03821615610ada57610a9182610d60565b6001600160a01b0383166000908152600b602052604081208054909190610ab99084906115c9565b90915550506001600160a01b0382166000908152600c602052604090204290555b6001600160a01b03811615610b3b57610af281610d60565b6001600160a01b0382166000908152600b602052604081208054909190610b1a9084906115c9565b90915550506001600160a01b0381166000908152600c602052604090204290555b5050565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016105cc906115e1565b6001600160a01b038116610bce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105cc565b61073b816113a5565b6005546001600160a01b03163314610c015760405162461bcd60e51b81526004016105cc906115e1565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316610c9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105cc565b6001600160a01b038216610cfe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105cc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000600a5460001415610d7557506000919050565b600a546001600160a01b0383166000908152600c6020526040812054909110610da057600a54610dba565b6001600160a01b0383166000908152600c60205260409020545b610dc49042611616565b6007546040516370a0823160e01b81526001600160a01b03868116600483015292935060009262015180928592674563918244f4000092909116906370a0823190602401602060405180830381865afa158015610e25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e49919061162d565b610e539190611646565b610e5d9190611646565b610e679190611665565b6008546040516370a0823160e01b81526001600160a01b03878116600483015292935060009262015180928692680410d586a20a4c000092909116906370a0823190602401602060405180830381865afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061162d565b610ef79190611646565b610f019190611646565b610f0b9190611665565b9050610f1781836115c9565b95945050505050565b6001600160a01b038216610f765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105cc565b8060026000828254610f8891906115c9565b90915550506001600160a01b03821660009081526020819052604081208054839290610fb59084906115c9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461108b578181101561107e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105cc565b61108b8484848403610c3b565b50505050565b6001600160a01b0383166110f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105cc565b6001600160a01b0382166111575760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105cc565b6001600160a01b038316600090815260208190526040902054818110156111cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105cc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112069084906115c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125291815260200190565b60405180910390a361108b565b6001600160a01b0382166112bf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105cc565b6001600160a01b038216600090815260208190526040902054818110156113335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105cc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611362908490611616565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561142457858101830151858201604001528201611408565b81811115611436576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461146357600080fd5b919050565b60006020828403121561147a57600080fd5b6114838261144c565b9392505050565b6000806040838503121561149d57600080fd5b6114a68361144c565b946020939093013593505050565b6000806000606084860312156114c957600080fd5b6114d28461144c565b92506114e06020850161144c565b9150604084013590509250925092565b60006020828403121561150257600080fd5b5035919050565b6000806040838503121561151c57600080fd5b6115258361144c565b91506020830135801515811461153a57600080fd5b809150509250929050565b6000806040838503121561155857600080fd5b6115618361144c565b915061156f6020840161144c565b90509250929050565b600181811c9082168061158c57607f821691505b602082108114156115ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115dc576115dc6115b3565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015611628576116286115b3565b500390565b60006020828403121561163f57600080fd5b5051919050565b6000816000190483118215151615611660576116606115b3565b500290565b60008261168257634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220ceeb3bf83251a2b5b1da188b204ed97fa78547d1a25d77060613e474e9e4b67c64736f6c634300080c00334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65720000000000000000000000004195f278d75f30b5fbbeb5a4244a8af7259abb450000000000000000000000000f2dedc18b987fca9821cbbbabfaefb40b7564e3

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101fb5760003560e01c8063797008c61161011a578063a8eef670116100ad578063d63a8e111161007c578063d63a8e1114610440578063dd62ed3e14610463578063f09f18e31461049c578063f2fde38b146104ad578063f3afc2a2146104c057600080fd5b8063a8eef670146103e7578063a9059cbb146103fa578063c640752d1461040d578063cb03fb1e1461042057600080fd5b80639387c463116100e95780639387c463146103a657806395d89b41146103b9578063a457c2d7146103c1578063a583024b146103d457600080fd5b8063797008c614610357578063819b25ba1461035f5780638d3d382a146103725780638da5cb5b1461038157600080fd5b806342966c6811610192578063693ed8d411610161578063693ed8d41461030a57806370a082311461031d578063715018a61461034657806378e979251461034e57600080fd5b806342966c68146102c15780634697f05d146102d457806352c1c538146102e757806352e7ad05146102fa57600080fd5b80631e83409a116101ce5780631e83409a1461027757806323b872dd1461028c578063313ce5671461029f57806339509351146102ae57600080fd5b806306fdde03146102005780630700037d1461021e578063095ea7b31461024c57806318160ddd1461026f575b600080fd5b6102086104d3565b60405161021591906113f7565b60405180910390f35b61023e61022c366004611468565b600b6020526000908152604090205481565b604051908152602001610215565b61025f61025a36600461148a565b610565565b6040519015158152602001610215565b60025461023e565b61028a610285366004611468565b61057d565b005b61025f61029a3660046114b4565b6106a4565b60405160128152602001610215565b61025f6102bc36600461148a565b6106c8565b61028a6102cf3660046114f0565b610707565b61028a6102e2366004611509565b61073e565b61028a6102f5366004611468565b610793565b61023e680410d586a20a4c000081565b61028a6103183660046114f0565b6107f7565b61023e61032b366004611468565b6001600160a01b031660009081526020819052604090205490565b61028a610826565b61023e600a5481565b61028a61085c565b61028a61036d3660046114f0565b61088d565b61023e674563918244f4000081565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610215565b60075461038e906001600160a01b031681565b610208610942565b61025f6103cf36600461148a565b610951565b61023e6103e2366004611468565b6109e3565b60085461038e906001600160a01b031681565b61025f61040836600461148a565b610a17565b61028a61041b366004611545565b610a25565b61023e61042e366004611468565b600c6020526000908152604090205481565b61025f61044e366004611468565b600d6020526000908152604090205460ff1681565b61023e610471366004611545565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b61023e69152d02c7e14af680000081565b61028a6104bb366004611468565b610b3f565b61028a6104ce366004611468565b610bd7565b6060600380546104e290611578565b80601f016020809104026020016040519081016040528092919081815260200182805461050e90611578565b801561055b5780601f106105305761010080835404028352916020019161055b565b820191906000526020600020905b81548152906001019060200180831161053e57829003601f168201915b5050505050905090565b600033610573818585610c3b565b5060019392505050565b600260065414156105d55760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064015b60405180910390fd5b6002600655336001600160a01b03821614806106005750336000908152600d602052604090205460ff165b6106415760405162461bcd60e51b815260206004820152601260248201527110d85b1b195c881b9bdd08185b1b1bddd95960721b60448201526064016105cc565b6106768161064e83610d60565b6001600160a01b0384166000908152600b602052604090205461067191906115c9565b610f20565b6001600160a01b03166000908152600b60209081526040808320839055600c90915290204290556001600655565b6000336106b2858285610fff565b6106bd858585611091565b506001949350505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490919061057390829086906107029087906115c9565b610c3b565b6005546001600160a01b031633146107315760405162461bcd60e51b81526004016105cc906115e1565b61073b338261125f565b50565b6005546001600160a01b031633146107685760405162461bcd60e51b81526004016105cc906115e1565b6001600160a01b03919091166000908152600d60205260409020805460ff1916911515919091179055565b6005546001600160a01b031633146107bd5760405162461bcd60e51b81526004016105cc906115e1565b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b6005546001600160a01b031633146108215760405162461bcd60e51b81526004016105cc906115e1565b600a55565b6005546001600160a01b031633146108505760405162461bcd60e51b81526004016105cc906115e1565b61085a60006113a5565b565b6005546001600160a01b031633146108865760405162461bcd60e51b81526004016105cc906115e1565b6000600a55565b6005546001600160a01b031633146108b75760405162461bcd60e51b81526004016105cc906115e1565b69152d02c7e14af6800000816009546108d091906115c9565b111561091e5760405162461bcd60e51b815260206004820181905260248201527f576f756c6420657863656564206d617820726573657276656420616d6f756e7460448201526064016105cc565b6109283382610f20565b806009600082825461093a91906115c9565b909155505050565b6060600480546104e290611578565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156109d65760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016105cc565b6106bd8286868403610c3b565b60006109ee82610d60565b6001600160a01b0383166000908152600b6020526040902054610a1191906115c9565b92915050565b600033610573818585611091565b336000908152600d602052604090205460ff16610a795760405162461bcd60e51b815260206004820152601260248201527110d85b1b195c881b9bdd08185b1b1bddd95960721b60448201526064016105cc565b6001600160a01b03821615610ada57610a9182610d60565b6001600160a01b0383166000908152600b602052604081208054909190610ab99084906115c9565b90915550506001600160a01b0382166000908152600c602052604090204290555b6001600160a01b03811615610b3b57610af281610d60565b6001600160a01b0382166000908152600b602052604081208054909190610b1a9084906115c9565b90915550506001600160a01b0381166000908152600c602052604090204290555b5050565b6005546001600160a01b03163314610b695760405162461bcd60e51b81526004016105cc906115e1565b6001600160a01b038116610bce5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016105cc565b61073b816113a5565b6005546001600160a01b03163314610c015760405162461bcd60e51b81526004016105cc906115e1565b600780546001600160a01b039092166001600160a01b0319909216821790556000908152600d60205260409020805460ff19166001179055565b6001600160a01b038316610c9d5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016105cc565b6001600160a01b038216610cfe5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016105cc565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6000600a5460001415610d7557506000919050565b600a546001600160a01b0383166000908152600c6020526040812054909110610da057600a54610dba565b6001600160a01b0383166000908152600c60205260409020545b610dc49042611616565b6007546040516370a0823160e01b81526001600160a01b03868116600483015292935060009262015180928592674563918244f4000092909116906370a0823190602401602060405180830381865afa158015610e25573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e49919061162d565b610e539190611646565b610e5d9190611646565b610e679190611665565b6008546040516370a0823160e01b81526001600160a01b03878116600483015292935060009262015180928692680410d586a20a4c000092909116906370a0823190602401602060405180830381865afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed919061162d565b610ef79190611646565b610f019190611646565b610f0b9190611665565b9050610f1781836115c9565b95945050505050565b6001600160a01b038216610f765760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016105cc565b8060026000828254610f8891906115c9565b90915550506001600160a01b03821660009081526020819052604081208054839290610fb59084906115c9565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6001600160a01b03838116600090815260016020908152604080832093861683529290522054600019811461108b578181101561107e5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016105cc565b61108b8484848403610c3b565b50505050565b6001600160a01b0383166110f55760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016105cc565b6001600160a01b0382166111575760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016105cc565b6001600160a01b038316600090815260208190526040902054818110156111cf5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016105cc565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906112069084906115c9565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161125291815260200190565b60405180910390a361108b565b6001600160a01b0382166112bf5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016105cc565b6001600160a01b038216600090815260208190526040902054818110156113335760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016105cc565b6001600160a01b0383166000908152602081905260408120838303905560028054849290611362908490611616565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90602001610d53565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600060208083528351808285015260005b8181101561142457858101830151858201604001528201611408565b81811115611436576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b038116811461146357600080fd5b919050565b60006020828403121561147a57600080fd5b6114838261144c565b9392505050565b6000806040838503121561149d57600080fd5b6114a68361144c565b946020939093013593505050565b6000806000606084860312156114c957600080fd5b6114d28461144c565b92506114e06020850161144c565b9150604084013590509250925092565b60006020828403121561150257600080fd5b5035919050565b6000806040838503121561151c57600080fd5b6115258361144c565b91506020830135801515811461153a57600080fd5b809150509250929050565b6000806040838503121561155857600080fd5b6115618361144c565b915061156f6020840161144c565b90509250929050565b600181811c9082168061158c57607f821691505b602082108114156115ad57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b600082198211156115dc576115dc6115b3565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015611628576116286115b3565b500390565b60006020828403121561163f57600080fd5b5051919050565b6000816000190483118215151615611660576116606115b3565b500290565b60008261168257634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220ceeb3bf83251a2b5b1da188b204ed97fa78547d1a25d77060613e474e9e4b67c64736f6c634300080c0033

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

0000000000000000000000004195f278d75f30b5fbbeb5a4244a8af7259abb450000000000000000000000000f2dedc18b987fca9821cbbbabfaefb40b7564e3

-----Decoded View---------------
Arg [0] : tiptoePunks (address): 0x4195F278D75f30b5FbBEb5a4244A8Af7259abB45
Arg [1] : footPunks (address): 0x0f2dEdc18b987fcA9821cbBBABfaefb40B7564E3

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000004195f278d75f30b5fbbeb5a4244a8af7259abb45
Arg [1] : 0000000000000000000000000f2dedc18b987fca9821cbbbabfaefb40b7564e3


Deployed Bytecode Sourcemap

28577:3114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15191:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28766:42;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1131:25:1;;;1119:2;1104:18;28766:42:0;985:177:1;17542:201:0;;;;;;:::i;:::-;;:::i;:::-;;;1591:14:1;;1584:22;1566:41;;1554:2;1539:18;17542:201:0;1426:187:1;16311:108:0;16399:12;;16311:108;;31396:292;;;;;;:::i;:::-;;:::i;:::-;;18323:295;;;;;;:::i;:::-;;:::i;16153:93::-;;;16236:2;2093:36:1;;2081:2;2066:18;16153:93:0;1951:184:1;19027:240:0;;;;;;:::i;:::-;;:::i;30226:93::-;;;;;;:::i;:::-;;:::i;29872:117::-;;;;;;:::i;:::-;;:::i;29535:143::-;;;;;;:::i;:::-;;:::i;28972:49::-;;29013:8;28972:49;;29686:98;;;;;;:::i;:::-;;:::i;16482:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;16583:18:0;16556:7;16583:18;;;;;;;;;;;;16482:127;27699:103;;;:::i;28733:24::-;;;;;;29792:72;;;:::i;29997:221::-;;;;;;:::i;:::-;;:::i;28915:50::-;;28958:7;28915:50;;27048:87;27121:6;;-1:-1:-1;;;;;27121:6:0;27048:87;;;-1:-1:-1;;;;;2841:32:1;;;2823:51;;2811:2;2796:18;27048:87:0;2677:203:1;28635:26:0;;;;;-1:-1:-1;;;;;28635:26:0;;;15410:104;;;:::i;19770:438::-;;;;;;:::i;:::-;;:::i;30327:135::-;;;;;;:::i;:::-;;:::i;28668:24::-;;;;;-1:-1:-1;;;;;28668:24:0;;;16815:193;;;;;;:::i;:::-;;:::i;31039:349::-;;;;;;:::i;:::-;;:::i;28815:45::-;;;;;;:::i;:::-;;;;;;;;;;;;;;28867:39;;;;;;:::i;:::-;;;;;;;;;;;;;;;;17071:151;;;;;;:::i;:::-;-1:-1:-1;;;;;17187:18:0;;;17160:7;17187:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17071:151;29028:59;;29074:13;29028:59;;27957:201;;;;;;:::i;:::-;;:::i;29374:153::-;;;;;;:::i;:::-;;:::i;15191:100::-;15245:13;15278:5;15271:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15191:100;:::o;17542:201::-;17625:4;12911:10;17681:32;12911:10;17697:7;17706:6;17681:8;:32::i;:::-;-1:-1:-1;17731:4:0;;17542:201;-1:-1:-1;;;17542:201:0:o;31396:292::-;11205:1;11803:7;;:19;;11795:63;;;;-1:-1:-1;;;11795:63:0;;3960:2:1;11795:63:0;;;3942:21:1;3999:2;3979:18;;;3972:30;4038:33;4018:18;;;4011:61;4089:18;;11795:63:0;;;;;;;;;11205:1;11936:7;:18;31469:10:::1;-1:-1:-1::0;;;;;31469:21:0;::::1;;::::0;:44:::1;;-1:-1:-1::0;31502:10:0::1;31494:19;::::0;;;:7:::1;:19;::::0;;;;;::::1;;31469:44;31461:75;;;::::0;-1:-1:-1;;;31461:75:0;;4320:2:1;31461:75:0::1;::::0;::::1;4302:21:1::0;4359:2;4339:18;;;4332:30;-1:-1:-1;;;4378:18:1;;;4371:48;4436:18;;31461:75:0::1;4118:342:1::0;31461:75:0::1;31547:54;31553:7;31581:19;31592:7;31581:10;:19::i;:::-;-1:-1:-1::0;;;;;31562:16:0;::::1;;::::0;;;:7:::1;:16;::::0;;;;;:38:::1;::::0;;::::1;:::i;:::-;31547:5;:54::i;:::-;-1:-1:-1::0;;;;;31612:16:0::1;31631:1;31612:16:::0;;;:7:::1;:16;::::0;;;;;;;:20;;;31643:10:::1;:19:::0;;;;;31665:15:::1;31643:37:::0;;11161:1;12115:7;:22;31396:292::o;18323:295::-;18454:4;12911:10;18512:38;18528:4;12911:10;18543:6;18512:15;:38::i;:::-;18561:27;18571:4;18577:2;18581:6;18561:9;:27::i;:::-;-1:-1:-1;18606:4:0;;18323:295;-1:-1:-1;;;;18323:295:0:o;19027:240::-;12911:10;19115:4;19196:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;19196:27:0;;;;;;;;;;19115:4;;12911:10;19171:66;;12911:10;;19196:27;;:40;;19226:10;;19196:40;:::i;:::-;19171:8;:66::i;30226:93::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;30286:25:::1;30292:10;30304:6;30286:5;:25::i;:::-;30226:93:::0;:::o;29872:117::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;29953:16:0;;;::::1;;::::0;;;:7:::1;:16;::::0;;;;:28;;-1:-1:-1;;29953:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;29872:117::o;29535:143::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;29604:9:::1;:30:::0;;-1:-1:-1;;;;;29604:30:0;;::::1;-1:-1:-1::0;;;;;;29604:30:0;;::::1;::::0;::::1;::::0;;:9:::1;29645:18:::0;;;:7:::1;:18;::::0;;;;:25;;-1:-1:-1;;29645:25:0::1;29604:30:::0;29645:25:::1;::::0;;29535:143::o;29686:98::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;29755:9:::1;:21:::0;29686:98::o;27699:103::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;27764:30:::1;27791:1;27764:18;:30::i;:::-;27699:103::o:0;29792:72::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;29855:1:::1;29843:9;:13:::0;29792:72::o;29997:221::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;29074:13:::1;30079:6;30068:8;;:17;;;;:::i;:::-;:40;;30060:85;;;::::0;-1:-1:-1;;;30060:85:0;;5293:2:1;30060:85:0::1;::::0;::::1;5275:21:1::0;;;5312:18;;;5305:30;5371:34;5351:18;;;5344:62;5423:18;;30060:85:0::1;5091:356:1::0;30060:85:0::1;30156:25;30162:10;30174:6;30156:5;:25::i;:::-;30204:6;30192:8;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;29997:221:0:o;15410:104::-;15466:13;15499:7;15492:14;;;;;:::i;19770:438::-;12911:10;19863:4;19946:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;19946:27:0;;;;;;;;;;19863:4;;12911:10;19992:35;;;;19984:85;;;;-1:-1:-1;;;19984:85:0;;5654:2:1;19984:85:0;;;5636:21:1;5693:2;5673:18;;;5666:30;5732:34;5712:18;;;5705:62;-1:-1:-1;;;5783:18:1;;;5776:35;5828:19;;19984:85:0;5452:401:1;19984:85:0;20105:60;20114:5;20121:7;20149:15;20130:16;:34;20105:8;:60::i;30327:135::-;30389:7;30435:19;30446:7;30435:10;:19::i;:::-;-1:-1:-1;;;;;30416:16:0;;;;;;:7;:16;;;;;;:38;;;;:::i;:::-;30409:45;30327:135;-1:-1:-1;;30327:135:0:o;16815:193::-;16894:4;12911:10;16950:28;12911:10;16967:2;16971:6;16950:9;:28::i;31039:349::-;29312:10;29304:19;;;;:7;:19;;;;;;;;29296:50;;;;-1:-1:-1;;;29296:50:0;;4320:2:1;29296:50:0;;;4302:21:1;4359:2;4339:18;;;4332:30;-1:-1:-1;;;4378:18:1;;;4371:48;4436:18;;29296:50:0;4118:342:1;29296:50:0;-1:-1:-1;;;;;31117:18:0;::::1;::::0;31113:133:::1;;31169:16;31180:4;31169:10;:16::i;:::-;-1:-1:-1::0;;;;;31152:13:0;::::1;;::::0;;;:7:::1;:13;::::0;;;;:33;;:13;;;:33:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;31200:16:0;::::1;;::::0;;;:10:::1;:16;::::0;;;;31219:15:::1;31200:34:::0;;31113:133:::1;-1:-1:-1::0;;;;;31260:16:0;::::1;::::0;31256:125:::1;;31308:14;31319:2;31308:10;:14::i;:::-;-1:-1:-1::0;;;;;31293:11:0;::::1;;::::0;;;:7:::1;:11;::::0;;;;:29;;:11;;;:29:::1;::::0;;;::::1;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;31337:14:0;::::1;;::::0;;;:10:::1;:14;::::0;;;;31354:15:::1;31337:32:::0;;31256:125:::1;31039:349:::0;;:::o;27957:201::-;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28046:22:0;::::1;28038:73;;;::::0;-1:-1:-1;;;28038:73:0;;6060:2:1;28038:73:0::1;::::0;::::1;6042:21:1::0;6099:2;6079:18;;;6072:30;6138:34;6118:18;;;6111:62;-1:-1:-1;;;6189:18:1;;;6182:36;6235:19;;28038:73:0::1;5858:402:1::0;28038:73:0::1;28122:28;28141:8;28122:18;:28::i;29374:153::-:0;27121:6;;-1:-1:-1;;;;;27121:6:0;12911:10;27268:23;27260:68;;;;-1:-1:-1;;;27260:68:0;;;;;;;:::i;:::-;29447:11:::1;:34:::0;;-1:-1:-1;;;;;29447:34:0;;::::1;-1:-1:-1::0;;;;;;29447:34:0;;::::1;::::0;::::1;::::0;;:11:::1;29492:20:::0;;;:7:::1;:20;::::0;;;;:27;;-1:-1:-1;;29492:27:0::1;29447:34:::0;29492:27:::1;::::0;;29374:153::o;23406:380::-;-1:-1:-1;;;;;23542:19:0;;23534:68;;;;-1:-1:-1;;;23534:68:0;;6467:2:1;23534:68:0;;;6449:21:1;6506:2;6486:18;;;6479:30;6545:34;6525:18;;;6518:62;-1:-1:-1;;;6596:18:1;;;6589:34;6640:19;;23534:68:0;6265:400:1;23534:68:0;-1:-1:-1;;;;;23621:21:0;;23613:68;;;;-1:-1:-1;;;23613:68:0;;6872:2:1;23613:68:0;;;6854:21:1;6911:2;6891:18;;;6884:30;6950:34;6930:18;;;6923:62;-1:-1:-1;;;7001:18:1;;;6994:32;7043:19;;23613:68:0;6670:398:1;23613:68:0;-1:-1:-1;;;;;23694:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23746:32;;1131:25:1;;;23746:32:0;;1104:18:1;23746:32:0;;;;;;;;23406:380;;;:::o;30470:561::-;30530:7;30554:9;;30567:1;30554:14;30550:55;;;-1:-1:-1;30592:1:0;;30470:561;-1:-1:-1;30470:561:0:o;30550:55::-;30697:9;;-1:-1:-1;;;;;30675:19:0;;30617:22;30675:19;;;:10;:19;;;;;;30617:22;;-1:-1:-1;30675:65:0;;30731:9;;30675:65;;;-1:-1:-1;;;;;30709:19:0;;;;;;:10;:19;;;;;;30675:65;30643:98;;:15;:98;:::i;:::-;30782:11;;:30;;-1:-1:-1;;;30782:30:0;;-1:-1:-1;;;;;2841:32:1;;;30782:30:0;;;2823:51:1;30617:125:0;;-1:-1:-1;30753:25:0;;30852:6;;30617:125;;28958:7;;30782:11;;;;:21;;2796:18:1;;30782:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;;;:::i;:::-;:66;;;;:::i;:::-;30781:77;;;;:::i;:::-;30896:9;;:28;;-1:-1:-1;;;30896:28:0;;-1:-1:-1;;;;;2841:32:1;;;30896:28:0;;;2823:51:1;30753:105:0;;-1:-1:-1;30869:23:0;;30962:6;;30944:14;;29013:8;;30896:9;;;;:19;;2796:18:1;;30896:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:45;;;;:::i;:::-;:62;;;;:::i;:::-;30895:73;;;;:::i;:::-;30869:99;-1:-1:-1;30988:35:0;30869:99;30988:17;:35;:::i;:::-;30981:42;30470:561;-1:-1:-1;;;;;30470:561:0:o;21645:399::-;-1:-1:-1;;;;;21729:21:0;;21721:65;;;;-1:-1:-1;;;21721:65:0;;7989:2:1;21721:65:0;;;7971:21:1;8028:2;8008:18;;;8001:30;8067:33;8047:18;;;8040:61;8118:18;;21721:65:0;7787:355:1;21721:65:0;21877:6;21861:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;21894:18:0;;:9;:18;;;;;;;;;;:28;;21916:6;;21894:9;:28;;21916:6;;21894:28;:::i;:::-;;;;-1:-1:-1;;21938:37:0;;1131:25:1;;;-1:-1:-1;;;;;21938:37:0;;;21955:1;;21938:37;;1119:2:1;1104:18;21938:37:0;;;;;;;31039:349;;:::o;24073:453::-;-1:-1:-1;;;;;17187:18:0;;;24208:24;17187:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;24275:37:0;;24271:248;;24357:6;24337:16;:26;;24329:68;;;;-1:-1:-1;;;24329:68:0;;8349:2:1;24329:68:0;;;8331:21:1;8388:2;8368:18;;;8361:30;8427:31;8407:18;;;8400:59;8476:18;;24329:68:0;8147:353:1;24329:68:0;24441:51;24450:5;24457:7;24485:6;24466:16;:25;24441:8;:51::i;:::-;24197:329;24073:453;;;:::o;20687:671::-;-1:-1:-1;;;;;20818:18:0;;20810:68;;;;-1:-1:-1;;;20810:68:0;;8707:2:1;20810:68:0;;;8689:21:1;8746:2;8726:18;;;8719:30;8785:34;8765:18;;;8758:62;-1:-1:-1;;;8836:18:1;;;8829:35;8881:19;;20810:68:0;8505:401:1;20810:68:0;-1:-1:-1;;;;;20897:16:0;;20889:64;;;;-1:-1:-1;;;20889:64:0;;9113:2:1;20889:64:0;;;9095:21:1;9152:2;9132:18;;;9125:30;9191:34;9171:18;;;9164:62;-1:-1:-1;;;9242:18:1;;;9235:33;9285:19;;20889:64:0;8911:399:1;20889:64:0;-1:-1:-1;;;;;21039:15:0;;21017:19;21039:15;;;;;;;;;;;21073:21;;;;21065:72;;;;-1:-1:-1;;;21065:72:0;;9517:2:1;21065:72:0;;;9499:21:1;9556:2;9536:18;;;9529:30;9595:34;9575:18;;;9568:62;-1:-1:-1;;;9646:18:1;;;9639:36;9692:19;;21065:72:0;9315:402:1;21065:72:0;-1:-1:-1;;;;;21173:15:0;;;:9;:15;;;;;;;;;;;21191:20;;;21173:38;;21233:13;;;;;;;;:23;;21205:6;;21173:9;21233:23;;21205:6;;21233:23;:::i;:::-;;;;;;;;21289:2;-1:-1:-1;;;;;21274:26:0;21283:4;-1:-1:-1;;;;;21274:26:0;;21293:6;21274:26;;;;1131:25:1;;1119:2;1104:18;;985:177;21274:26:0;;;;;;;;21313:37;22377:591;;-1:-1:-1;;;;;22461:21:0;;22453:67;;;;-1:-1:-1;;;22453:67:0;;9924:2:1;22453:67:0;;;9906:21:1;9963:2;9943:18;;;9936:30;10002:34;9982:18;;;9975:62;-1:-1:-1;;;10053:18:1;;;10046:31;10094:19;;22453:67:0;9722:397:1;22453:67:0;-1:-1:-1;;;;;22620:18:0;;22595:22;22620:18;;;;;;;;;;;22657:24;;;;22649:71;;;;-1:-1:-1;;;22649:71:0;;10326:2:1;22649:71:0;;;10308:21:1;10365:2;10345:18;;;10338:30;10404:34;10384:18;;;10377:62;-1:-1:-1;;;10455:18:1;;;10448:32;10497:19;;22649:71:0;10124:398:1;22649:71:0;-1:-1:-1;;;;;22756:18:0;;:9;:18;;;;;;;;;;22777:23;;;22756:44;;22822:12;:22;;22794:6;;22756:9;22822:22;;22794:6;;22822:22;:::i;:::-;;;;-1:-1:-1;;22862:37:0;;1131:25:1;;;22888:1:0;;-1:-1:-1;;;;;22862:37:0;;;;;1119:2:1;1104:18;22862:37:0;985:177:1;28318:191:0;28411:6;;;-1:-1:-1;;;;;28428:17:0;;;-1:-1:-1;;;;;;28428:17:0;;;;;;;28461:40;;28411:6;;;28428:17;28411:6;;28461:40;;28392:16;;28461:40;28381:128;28318:191;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:186::-;853:6;906:2;894:9;885:7;881:23;877:32;874:52;;;922:1;919;912:12;874:52;945:29;964:9;945:29;:::i;:::-;935:39;794:186;-1:-1:-1;;;794:186:1:o;1167:254::-;1235:6;1243;1296:2;1284:9;1275:7;1271:23;1267:32;1264:52;;;1312:1;1309;1302:12;1264:52;1335:29;1354:9;1335:29;:::i;:::-;1325:39;1411:2;1396:18;;;;1383:32;;-1:-1:-1;;;1167:254:1:o;1618:328::-;1695:6;1703;1711;1764:2;1752:9;1743:7;1739:23;1735:32;1732:52;;;1780:1;1777;1770:12;1732:52;1803:29;1822:9;1803:29;:::i;:::-;1793:39;;1851:38;1885:2;1874:9;1870:18;1851:38;:::i;:::-;1841:48;;1936:2;1925:9;1921:18;1908:32;1898:42;;1618:328;;;;;:::o;2140:180::-;2199:6;2252:2;2240:9;2231:7;2227:23;2223:32;2220:52;;;2268:1;2265;2258:12;2220:52;-1:-1:-1;2291:23:1;;2140:180;-1:-1:-1;2140:180:1:o;2325:347::-;2390:6;2398;2451:2;2439:9;2430:7;2426:23;2422:32;2419:52;;;2467:1;2464;2457:12;2419:52;2490:29;2509:9;2490:29;:::i;:::-;2480:39;;2569:2;2558:9;2554:18;2541:32;2616:5;2609:13;2602:21;2595:5;2592:32;2582:60;;2638:1;2635;2628:12;2582:60;2661:5;2651:15;;;2325:347;;;;;:::o;3108:260::-;3176:6;3184;3237:2;3225:9;3216:7;3212:23;3208:32;3205:52;;;3253:1;3250;3243:12;3205:52;3276:29;3295:9;3276:29;:::i;:::-;3266:39;;3324:38;3358:2;3347:9;3343:18;3324:38;:::i;:::-;3314:48;;3108:260;;;;;:::o;3373:380::-;3452:1;3448:12;;;;3495;;;3516:61;;3570:4;3562:6;3558:17;3548:27;;3516:61;3623:2;3615:6;3612:14;3592:18;3589:38;3586:161;;;3669:10;3664:3;3660:20;3657:1;3650:31;3704:4;3701:1;3694:15;3732:4;3729:1;3722:15;3586:161;;3373:380;;;:::o;4465:127::-;4526:10;4521:3;4517:20;4514:1;4507:31;4557:4;4554:1;4547:15;4581:4;4578:1;4571:15;4597:128;4637:3;4668:1;4664:6;4661:1;4658:13;4655:39;;;4674:18;;:::i;:::-;-1:-1:-1;4710:9:1;;4597:128::o;4730:356::-;4932:2;4914:21;;;4951:18;;;4944:30;5010:34;5005:2;4990:18;;4983:62;5077:2;5062:18;;4730:356::o;7073:125::-;7113:4;7141:1;7138;7135:8;7132:34;;;7146:18;;:::i;:::-;-1:-1:-1;7183:9:1;;7073:125::o;7203:184::-;7273:6;7326:2;7314:9;7305:7;7301:23;7297:32;7294:52;;;7342:1;7339;7332:12;7294:52;-1:-1:-1;7365:16:1;;7203:184;-1:-1:-1;7203:184:1:o;7392:168::-;7432:7;7498:1;7494;7490:6;7486:14;7483:1;7480:21;7475:1;7468:9;7461:17;7457:45;7454:71;;;7505:18;;:::i;:::-;-1:-1:-1;7545:9:1;;7392:168::o;7565:217::-;7605:1;7631;7621:132;;7675:10;7670:3;7666:20;7663:1;7656:31;7710:4;7707:1;7700:15;7738:4;7735:1;7728:15;7621:132;-1:-1:-1;7767:9:1;;7565:217::o

Swarm Source

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