ETH Price: $2,454.63 (+1.34%)
Gas: 7.68 Gwei

Contract

0x634239cfA331Df0291653139d1a6083B9cf705e3
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Transaction Hash
Method
Block
From
To
Transfer208992542024-10-05 12:11:5945 hrs ago1728130319IN
DeSpace: DES Token
0 ETH0.000246625.16631672
Transfer208263242024-09-25 8:07:1112 days ago1727251631IN
DeSpace: DES Token
0 ETH0.0011765722.39514266
Transfer207938732024-09-20 19:24:4716 days ago1726860287IN
DeSpace: DES Token
0 ETH0.0005552511.63156413
Transfer206729432024-09-03 22:08:3533 days ago1725401315IN
DeSpace: DES Token
0 ETH0.000110592.10562245
Transfer206059682024-08-25 13:40:5942 days ago1724593259IN
DeSpace: DES Token
0 ETH0.000075271.5765767
Approve206059582024-08-25 13:38:5942 days ago1724593139IN
DeSpace: DES Token
0 ETH0.000087981.86576078
Approve205783002024-08-21 16:50:4746 days ago1724259047IN
DeSpace: DES Token
0 ETH0.000227694.85582786
Approve205673062024-08-20 3:59:1148 days ago1724126351IN
DeSpace: DES Token
0 ETH0.000054852.2
Transfer205652802024-08-19 21:12:4748 days ago1724101967IN
DeSpace: DES Token
0 ETH0.000138932.64457997
Transfer205274022024-08-14 14:15:2353 days ago1723644923IN
DeSpace: DES Token
0 ETH0.0007557514.39183591
Transfer205269662024-08-14 12:47:3553 days ago1723639655IN
DeSpace: DES Token
0 ETH0.000318286.05823358
Transfer205036422024-08-11 6:40:1157 days ago1723358411IN
DeSpace: DES Token
0 ETH0.000152452.90191239
Approve204152822024-07-29 22:42:2369 days ago1722292943IN
DeSpace: DES Token
0 ETH0.000156473.31815598
Transfer203917542024-07-26 15:55:2372 days ago1722009323IN
DeSpace: DES Token
0 ETH0.000273245.20107947
Transfer203740682024-07-24 4:39:3575 days ago1721795975IN
DeSpace: DES Token
0 ETH0.000156474.41558849
Approve203613222024-07-22 9:57:4776 days ago1721642267IN
DeSpace: DES Token
0 ETH0.000338417.16731023
Transfer203612492024-07-22 9:43:1177 days ago1721641391IN
DeSpace: DES Token
0 ETH0.000370747.05688643
Approve203600142024-07-22 5:34:2377 days ago1721626463IN
DeSpace: DES Token
0 ETH0.000067272.69818575
Transfer203094762024-07-15 4:18:3584 days ago1721017115IN
DeSpace: DES Token
0 ETH0.000228624.35173228
Approve202622852024-07-08 14:07:2390 days ago1720447643IN
DeSpace: DES Token
0 ETH0.000319376.77279436
Approve202002522024-06-29 22:13:4799 days ago1719699227IN
DeSpace: DES Token
0 ETH0.000089571.9078377
Approve201950722024-06-29 4:51:23100 days ago1719636683IN
DeSpace: DES Token
0 ETH0.000122942.60384194
Transfer199886682024-05-31 8:37:23129 days ago1717144643IN
DeSpace: DES Token
0 ETH0.000352687.39187973
Approve199589932024-05-27 5:02:47133 days ago1716786167IN
DeSpace: DES Token
0 ETH0.000189217.58937112
Approve199532152024-05-26 9:39:59134 days ago1716716399IN
DeSpace: DES Token
0 ETH0.000168083.57991916
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
DeSpaceToken

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 7 : DeSpaceToken.sol
//SPDX-License-Identifier: UNLICENSED

pragma solidity 0.8.4;

import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";

