ETH Price: $4,009.03 (+2.68%)

Token

Holdstation (HOLD)

Overview

Max Total Supply

7,903,700 HOLD

Holders

172,849

Market

Price

$2.30 @ 0.000574 ETH (+31.02%)

Onchain Market Cap

$18,178,510.00

Circulating Supply Market Cap

$15,123,484.00

Other Info

Token Contract (WITH 18 Decimals)

Balance
0.297886025018537276 HOLD

Value
$0.69 ( ~0.000172111598029096 ETH) [0.0000%]
0x1d8c4d80464270afb50576cab66f08a29903747f
Loading...
Loading
Loading...
Loading
Loading...
Loading

Market

Volume (24H):$2,764,324.00
Market Capitalization:$15,123,484.00
Circulating Supply:6,567,375.00 HOLD
Market Data Source: Coinmarketcap

This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
HoldToken

Compiler Version
v0.8.10+commit.fc410830

ZkSolc Version
v1.3.8

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 7 : HoldToken.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.10;

import {ERC20Capped} from "@openzeppelin/contracts/token/ERC20/extensions/ERC20Capped.sol";
import {ERC20} from "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol";
import "@openzeppelin/contracts/access/Ownable.sol";

contract HoldToken is Ownable, ERC20Capped {
  uint public constant TOKEN_CAPPED = 30 * (10 ** 6) * (10 ** 18);
  string public creator;

  constructor() ERC20Capped(TOKEN_CAPPED) ERC20("Holdstation", "HOLD") {
    creator = "https://holdstation.com/";
  }

  function mint(uint _amount, address _holder) external onlyOwner {
    _mint(_holder, _amount);
  }

  function claimStuckTokens(address _token) external onlyOwner {
    require(_token != address(this), "INVALID_HOLDER");
    if (_token == address(0)) {
      (bool suceess, ) = msg.sender.call{value: address(this).balance}("");
      if (!suceess) revert("WITHDRAWAL_FAILED");
      return;
    }
    IERC20(_token).transfer(msg.sender, IERC20(_token).balanceOf(address(this)));
  }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

File 3 of 7 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

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 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, allowance(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 = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * 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 Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * 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 4 of 7 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);

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

File 5 of 7 : ERC20Capped.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/ERC20Capped.sol)

pragma solidity ^0.8.0;

import "../ERC20.sol";

/**
 * @dev Extension of {ERC20} that adds a cap to the supply of tokens.
 */
abstract contract ERC20Capped is ERC20 {
    uint256 private immutable _cap;

    /**
     * @dev Sets the value of the `cap`. This value is immutable, it can only be
     * set once during construction.
     */
    constructor(uint256 cap_) {
        require(cap_ > 0, "ERC20Capped: cap is 0");
        _cap = cap_;
    }

    /**
     * @dev Returns the cap on the token's total supply.
     */
    function cap() public view virtual returns (uint256) {
        return _cap;
    }

    /**
     * @dev See {ERC20-_mint}.
     */
    function _mint(address account, uint256 amount) internal virtual override {
        require(ERC20.totalSupply() + amount <= cap(), "ERC20Capped: cap exceeded");
        super._mint(account, amount);
    }
}

File 6 of 7 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

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

Settings
{
  "compilerPath": "",
  "experimental": {},
  "optimizer": {
    "enabled": true,
    "mode": "z"
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"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":"TOKEN_CAPPED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"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":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token","type":"address"}],"name":"claimStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creator","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_holder","type":"address"}],"name":"mint","outputs":[],"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":[],"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"}]