contract DeSpaceToken is ERC20Burnable, Ownable {

    event ReturnedERC20(address indexed token, address indexed receiver, uint amount);

    constructor(uint256 initialSupply) ERC20("DeSpace Protocol", "DES") {
        _mint(msg.sender, initialSupply);
    }

    function returnERC20(address _token, address _to, uint _amount) external onlyOwner() {
        
        require(_token != address(0), "invalid _token address");
        require(_to != address(0), "invalid _to address");
        require(IERC20(_token).balanceOf(address(this)) >= _amount, "insufficient token balance");

        IERC20(_token).transfer(_to, _amount);  
        emit ReturnedERC20(_token, _to, _amount);
    }
}

File 2 of 7 : Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @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 guidelines: functions revert instead
 * of 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 defaut 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:
     *
     * - `recipient` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, 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}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(sender, recipient, amount);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, 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:
     *
     * - `to` 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);
    }

    /**
     * @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");
        _balances[account] = accountBalance - amount;
        _totalSupply -= amount;

        emit Transfer(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 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 to 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 { }
}

File 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT

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 `recipient`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, 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 5 of 7 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        uint256 currentAllowance = allowance(account, _msgSender());
        require(currentAllowance >= amount, "ERC20: burn amount exceeds allowance");
        _approve(account, _msgSender(), currentAllowance - amount);
        _burn(account, amount);
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @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 7 of 7 : Context.sol
// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

Settings
{
  "remappings": [],
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "evmVersion": "istanbul",
  "libraries": {},
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"initialSupply","type":"uint256"}],"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":"token","type":"address"},{"indexed":true,"internalType":"address","name":"receiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ReturnedERC20","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":[{"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":"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"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"returnERC20","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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"}]

60806040523480156200001157600080fd5b506040516200284f3803806200284f8339818101604052810190620000379190620003da565b6040518060400160405280601081526020017f446553706163652050726f746f636f6c000000000000000000000000000000008152506040518060400160405280600381526020017f44455300000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000bb92919062000313565b508060049080519060200190620000d492919062000313565b5050506000620000e9620001a160201b60201c565b905080600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200019a3382620001a960201b60201c565b50620005cc565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200021c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000213906200043e565b60405180910390fd5b62000230600083836200030e60201b60201c565b80600260008282546200024491906200048e565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200029b91906200048e565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000302919062000460565b60405180910390a35050565b505050565b8280546200032190620004f5565b90600052602060002090601f01602090048101928262000345576000855562000391565b82601f106200036057805160ff191683800117855562000391565b8280016001018555821562000391579182015b828111156200039057825182559160200191906001019062000373565b5b509050620003a09190620003a4565b5090565b5b80821115620003bf576000816000905550600101620003a5565b5090565b600081519050620003d481620005b2565b92915050565b600060208284031215620003ed57600080fd5b6000620003fd84828501620003c3565b91505092915050565b600062000415601f836200047d565b9150620004228262000589565b602082019050919050565b6200043881620004eb565b82525050565b60006020820190508181036000830152620004598162000406565b9050919050565b60006020820190506200047760008301846200042d565b92915050565b600082825260208201905092915050565b60006200049b82620004eb565b9150620004a883620004eb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620004e057620004df6200052b565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200050e57607f821691505b602082108114156200052557620005246200055a565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620005bd81620004eb565b8114620005c957600080fd5b50565b61227380620005dc6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b806323d49a3e116100de57806323d49a3e146101ac578063313ce567146101c857806339509351146101e657806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906119e8565b60405180910390f35b61014860048036038101906101439190611650565b610402565b60405161015591906119cd565b60405180910390f35b610166610420565b6040516101739190611bea565b60405180910390f35b61019660048036038101906101919190611601565b61042a565b6040516101a391906119cd565b60405180910390f35b6101c660048036038101906101c19190611601565b61052b565b005b6101d061084a565b6040516101dd9190611c05565b60405180910390f35b61020060048036038101906101fb9190611650565b610853565b60405161020d91906119cd565b60405180910390f35b610230600480360381019061022b91906116b5565b6108ff565b005b61024c6004803603810190610247919061159c565b610913565b6040516102599190611bea565b60405180910390f35b61026a61095b565b005b61028660048036038101906102819190611650565b610a98565b005b610290610b1c565b60405161029d9190611989565b60405180910390f35b6102ae610b46565b6040516102bb91906119e8565b60405180910390f35b6102de60048036038101906102d99190611650565b610bd8565b6040516102eb91906119cd565b60405180910390f35b61030e60048036038101906103099190611650565b610ccc565b60405161031b91906119cd565b60405180910390f35b61033e600480360381019061033991906115c5565b610cea565b60405161034b9190611bea565b60405180910390f35b61036e6004803603810190610369919061159c565b610d71565b005b60606003805461037f90611d4e565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d4e565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610f1d565b8484610f25565b6001905092915050565b6000600254905090565b60006104378484846110f0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610482610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f990611aea565b60405180910390fd5b61051f8561050e610f1d565b858461051a9190611c92565b610f25565b60019150509392505050565b610533610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610551610b1c565b73ffffffffffffffffffffffffffffffffffffffff16146105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e90611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611a2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90611baa565b60405180910390fd5b808373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106c19190611989565b60206040518083038186803b1580156106d957600080fd5b505afa1580156106ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071191906116de565b1015610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990611aca565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161078d9291906119a4565b602060405180830381600087803b1580156107a757600080fd5b505af11580156107bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107df919061168c565b508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f53344b9382ed70bc36d24d0f55208e358f5f19464d20b9f569df1f8df688576f8360405161083d9190611bea565b60405180910390a3505050565b60006012905090565b60006108f5610860610f1d565b84846001600061086e610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108f09190611c3c565b610f25565b6001905092915050565b61091061090a610f1d565b8261136f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610963610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610981610b1c565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610aab83610aa6610f1d565b610cea565b905081811015610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611b2a565b60405180910390fd5b610b0d83610afc610f1d565b8484610b089190611c92565b610f25565b610b17838361136f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5590611d4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190611d4e565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b60008060016000610be7610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611bca565b60405180910390fd5b610cc1610caf610f1d565b858584610cbc9190611c92565b610f25565b600191505092915050565b6000610ce0610cd9610f1d565b84846110f0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d79610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610d97610b1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490611a6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90611a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e39190611bea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790611b6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611a0a565b60405180910390fd5b6111db838383611543565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611aaa565b60405180910390fd5b818161126d9190611c92565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112fd9190611c3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113619190611bea565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690611b4a565b60405180910390fd5b6113eb82600083611543565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890611a4a565b60405180910390fd5b818161147d9190611c92565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114d19190611c92565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115369190611bea565b60405180910390a3505050565b505050565b600081359050611557816121f8565b92915050565b60008151905061156c8161220f565b92915050565b60008135905061158181612226565b92915050565b60008151905061159681612226565b92915050565b6000602082840312156115ae57600080fd5b60006115bc84828501611548565b91505092915050565b600080604083850312156115d857600080fd5b60006115e685828601611548565b92505060206115f785828601611548565b9150509250929050565b60008060006060848603121561161657600080fd5b600061162486828701611548565b935050602061163586828701611548565b925050604061164686828701611572565b9150509250925092565b6000806040838503121561166357600080fd5b600061167185828601611548565b925050602061168285828601611572565b9150509250929050565b60006020828403121561169e57600080fd5b60006116ac8482850161155d565b91505092915050565b6000602082840312156116c757600080fd5b60006116d584828501611572565b91505092915050565b6000602082840312156116f057600080fd5b60006116fe84828501611587565b91505092915050565b61171081611cc6565b82525050565b61171f81611cd8565b82525050565b600061173082611c20565b61173a8185611c2b565b935061174a818560208601611d1b565b61175381611dde565b840191505092915050565b600061176b602383611c2b565b915061177682611def565b604082019050919050565b600061178e601683611c2b565b915061179982611e3e565b602082019050919050565b60006117b1602283611c2b565b91506117bc82611e67565b604082019050919050565b60006117d4602683611c2b565b91506117df82611eb6565b604082019050919050565b60006117f7602283611c2b565b915061180282611f05565b604082019050919050565b600061181a602683611c2b565b915061182582611f54565b604082019050919050565b600061183d601a83611c2b565b915061184882611fa3565b602082019050919050565b6000611860602883611c2b565b915061186b82611fcc565b604082019050919050565b6000611883602083611c2b565b915061188e8261201b565b602082019050919050565b60006118a6602483611c2b565b91506118b182612044565b604082019050919050565b60006118c9602183611c2b565b91506118d482612093565b604082019050919050565b60006118ec602583611c2b565b91506118f7826120e2565b604082019050919050565b600061190f602483611c2b565b915061191a82612131565b604082019050919050565b6000611932601383611c2b565b915061193d82612180565b602082019050919050565b6000611955602583611c2b565b9150611960826121a9565b604082019050919050565b61197481611d04565b82525050565b61198381611d0e565b82525050565b600060208201905061199e6000830184611707565b92915050565b60006040820190506119b96000830185611707565b6119c6602083018461196b565b9392505050565b60006020820190506119e26000830184611716565b92915050565b60006020820190508181036000830152611a028184611725565b905092915050565b60006020820190508181036000830152611a238161175e565b9050919050565b60006020820190508181036000830152611a4381611781565b9050919050565b60006020820190508181036000830152611a63816117a4565b9050919050565b60006020820190508181036000830152611a83816117c7565b9050919050565b60006020820190508181036000830152611aa3816117ea565b9050919050565b60006020820190508181036000830152611ac38161180d565b9050919050565b60006020820190508181036000830152611ae381611830565b9050919050565b60006020820190508181036000830152611b0381611853565b9050919050565b60006020820190508181036000830152611b2381611876565b9050919050565b60006020820190508181036000830152611b4381611899565b9050919050565b60006020820190508181036000830152611b63816118bc565b9050919050565b60006020820190508181036000830152611b83816118df565b9050919050565b60006020820190508181036000830152611ba381611902565b9050919050565b60006020820190508181036000830152611bc381611925565b9050919050565b60006020820190508181036000830152611be381611948565b9050919050565b6000602082019050611bff600083018461196b565b92915050565b6000602082019050611c1a600083018461197a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4782611d04565b9150611c5283611d04565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8757611c86611d80565b5b828201905092915050565b6000611c9d82611d04565b9150611ca883611d04565b925082821015611cbb57611cba611d80565b5b828203905092915050565b6000611cd182611ce4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d39578082015181840152602081019050611d1e565b83811115611d48576000848401525b50505050565b60006002820490506001821680611d6657607f821691505b60208210811415611d7a57611d79611daf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964205f746f6b656e206164647265737300000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e7420746f6b656e2062616c616e6365000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964205f746f206164647265737300000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61220181611cc6565b811461220c57600080fd5b50565b61221881611cd8565b811461222357600080fd5b50565b61222f81611d04565b811461223a57600080fd5b5056fea2646970667358221220e76af0c4c327093d486ada132d45642396710d504e0bd3caae51557cd72412dc64736f6c6343000804003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061010b5760003560e01c806370a08231116100a257806395d89b411161007157806395d89b41146102a6578063a457c2d7146102c4578063a9059cbb146102f4578063dd62ed3e14610324578063f2fde38b146103545761010b565b806370a0823114610232578063715018a61461026257806379cc67901461026c5780638da5cb5b146102885761010b565b806323d49a3e116100de57806323d49a3e146101ac578063313ce567146101c857806339509351146101e657806342966c68146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806318160ddd1461015e57806323b872dd1461017c575b600080fd5b610118610370565b60405161012591906119e8565b60405180910390f35b61014860048036038101906101439190611650565b610402565b60405161015591906119cd565b60405180910390f35b610166610420565b6040516101739190611bea565b60405180910390f35b61019660048036038101906101919190611601565b61042a565b6040516101a391906119cd565b60405180910390f35b6101c660048036038101906101c19190611601565b61052b565b005b6101d061084a565b6040516101dd9190611c05565b60405180910390f35b61020060048036038101906101fb9190611650565b610853565b60405161020d91906119cd565b60405180910390f35b610230600480360381019061022b91906116b5565b6108ff565b005b61024c6004803603810190610247919061159c565b610913565b6040516102599190611bea565b60405180910390f35b61026a61095b565b005b61028660048036038101906102819190611650565b610a98565b005b610290610b1c565b60405161029d9190611989565b60405180910390f35b6102ae610b46565b6040516102bb91906119e8565b60405180910390f35b6102de60048036038101906102d99190611650565b610bd8565b6040516102eb91906119cd565b60405180910390f35b61030e60048036038101906103099190611650565b610ccc565b60405161031b91906119cd565b60405180910390f35b61033e600480360381019061033991906115c5565b610cea565b60405161034b9190611bea565b60405180910390f35b61036e6004803603810190610369919061159c565b610d71565b005b60606003805461037f90611d4e565b80601f01602080910402602001604051908101604052809291908181526020018280546103ab90611d4e565b80156103f85780601f106103cd576101008083540402835291602001916103f8565b820191906000526020600020905b8154815290600101906020018083116103db57829003601f168201915b5050505050905090565b600061041661040f610f1d565b8484610f25565b6001905092915050565b6000600254905090565b60006104378484846110f0565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610482610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610502576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f990611aea565b60405180910390fd5b61051f8561050e610f1d565b858461051a9190611c92565b610f25565b60019150509392505050565b610533610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610551610b1c565b73ffffffffffffffffffffffffffffffffffffffff16146105a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059e90611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060e90611a2a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610687576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067e90611baa565b60405180910390fd5b808373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016106c19190611989565b60206040518083038186803b1580156106d957600080fd5b505afa1580156106ed573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071191906116de565b1015610752576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074990611aca565b60405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb83836040518363ffffffff1660e01b815260040161078d9291906119a4565b602060405180830381600087803b1580156107a757600080fd5b505af11580156107bb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107df919061168c565b508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f53344b9382ed70bc36d24d0f55208e358f5f19464d20b9f569df1f8df688576f8360405161083d9190611bea565b60405180910390a3505050565b60006012905090565b60006108f5610860610f1d565b84846001600061086e610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108f09190611c3c565b610f25565b6001905092915050565b61091061090a610f1d565b8261136f565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610963610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610981610b1c565b73ffffffffffffffffffffffffffffffffffffffff16146109d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ce90611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000610aab83610aa6610f1d565b610cea565b905081811015610af0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae790611b2a565b60405180910390fd5b610b0d83610afc610f1d565b8484610b089190611c92565b610f25565b610b17838361136f565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610b5590611d4e565b80601f0160208091040260200160405190810160405280929190818152602001828054610b8190611d4e565b8015610bce5780601f10610ba357610100808354040283529160200191610bce565b820191906000526020600020905b815481529060010190602001808311610bb157829003601f168201915b5050505050905090565b60008060016000610be7610f1d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610ca4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9b90611bca565b60405180910390fd5b610cc1610caf610f1d565b858584610cbc9190611c92565b610f25565b600191505092915050565b6000610ce0610cd9610f1d565b84846110f0565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610d79610f1d565b73ffffffffffffffffffffffffffffffffffffffff16610d97610b1c565b73ffffffffffffffffffffffffffffffffffffffff1614610ded576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de490611b0a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5490611a6a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8c90611b8a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90611a8a565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110e39190611bea565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611160576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115790611b6a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c790611a0a565b60405180910390fd5b6111db838383611543565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890611aaa565b60405180910390fd5b818161126d9190611c92565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546112fd9190611c3c565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113619190611bea565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d690611b4a565b60405180910390fd5b6113eb82600083611543565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611471576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146890611a4a565b60405180910390fd5b818161147d9190611c92565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282546114d19190611c92565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516115369190611bea565b60405180910390a3505050565b505050565b600081359050611557816121f8565b92915050565b60008151905061156c8161220f565b92915050565b60008135905061158181612226565b92915050565b60008151905061159681612226565b92915050565b6000602082840312156115ae57600080fd5b60006115bc84828501611548565b91505092915050565b600080604083850312156115d857600080fd5b60006115e685828601611548565b92505060206115f785828601611548565b9150509250929050565b60008060006060848603121561161657600080fd5b600061162486828701611548565b935050602061163586828701611548565b925050604061164686828701611572565b9150509250925092565b6000806040838503121561166357600080fd5b600061167185828601611548565b925050602061168285828601611572565b9150509250929050565b60006020828403121561169e57600080fd5b60006116ac8482850161155d565b91505092915050565b6000602082840312156116c757600080fd5b60006116d584828501611572565b91505092915050565b6000602082840312156116f057600080fd5b60006116fe84828501611587565b91505092915050565b61171081611cc6565b82525050565b61171f81611cd8565b82525050565b600061173082611c20565b61173a8185611c2b565b935061174a818560208601611d1b565b61175381611dde565b840191505092915050565b600061176b602383611c2b565b915061177682611def565b604082019050919050565b600061178e601683611c2b565b915061179982611e3e565b602082019050919050565b60006117b1602283611c2b565b91506117bc82611e67565b604082019050919050565b60006117d4602683611c2b565b91506117df82611eb6565b604082019050919050565b60006117f7602283611c2b565b915061180282611f05565b604082019050919050565b600061181a602683611c2b565b915061182582611f54565b604082019050919050565b600061183d601a83611c2b565b915061184882611fa3565b602082019050919050565b6000611860602883611c2b565b915061186b82611fcc565b604082019050919050565b6000611883602083611c2b565b915061188e8261201b565b602082019050919050565b60006118a6602483611c2b565b91506118b182612044565b604082019050919050565b60006118c9602183611c2b565b91506118d482612093565b604082019050919050565b60006118ec602583611c2b565b91506118f7826120e2565b604082019050919050565b600061190f602483611c2b565b915061191a82612131565b604082019050919050565b6000611932601383611c2b565b915061193d82612180565b602082019050919050565b6000611955602583611c2b565b9150611960826121a9565b604082019050919050565b61197481611d04565b82525050565b61198381611d0e565b82525050565b600060208201905061199e6000830184611707565b92915050565b60006040820190506119b96000830185611707565b6119c6602083018461196b565b9392505050565b60006020820190506119e26000830184611716565b92915050565b60006020820190508181036000830152611a028184611725565b905092915050565b60006020820190508181036000830152611a238161175e565b9050919050565b60006020820190508181036000830152611a4381611781565b9050919050565b60006020820190508181036000830152611a63816117a4565b9050919050565b60006020820190508181036000830152611a83816117c7565b9050919050565b60006020820190508181036000830152611aa3816117ea565b9050919050565b60006020820190508181036000830152611ac38161180d565b9050919050565b60006020820190508181036000830152611ae381611830565b9050919050565b60006020820190508181036000830152611b0381611853565b9050919050565b60006020820190508181036000830152611b2381611876565b9050919050565b60006020820190508181036000830152611b4381611899565b9050919050565b60006020820190508181036000830152611b63816118bc565b9050919050565b60006020820190508181036000830152611b83816118df565b9050919050565b60006020820190508181036000830152611ba381611902565b9050919050565b60006020820190508181036000830152611bc381611925565b9050919050565b60006020820190508181036000830152611be381611948565b9050919050565b6000602082019050611bff600083018461196b565b92915050565b6000602082019050611c1a600083018461197a565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c4782611d04565b9150611c5283611d04565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c8757611c86611d80565b5b828201905092915050565b6000611c9d82611d04565b9150611ca883611d04565b925082821015611cbb57611cba611d80565b5b828203905092915050565b6000611cd182611ce4565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611d39578082015181840152602081019050611d1e565b83811115611d48576000848401525b50505050565b60006002820490506001821680611d6657607f821691505b60208210811415611d7a57611d79611daf565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964205f746f6b656e206164647265737300000000000000000000600082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e7420746f6b656e2062616c616e6365000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a206275726e20616d6f756e74206578636565647320616c6c6f7760008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f696e76616c6964205f746f206164647265737300000000000000000000000000600082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61220181611cc6565b811461220c57600080fd5b50565b61221881611cd8565b811461222357600080fd5b50565b61222f81611d04565b811461223a57600080fd5b5056fea2646970667358221220e76af0c4c327093d486ada132d45642396710d504e0bd3caae51557cd72412dc64736f6c63430008040033

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

00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000

-----Decoded View---------------
Arg [0] : initialSupply (uint256): 100000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

DeSpace DeFi and NFT aggregator aims to unify DeFi and NFT protocols into one website, making it easier for users to navigate the world of DeFi and NFT protocols while they mine Des coin.

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.