9c4d535b00000000000000000000000000000000000000000000000000000000000000000100022d651f3bf357ac3016109ab4cb47ffc6e722b872d81055cbccccb9395f00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x0004000000000002000600000000000200000000030100190000006003300270000001e80430019700030000004103550002000000010355000001e80030019d000100000000001f0000000101200190000000480000c13d0000008001000039000000400010043f0000000001000031000000040110008c000001990000413d0000000201000367000000000101043b000000e001100270000001f50210009c000000b90000613d000001f60210009c000000c30000613d000001f70210009c000000d20000613d000001f80210009c000000de0000613d000001f90210009c000000ea0000613d000001fa0210009c000000f60000613d000001fb0210009c000001010000613d000001fc0210009c000001160000613d000001fd0210009c000001220000613d000001fe0210009c0000012d0000613d000001ff0210009c000001390000613d000002000210009c000001430000613d000002010210009c0000014f0000613d000002020210009c000001590000613d000002030210009c000001680000613d000002040210009c000001740000613d000002050210009c000001800000613d000002060210009c0000018f0000613d000002070110009c000001990000c13d0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f0799037a0000040f0000000002010019000000400100043d000600000001001d079903b40000040f0000000603000029000000000231004900000000010300190000000003000019079902570000040f000000a001000039000000400010043f0000000001000416000000000110004c000001990000c13d000000400200043d000001e90120009c0000007f0000813d0000004001200039000000400010043f0000000b010000390000000004120436000001ea010000410000000000140435000000400300043d000001eb0130009c0000007f0000213d000300000004001d000500000002001d0000004001300039000000400010043f0000002001300039000001ec0200004100000000002104350000000401000039000400000003001d000600000001001d0000000000130435000000000100041a000001ed021001970000000006000411000000000262019f000000000020041b000001e802000041000000400300043d0000000004000414000001e80540009c0000000004028019000001e80530009c00000000020340190000004002200210000000c003400210000000000223019f000001ee05100197000001ef012001c70000800d020000390000000303000039000001f0040000410799078f0000040f0000000101200190000001990000613d00000005010000290000000002010433000001f10120009c000000860000a13d000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f0000000601000029000000000101041a000200000002001d0799026a0000040f00000002040000290000000002010019000000200120008c000000a30000413d000000060100002900000000001004350000002001000039000100000002001d079902340000040f00000002040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000000a30000813d000000000001041b00000001011000390000009e0000013d0000001f0140008c0000019c0000a13d000000060100002900000000001004350000002001000039000300000001001d079902340000040f00000003070000290000000206000029000000200200008a000000000226016f00000000030000190000000505000029000000000423004b0000000004570019000001a80000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000000b00000013d0000000001000416000000000110004c000001990000c13d0000000001000031079903ff0000040f0799067d0000040f000000400100043d00000000020000190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f079903060000040f0000000002010019000000400100043d000600000001001d079903b40000040f0000000603000029000000000231004900000000010300190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903cb0000040f079904c00000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f0000000301000039000000000201041a000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903e30000040f079904c50000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f0000001202000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f000000400100043d000600000001001d0000020801000041000000000010043900000000010004120000000400100443000000240000044300008005010000390000004402000039079902450000040f00000006030000290000000000130435000000200200003900000000010300190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903cb0000040f079904f70000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f000001f202000041000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903ff0000040f079904b30000040f000000400300043d0000000000130435000000200200003900000000010300190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f079904470000040f000000400100043d00000000020000190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f000000000100041a000001ee02100197000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079904150000040f079906160000040f000000400100043d00000000020000190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079902f30000040f079903400000040f0000000002010019000000400100043d000600000001001d079903b40000040f0000000603000029000000000231004900000000010300190000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903cb0000040f0799051a0000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903cb0000040f079904bb0000040f0000000102000039000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d00000000010000310799042d0000040f000600000002001d079904a60000040f0000000602000029079904ad0000040f000000000201041a000000400100043d000000000021043500000020020000390000000003000019079902570000040f0000000001000416000000000110004c000001990000c13d0000000001000031079903ff0000040f079904750000040f000000400100043d00000000020000190000000003000019079902570000040f00000000010000190000000002000019079902610000040f000000000140004c0000000001000019000001a10000613d000000030100002900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000001b40000013d000000000262004b000001b20000813d0000000302600210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102600210000000000112019f0000000602000029000000000012041b0000000401000029079902960000040f000001f201000041000000800010043f0799027c0000040f000000800100043d00000140000004430000016000100443000000200100003900000100001004430000000101000039000001200010044300000100010000390000008002000039000001f303000041079902570000040f0002000000000002000200000006001d000100000005001d000001e805000041000001e80630009c00000000030580190000004003300210000001e80640009c00000000040580190000006004400210000000000334019f000001e80410009c0000000001058019000000c001100210000000000113019f0799078f0000040f000000010900002900000000030100190000006003300270000001e8033001970000000205000029000000000453004b00000000050340190000001f0450018f0000000505500272000001ea0000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000001e20000413d000000010220018f000000000640004c000001fa0000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d0001000000000002000100000005001d000001e805000041000001e80630009c00000000030580190000004003300210000001e80640009c00000000040580190000006004400210000000000334019f000001e80410009c0000000001058019000000c001100210000000000113019f079907940000040f000000010900002900000000030100190000006003300270000001e803300197000000200430008c000000200500003900000000050340190000001f0450018f0000000505500272000002200000613d000000000600001900000005076002100000000008790019000000000771034f000000000707043b00000000007804350000000106600039000000000756004b000002180000413d000000010220018f000000000640004c000002300000613d0000000505500210000000000651034f00000000055900190000000304400210000000000705043300000000074701cf000000000747022f000000000606043b0000010004400089000000000646022f00000000044601cf000000000474019f0000000000450435000100000003001f00030000000103550000000001020019000000000001042d000001e8020000410000000003000414000001e80430009c0000000002034019000000c00220021000000060011002100000000001210019000001ef011000410000801002000039079907940000040f0000000102200190000002420000613d000000000101043b000000000001042d00000000010000190000000002000019079902610000040f0000000003010019000001e8010000410000000004000414000001e80540009c0000000001044019000000c0011002100000006002200210000000000112001900000209011000410000000002030019079907940000040f0000000102200190000002540000613d000000000101043b000000000001042d00000000010000190000000002000019079902610000040f000001e804000041000001e80510009c000000000104801900000040011002100000000001310019000001e80320009c0000000002048019000000600220021000000000012100190000079a0001042e000001e803000041000001e80420009c0000000002038019000001e80410009c000000000103801900000040011002100000006002200210000000000112019f0000079b00010430000000010210019000000001011002700000007f0310018f00000000010360190000001f0310008c00000000030000190000000103002039000000010330018f000000000232004b000002750000c13d000000000001042d000001f40100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019079902610000040f00020000000000020000000601000039000200000001001d000000000101041a0799026a0000040f0000000002010019000000200120008c000002920000413d000000020100002900000000001004350000002001000039000100000002001d079902340000040f00000001020000290000001f0220003900000005022002700000000002210019000000000321004b000002920000813d000000000001041b00000001011000390000028d0000013d0000020a010000410000000202000029000000000012041b000000000001042d0005000000000002000300000001001d0000000021010434000200000002001d000500000001001d0000020b0110009c000002ec0000813d0000000501000039000400000001001d000000000101041a0799026a0000040f0000000002010019000000200120008c0000000504000029000002ba0000413d000000040100002900000000001004350000002001000039000100000002001d079902340000040f00000005040000290000001f024000390000000502200270000000200340008c0000000003020019000000000300401900000001020000290000001f02200039000000050220027000000000022100190000000001310019000000000321004b000002ba0000813d000000000001041b0000000101100039000002b50000013d0000001f0140008c000002d00000a13d000000040100002900000000001004350000002001000039000200000001001d079902340000040f00000002070000290000000505000029000000200200008a000000000225016f00000000030000190000000306000029000000000423004b0000000004670019000002dc0000813d0000000004040433000000000041041b000000200330003900000020077000390000000101100039000002c70000013d000000000140004c0000000001000019000002d50000613d000000020100002900000000010104330000000302400210000000010300008a000000000223022f000000000232013f000000000221016f0000000101400210000002e80000013d000000000252004b000002e60000813d0000000302500210000000f80220018f000000010300008a000000000223022f000000000232013f0000000003040433000000000223016f000000000021041b00000001010000390000000102500210000000000112019f0000000402000029000000000012041b000000000001042d000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f000000040110008a000000010200008a0000020c03000041000000000221004b000000000200001900000000020320190000020c011001970000020c0410009c00000000030080190000020c011001670000020c0110009c00000000010200190000000001036019000000000110004c000003030000613d000000000001042d00000000010000190000000002000019079902610000040f0000000405000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000003320000c13d000000400100043d0000000003210436000000000660004c000003270000c13d000001000200008a000000000224016f000000000023043500000020040000390000003f02400039000000200300008a000000000332016f0000000002130019000000000332004b00000000030000190000000103004039000001f10420009c000003390000213d0000000103300190000003390000c13d000000400020043f000000000001042d00000000005004350000020d050000410000000004000019000000000624004b0000031a0000813d0000000006340019000000000705041a0000000000760435000000200440003900000001055000390000032a0000013d000001f40100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019079902610000040f000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f0000000505000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b0000036c0000c13d000000400100043d0000000003210436000000000660004c000003610000c13d000001000200008a000000000224016f000000000023043500000020040000390000003f02400039000000200300008a000000000332016f0000000002130019000000000332004b00000000030000190000000103004039000001f10420009c000003730000213d0000000103300190000003730000c13d000000400020043f000000000001042d00000000005004350000020e050000410000000004000019000000000624004b000003540000813d0000000006340019000000000705041a000000000076043500000020044000390000000105500039000003640000013d000001f40100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019079902610000040f000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f0000000605000039000000000405041a000000010640019000000001014002700000007f0210018f000000000201c0190000001f0120008c00000000010000190000000101002039000000010110018f000000000116004b000003a60000c13d000000400100043d0000000003210436000000000660004c0000039b0000c13d000001000200008a000000000224016f000000000023043500000020040000390000003f02400039000000200300008a000000000332016f0000000002130019000000000332004b00000000030000190000000103004039000001f10420009c000003ad0000213d0000000103300190000003ad0000c13d000000400020043f000000000001042d00000000005004350000020f050000410000000004000019000000000624004b0000038e0000813d0000000006340019000000000705041a0000000000760435000000200440003900000001055000390000039e0000013d000001f40100004100000000001004350000002201000039000000040010043f00000024020000390000000001000019079902610000040f000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f000000200300003900000000043104360000000003020433000000000034043500000040011000390000000004000019000000000534004b000003c20000813d00000000054100190000002004400039000000000624001900000000060604330000000000650435000003ba0000013d000000000234004b000003c60000a13d000000000231001900000000000204350000001f02300039000000200300008a000000000232016f0000000001210019000000000001042d000000040110008a0000020c020000410000003f0310008c000000000300001900000000030220190000020c01100197000000000410004c00000000020080190000020c0110009c00000000010300190000000001026019000000000110004c000003e00000613d00000002020003670000000401200370000000000101043b000001ee0310009c000003e00000213d0000002402200370000000000202043b000000000001042d00000000010000190000000002000019079902610000040f000000040110008a0000020c020000410000005f0310008c000000000300001900000000030220190000020c01100197000000000410004c00000000020080190000020c0110009c00000000010300190000000001026019000000000110004c000003fc0000613d00000002030003670000000401300370000000000101043b000001ee0210009c000003fc0000213d0000002402300370000000000202043b000001ee0420009c000003fc0000213d0000004403300370000000000303043b000000000001042d00000000010000190000000002000019079902610000040f000000040110008a0000020c020000410000001f0310008c000000000300001900000000030220190000020c01100197000000000410004c00000000020080190000020c0110009c00000000010300190000000001026019000000000110004c000004120000613d00000004010000390000000201100367000000000101043b000001ee0210009c000004120000213d000000000001042d00000000010000190000000002000019079902610000040f000000040110008a0000020c020000410000003f0310008c000000000300001900000000030220190000020c01100197000000000410004c00000000020080190000020c0110009c00000000010300190000000001026019000000000110004c0000042a0000613d00000002010003670000002402100370000000000202043b000001ee0320009c0000042a0000213d0000000401100370000000000101043b000000000001042d00000000010000190000000002000019079902610000040f000000040110008a0000020c020000410000003f0310008c000000000300001900000000030220190000020c01100197000000000410004c00000000020080190000020c0110009c00000000010300190000000001026019000000000110004c000004440000613d00000002020003670000000401200370000000000101043b000001ee0310009c000004440000213d0000002402200370000000000202043b000001ee0320009c000004440000213d000000000001042d00000000010000190000000002000019079902610000040f079904620000040f000000000100041a000001ed02100197000000000020041b000000400200043d000001e8030000410000000004000414000001e80540009c0000000004038019000001e80520009c00000000020380190000004002200210000000c003400210000000000223019f000001ee05100197000001ef012001c70000800d020000390000000303000039000001f00400004100000000060000190799078f0000040f00000001012001900000045f0000613d000000000001042d00000000010000190000000002000019079902610000040f000000000100041a000001ee011001970000000002000411000000000121004b000004680000c13d000000000001042d000000400100043d00000044021000390000021003000041000000000032043500000211020000410000000000210435000000240210003900000020030000390000000000320435000000040210003900000000003204350000006402000039079902610000040f0001000000000002000100000001001d079904620000040f0000000106000029000001ee01600198000004920000613d000000000200041a000001ed03200197000000000113019f000000000010041b000000400100043d000001e8030000410000000004000414000001e80540009c0000000004038019000001e80510009c00000000010380190000004001100210000000c003400210000000000113019f000001ee05200197000001ef011001c70000800d020000390000000303000039000001f0040000410799078f0000040f0000000101200190000004a30000613d000000000001042d000000400100043d000000640210003900000212030000410000000000320435000000440210003900000213030000410000000000320435000000240210003900000026030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f00000000010000190000000002000019079902610000040f000001ee0110019700000000001004350000000201000039000000200010043f0000004001000039079902340000040f000000000001042d000001ee022001970000000000200435000000200010043f0000004001000039079902340000040f000000000001042d000001ee0110019700000000001004350000000101000039000000200010043f0000004001000039079902340000040f000000000101041a000000000001042d000000000302001900000000020100190000000001000411079905450000040f000000000001042d000000000302001900000000020100190000000001000411079905c60000040f000000000001042d0005000000000002000500000003001d000200000002001d000400000001001d000001ee0110019700000000001004350000000201000039000000200010043f0000004001000039000300000001001d079902340000040f0000000002000411000100000002001d000001ee022001970000000000200435000000200010043f0000000301000029079902340000040f000000000101041a000000010200008a000000000221004b000004e40000613d00000004040000290000000502000029000000000221004b000004e90000413d0000000502000029000000000321004900000000010400190000000102000029079905c60000040f000000040100002900000002020000290000000503000029079905450000040f000000000001042d000000400100043d00000044021000390000021403000041000000000032043500000024021000390000001d030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000006402000039079902610000040f0004000000000002000300000002001d000400000001001d0000000001000411000100000001001d00000000001004350000000201000039000000200010043f0000004001000039000200000001001d079902340000040f0000000402000029000001ee022001970000000000200435000000200010043f0000000201000029079902340000040f0000000303000029000000010200008a000000000223013f000000000101041a000000000221004b000005130000213d000000000331001900000001010000290000000402000029079905c60000040f000000000001042d000001f40100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019079902610000040f0004000000000002000300000002001d000400000001001d0000000001000411000100000001001d00000000001004350000000201000039000000200010043f0000004001000039000200000001001d079902340000040f0000000402000029000001ee022001970000000000200435000000200010043f0000000201000029079902340000040f0000000303000029000000000101041a000000000231004b000005340000413d000000000331004900000001010000290000000402000029079905c60000040f000000000001042d000000400100043d000000640210003900000215030000410000000000320435000000440210003900000216030000410000000000320435000000240210003900000025030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f0007000000000002000001ee04100198000005890000613d000700000003001d000100000001001d000200000002001d000001ee01200198000500000001001d0000059a0000613d00000000004004350000000101000039000600000001001d000000200010043f0000004001000039000300000004001d079902340000040f000000000201041a0000000701000029000400000002001d000000000112004b000005ab0000413d000000030100002900000000001004350000000601000029000000200010043f0000004001000039000300000001001d079902340000040f000000070300002900000004020000290000000002320049000000000021041b000000050100002900000000001004350000000601000029000000200010043f0000000301000029079902340000040f000000010200008a0000000704000029000000000324013f000000000201041a000000000332004b0000000003040019000005bc0000213d0000000002320019000000000021041b000000400100043d0000000000310435000001e8020000410000000003000414000001e80430009c0000000003028019000001e80410009c00000000010280190000004001100210000000c002300210000000000112019f00000217011001c70000800d0200003900000003030000390000021804000041000000010500002900000002060000290799078f0000040f0000000101200190000005c30000613d000000000001042d000000400100043d00000064021000390000021d03000041000000000032043500000044021000390000021e030000410000000000320435000000240210003900000025030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f000000400100043d00000064021000390000021b03000041000000000032043500000044021000390000021c030000410000000000320435000000240210003900000023030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f000000400100043d00000064021000390000021903000041000000000032043500000044021000390000021a030000410000000000320435000000240210003900000026030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f000001f40100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019079902610000040f00000000010000190000000002000019079902610000040f0005000000000002000001ee04100198000005f10000613d000300000003001d000400000001001d000500000002001d000001ee01200198000200000001001d000006020000613d00000000004004350000000201000039000000200010043f0000004001000039000100000001001d079902340000040f00000002020000290000000000200435000000200010043f0000000101000029079902340000040f0000000302000029000000000021041b000000400100043d0000000000210435000001e8020000410000000003000414000001e80430009c0000000003028019000001e80410009c00000000010280190000004001100210000000c002300210000000000112019f00000217011001c70000800d0200003900000003030000390000021f04000041000000040500002900000005060000290799078f0000040f0000000101200190000006130000613d000000000001042d000000400100043d000000640210003900000222030000410000000000320435000000440210003900000223030000410000000000320435000000240210003900000024030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f000000400100043d000000640210003900000220030000410000000000320435000000440210003900000221030000410000000000320435000000240210003900000022030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000008402000039079902610000040f00000000010000190000000002000019079902610000040f0005000000000002000300000002001d000000010200008a000400000001001d000000000121013f000500000001001d079904620000040f0000000301000039000100000001001d000000000101041a0000000502000029000200000001001d000000000121004b000006570000213d0000020801000041000000000010043900000000010004120000000400100443000000240000044300008005010000390000004402000039079902450000040f000000040300002900000002020000290000000002320019000000000112004b0000065e0000213d0000000301000029000001ee011001980000066c0000613d0000000103000029000000000023041b00000000001004350000000101000039000000200010043f0000004001000039079902340000040f000000000201041a0000000503000029000000000332004b0000000403000029000006570000213d0000000002320019000000000021041b000000400100043d0000000000310435000001e8020000410000000003000414000001e80430009c0000000003028019000001e80410009c00000000010280190000004001100210000000c002300210000000000112019f00000217011001c70000800d0200003900000003030000390000021804000041000000000500001900000003060000290799078f0000040f00000001012001900000067a0000613d000000000001042d000001f40100004100000000001004350000001101000039000000040010043f00000024020000390000000001000019079902610000040f000000400100043d000000440210003900000225030000410000000000320435000000240210003900000019030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000006402000039079902610000040f000000400100043d00000044021000390000022403000041000000000032043500000024021000390000001f030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000006402000039079902610000040f00000000010000190000000002000019079902610000040f0003000000000002000300000001001d079904620000040f0000000301000029000001ee051001970000000001000410000000000215004b0000074d0000613d000000000250004c000006ed0000613d000000400900043d00000226020000410000000000290435000001ee02100197000000040390003900000000010004140000000000230435000000040250008c0000069b0000613d000000240400003900000000020500190000000003090019000300000005001d0000000005090019000200000009001d079901fe0000040f00000002090000290000000305000029000000000110004c0000075b0000613d0000001f070000390000000101700031000000200800008a000000000181016f0000000003910019000000000113004b00000000010000190000000101004039000001f10230009c000007460000213d0000000101100190000007460000c13d000000400030043f0000020c0100004100000001020000310000001f0420008c000000000600001900000000060120190000020c02200197000000000420004c00000000010080190000020c0220009c000000000106c019000000000110004c000006ea0000613d0000000002090433000002270100004100000000001304350000002404300039000000000100041400000000002404350000000002000411000001ee0220019700000004043000390000000000240435000000040250008c000006cd0000613d0000004404000039000000200600003900000000020500190000000005030019000300000003001d000200000007001d000100000008001d079901c70000040f000000010800002900000002070000290000000303000029000000000110004c0000075b0000613d0000000101700031000000000281016f0000000001320019000000000221004b00000000020000190000000102004039000001f10410009c000007460000213d0000000102200190000007460000c13d000000400010043f0000020c010000410000000102000031000000200420008c000000000500001900000000050140190000020c02200197000000000420004c000000000100a0190000020c0220009c000000000105c019000000000110004c000006ea0000c13d0000000001030433000000000210004c0000000002000019000000010200c039000000000121004b000007450000613d00000000010000190000000002000019079902610000040f0000022802000041000000000020043900000004001004430000800a010000390000002402000039079902450000040f0000000102000039000000000501001900000000010004140000000004000411000000040340008c000007150000613d000000400300043d000000000250004c0000070f0000613d000001e802000041000001e80630009c0000000003028019000001e80610009c0000000001028019000000c0011002100000004002300210000000000112019f000001ef011001c70000800902000039000000000305001900000000050000190799078f0000040f000000010220018f00030000000103550000006001100270000101e80010019d000001e801100197000007160000013d0000000002040019000000000400001900000000050000190000000006000019079901c70000040f00000000020100190000000101000031000000000310004c000007430000613d0000003f03100039000000200400008a000000000443016f000000400300043d0000000004430019000000000534004b00000000050000190000000105004039000001f10640009c000007460000213d0000000105500190000007460000c13d000000400040043f0000000001130436000000030300036700000001050000310000001f0450018f0000000505500272000007340000613d000000000600001900000005076002100000000008710019000000000773034f000000000707043b00000000007804350000000106600039000000000756004b0000072c0000413d000000000640004c000007430000613d0000000505500210000000000353034f00000000015100190000000304400210000000000501043300000000054501cf000000000545022f000000000303043b0000010004400089000000000343022f00000000034301cf000000000353019f0000000000310435000000000120004c0000077b0000613d000000000001042d000001f40100004100000000001004350000004101000039000000040010043f00000024020000390000000001000019079902610000040f000000400100043d00000044021000390000022903000041000000000032043500000024021000390000000e030000390000000000320435000002110200004100000000002104350000000402100039000000200300003900000000003204350000006402000039079902610000040f0000000302000367000000400100043d00000001040000310000001f0340018f00000005044002720000076a0000613d000000000500001900000005065002100000000007610019000000000662034f000000000606043b00000000006704350000000105500039000000000645004b000007620000413d000000000530004c000007790000613d0000000504400210000000000242034f00000000044100190000000303300210000000000504043300000000053501cf000000000535022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000252019f00000000002404350000000102000031079902610000040f000000400200043d000300000002001d000002110100004100000000001204350000000401200039079907850000040f000000030300002900000000023100490000000001030019079902610000040f00000040021000390000022a030000410000000000320435000000200210003900000011030000390000000000320435000000200200003900000000002104350000006001100039000000000001042d00000792002104210000000102000039000000000001042d0000000002000019000000000001042d00000797002104230000000102000039000000000001042d0000000002000019000000000001042d00000799000004320000079a0001042e0000079b00010430000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff000000000000000000000000000000000000000000000000ffffffffffffffc0486f6c6473746174696f6e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffbf484f4c4400000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff02000000000000000000000000000000000000000000000000000000000000008be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000018d0bf423c03d8de00000000000002000000000000000000000000000000000000000000000000000000004e487b710000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000f9d0831a0000000000000000000000000000000000000000000000000000000006fdde0300000000000000000000000000000000000000000000000000000000095ea7b30000000000000000000000000000000000000000000000000000000018160ddd0000000000000000000000000000000000000000000000000000000023b872dd00000000000000000000000000000000000000000000000000000000313ce56700000000000000000000000000000000000000000000000000000000355274ea0000000000000000000000000000000000000000000000000000000039509351000000000000000000000000000000000000000000000000000000005980c6050000000000000000000000000000000000000000000000000000000070a0823100000000000000000000000000000000000000000000000000000000715018a6000000000000000000000000000000000000000000000000000000008da5cb5b0000000000000000000000000000000000000000000000000000000094bf804d0000000000000000000000000000000000000000000000000000000095d89b4100000000000000000000000000000000000000000000000000000000a457c2d700000000000000000000000000000000000000000000000000000000a9059cbb00000000000000000000000000000000000000000000000000000000dd62ed3e00000000000000000000000000000000000000000000000000000000f2fde38b0000000000000000000000000000000000000000000000000000000002d05d3f310ab089e4439a4c15d089f94afb7896ff553aecb10793d0ab882de59d99a32e020000020000000000000000000000000000000000000000000000000000000068747470733a2f2f686f6c6473746174696f6e2e636f6d2f0000000000000030000000000000000000000000000000000000000000000001000000000000000080000000000000000000000000000000000000000000000000000000000000008a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b036b6384b5eca791c62761152d0c79bb0604c104a5fb6f4eb0703f3154bb3db0f652222313e28459528d920b65115c16c04f3efc82aaedc97be59f3f377c0d3f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657208c379a00000000000000000000000000000000000000000000000000000000064647265737300000000000000000000000000000000000000000000000000004f776e61626c653a206e6577206f776e657220697320746865207a65726f206145524332303a20696e73756666696369656e7420616c6c6f77616e6365000000207a65726f00000000000000000000000000000000000000000000000000000045524332303a2064656372656173656420616c6c6f77616e63652062656c6f770200000000000000000000000000000000000020000000000000000000000000ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef616c616e6365000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e7420657863656564732062657373000000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220746f20746865207a65726f2061646472647265737300000000000000000000000000000000000000000000000000000045524332303a207472616e736665722066726f6d20746865207a65726f2061648c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925737300000000000000000000000000000000000000000000000000000000000045524332303a20617070726f766520746f20746865207a65726f206164647265726573730000000000000000000000000000000000000000000000000000000045524332303a20617070726f76652066726f6d20746865207a65726f2061646445524332303a206d696e7420746f20746865207a65726f20616464726573730045524332304361707065643a206361702065786365656465640000000000000070a0823100000000000000000000000000000000000000000000000000000000a9059cbb000000000000000000000000000000000000000000000000000000009cc7f708afc65944829bd487b90b72536b1951864fbfc14e125fc972a6507f39494e56414c49445f484f4c4445520000000000000000000000000000000000005749544844524157414c5f4641494c45440000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000c0b79c911b451848661f3b54fc4fd4b6e664c4c27ad50448e4facfebe8342515

[ 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.