ETH Price: $3,392.14 (-1.46%)
Gas: 2 Gwei

Token

Befi Labs (BEFI)
 

Overview

Max Total Supply

210,000,000 BEFI

Holders

4,309 ( -0.209%)

Market

Price

$0.04 @ 0.000013 ETH (+2.23%)

Onchain Market Cap

$9,118,529.70

Circulating Supply Market Cap

$6,088,044.00

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
isanoxel.eth
Balance
423.192431983425883929 BEFI

Value
$18.38 ( ~0.00541841120972484 Eth) [0.0002%]
0xe2f184241cddd9f2235d861eff25c37b7529746e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

₿RC20 Trading Terminal functional with your favorite crypto wallets

Market

Volume (24H):$706,294.00
Market Capitalization:$6,088,044.00
Circulating Supply:139,362,899.00 BEFI
Market Data Source: Coinmarketcap

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
BefiCoin

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-03-14
*/

// SPDX-License-Identifier: MIT
// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.9.6/contracts/utils/Context.sol


// OpenZeppelin Contracts (last updated v4.9.4) (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;
    }

    function _contextSuffixLength() internal view virtual returns (uint256) {
        return 0;
    }
}

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.9.6/contracts/access/Ownable.sol


// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

    /**
     * @dev 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. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.9.6/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.9.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: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.9.6/contracts/token/ERC20/extensions/IERC20Metadata.sol


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

pragma solidity ^0.8.0;


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

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

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

// File: https://raw.githubusercontent.com/OpenZeppelin/openzeppelin-contracts/v4.9.6/contracts/token/ERC20/ERC20.sol


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

pragma solidity ^0.8.0;




/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * 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}.
     *
     * 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 default value returned by this function, unless
     * it's 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;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _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;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _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;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _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: contracts/BefiCoin.sol



pragma solidity ^0.8.20;




contract BefiCoin is ERC20, Ownable {

  constructor() ERC20("Befi Labs", "BEFI") {
    _mint(msg.sender, 210_000_000 * 10 ** decimals());
  }

  bool public withdraw_blocked = false;
  bool public transfer_restricted = false;
  mapping(address => bool) public whitelisted_addresses;

  function blockWithdrawForEver() external onlyOwner {
    withdraw_blocked = true;
  }

  function setTransferRestriction(bool _restriction) external onlyOwner {
    transfer_restricted = _restriction;
  }

  function withdrawERC20(address _token_address) public onlyOwner {
    require(!withdraw_blocked, "WITHDRAW_BLOCKED");
    IERC20(_token_address).transfer(msg.sender, IERC20(_token_address).balanceOf(address(this)));
  }

  function withdrawETH() public onlyOwner {
    require(!withdraw_blocked, "WITHDRAW_BLOCKED");
    payable(msg.sender).transfer(address(this).balance);
  }

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

  function _beforeTokenTransfer(
    address from, 
    address to,
    uint256 amount
  ) internal view override {
    if(transfer_restricted) {
      require(whitelisted_addresses[from], "NOT_WHITELISTED");
    }
  }

  function addAddressToWhitelist(address[] calldata _addresses) external onlyOwner {
    for (uint i = 0; i < _addresses.length; i++) {
      whitelisted_addresses[_addresses[i]] = true;
    }
  }

  function removeAddressFromWhitelist(address[] calldata _addresses) external onlyOwner {
    for (uint i = 0; i < _addresses.length; i++) {
      whitelisted_addresses[_addresses[i]] = false;
    }
  }
}

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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addAddressToWhitelist","outputs":[],"stateMutability":"nonpayable","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":"blockWithdrawForEver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","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":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeAddressFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_restriction","type":"bool"}],"name":"setTransferRestriction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transfer_restricted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelisted_addresses","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_token_address","type":"address"}],"name":"withdrawERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw_blocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526005805461ffff60a01b191690553480156200001e575f80fd5b506040518060400160405280600981526020016842656669204c61627360b81b815250604051806040016040528060048152602001634245464960e01b81525081600390816200006f919062000303565b5060046200007e828262000303565b5050506200009b62000095620000ca60201b60201c565b620000ce565b620000c433620000ae6012600a620004da565b620000be90630c845880620004f1565b6200011f565b62000521565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b0382166200017b5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620001885f8383620001f1565b8060025f8282546200019b91906200050b565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600554600160a81b900460ff16156200025f576001600160a01b0383165f9081526006602052604090205460ff166200025f5760405162461bcd60e51b815260206004820152600f60248201526e1393d517d5d2125511531254d51151608a1b604482015260640162000172565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c908216806200028d57607f821691505b602082108103620002ac57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f8211156200025f575f81815260208120601f850160051c81016020861015620002da5750805b601f850160051c820191505b81811015620002fb57828155600101620002e6565b505050505050565b81516001600160401b038111156200031f576200031f62000264565b620003378162000330845462000278565b84620002b2565b602080601f8311600181146200036d575f8415620003555750858301515b5f19600386901b1c1916600185901b178555620002fb565b5f85815260208120601f198616915b828110156200039d578886015182559484019460019091019084016200037c565b5085821015620003bb57878501515f19600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200041f57815f1904821115620004035762000403620003cb565b808516156200041157918102915b93841c9390800290620003e4565b509250929050565b5f826200043757506001620004d4565b816200044557505f620004d4565b81600181146200045e5760028114620004695762000489565b6001915050620004d4565b60ff8411156200047d576200047d620003cb565b50506001821b620004d4565b5060208310610133831016604e8410600b8410161715620004ae575081810a620004d4565b620004ba8383620003df565b805f1904821115620004d057620004d0620003cb565b0290505b92915050565b5f620004ea60ff84168362000427565b9392505050565b8082028115828204841417620004d457620004d4620003cb565b80820180821115620004d457620004d4620003cb565b6110b7806200052f5f395ff3fe608060405234801561000f575f80fd5b5060043610610153575f3560e01c806370a08231116100bf578063c997b89111610079578063c997b891146102bf578063d3bcbb3c146102e1578063dd62ed3e146102f4578063e086e5ec14610307578063f2fde38b1461030f578063f4f3b20014610322575f80fd5b806370a0823114610246578063715018a61461026e5780638da5cb5b1461027657806395d89b4114610291578063a457c2d714610299578063a9059cbb146102ac575f80fd5b806323b872dd1161011057806323b872dd146101e2578063313ce567146101f557806339509351146102045780633c4ecbf71461021757806342966c681461021f57806365b5eac914610232575f80fd5b806301b0c4441461015757806306fdde0314610180578063095ea7b3146101955780630d659ec5146101a857806310c988ce146101bd57806318160ddd146101d0575b5f80fd5b60055461016b90600160a81b900460ff1681565b60405190151581526020015b60405180910390f35b610188610335565b6040516101779190610dfe565b61016b6101a3366004610e64565b6103c5565b6101bb6101b6366004610e99565b6103de565b005b6101bb6101cb366004610ebb565b610404565b6002545b604051908152602001610177565b61016b6101f0366004610f2a565b61047f565b60405160128152602001610177565b61016b610212366004610e64565b6104a2565b6101bb6104c3565b6101bb61022d366004610f63565b6104e0565b60055461016b90600160a01b900460ff1681565b6101d4610254366004610f7a565b6001600160a01b03165f9081526020819052604090205490565b6101bb6104ed565b6005546040516001600160a01b039091168152602001610177565b610188610500565b61016b6102a7366004610e64565b61050f565b61016b6102ba366004610e64565b61058e565b61016b6102cd366004610f7a565b60066020525f908152604090205460ff1681565b6101bb6102ef366004610ebb565b61059b565b6101d4610302366004610f93565b610612565b6101bb61063c565b6101bb61031d366004610f7a565b6106ba565b6101bb610330366004610f7a565b610730565b60606003805461034490610fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461037090610fc4565b80156103bb5780601f10610392576101008083540402835291602001916103bb565b820191905f5260205f20905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b5f336103d2818585610865565b60019150505b92915050565b6103e6610988565b60058054911515600160a81b0260ff60a81b19909216919091179055565b61040c610988565b5f5b8181101561047a575f60065f85858581811061042c5761042c610ffc565b90506020020160208101906104419190610f7a565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061047281611024565b91505061040e565b505050565b5f3361048c8582856109e2565b610497858585610a5a565b506001949350505050565b5f336103d28185856104b48383610612565b6104be919061103c565b610865565b6104cb610988565b6005805460ff60a01b1916600160a01b179055565b6104ea3382610c07565b50565b6104f5610988565b6104fe5f610d42565b565b60606004805461034490610fc4565b5f338161051c8286610612565b9050838110156105815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104978286868403610865565b5f336103d2818585610a5a565b6105a3610988565b5f5b8181101561047a57600160065f8585858181106105c4576105c4610ffc565b90506020020160208101906105d99190610f7a565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061060a81611024565b9150506105a5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610644610988565b600554600160a01b900460ff16156106915760405162461bcd60e51b815260206004820152601060248201526f15d2551211149055d7d09313d0d2d15160821b6044820152606401610578565b60405133904780156108fc02915f818181858888f193505050501580156104ea573d5f803e3d5ffd5b6106c2610988565b6001600160a01b0381166107275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b6104ea81610d42565b610738610988565b600554600160a01b900460ff16156107855760405162461bcd60e51b815260206004820152601060248201526f15d2551211149055d7d09313d0d2d15160821b6044820152606401610578565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156107d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f5919061104f565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561083d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108619190611066565b5050565b6001600160a01b0383166108c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6001600160a01b0382166109285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610578565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610578565b5f6109ed8484610612565b90505f198114610a545781811015610a475760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610578565b610a548484848403610865565b50505050565b6001600160a01b038316610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610578565b6001600160a01b038216610b205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610578565b610b2b838383610d93565b6001600160a01b0383165f9081526020819052604090205481811015610ba25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610578565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a54565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610578565b610c72825f83610d93565b6001600160a01b0382165f9081526020819052604090205481811015610ce55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610578565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600554600160a81b900460ff161561047a576001600160a01b0383165f9081526006602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600f60248201526e1393d517d5d2125511531254d51151608a1b6044820152606401610578565b5f6020808352835180828501525f5b81811015610e2957858101830151858201604001528201610e0d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e5f575f80fd5b919050565b5f8060408385031215610e75575f80fd5b610e7e83610e49565b946020939093013593505050565b80151581146104ea575f80fd5b5f60208284031215610ea9575f80fd5b8135610eb481610e8c565b9392505050565b5f8060208385031215610ecc575f80fd5b823567ffffffffffffffff80821115610ee3575f80fd5b818501915085601f830112610ef6575f80fd5b813581811115610f04575f80fd5b8660208260051b8501011115610f18575f80fd5b60209290920196919550909350505050565b5f805f60608486031215610f3c575f80fd5b610f4584610e49565b9250610f5360208501610e49565b9150604084013590509250925092565b5f60208284031215610f73575f80fd5b5035919050565b5f60208284031215610f8a575f80fd5b610eb482610e49565b5f8060408385031215610fa4575f80fd5b610fad83610e49565b9150610fbb60208401610e49565b90509250929050565b600181811c90821680610fd857607f821691505b602082108103610ff657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161103557611035611010565b5060010190565b808201808211156103d8576103d8611010565b5f6020828403121561105f575f80fd5b5051919050565b5f60208284031215611076575f80fd5b8151610eb481610e8c56fea2646970667358221220839d757aec967a9588d366c0af39e8ee1872da89ddb30889a78de88397e2cc4264736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610153575f3560e01c806370a08231116100bf578063c997b89111610079578063c997b891146102bf578063d3bcbb3c146102e1578063dd62ed3e146102f4578063e086e5ec14610307578063f2fde38b1461030f578063f4f3b20014610322575f80fd5b806370a0823114610246578063715018a61461026e5780638da5cb5b1461027657806395d89b4114610291578063a457c2d714610299578063a9059cbb146102ac575f80fd5b806323b872dd1161011057806323b872dd146101e2578063313ce567146101f557806339509351146102045780633c4ecbf71461021757806342966c681461021f57806365b5eac914610232575f80fd5b806301b0c4441461015757806306fdde0314610180578063095ea7b3146101955780630d659ec5146101a857806310c988ce146101bd57806318160ddd146101d0575b5f80fd5b60055461016b90600160a81b900460ff1681565b60405190151581526020015b60405180910390f35b610188610335565b6040516101779190610dfe565b61016b6101a3366004610e64565b6103c5565b6101bb6101b6366004610e99565b6103de565b005b6101bb6101cb366004610ebb565b610404565b6002545b604051908152602001610177565b61016b6101f0366004610f2a565b61047f565b60405160128152602001610177565b61016b610212366004610e64565b6104a2565b6101bb6104c3565b6101bb61022d366004610f63565b6104e0565b60055461016b90600160a01b900460ff1681565b6101d4610254366004610f7a565b6001600160a01b03165f9081526020819052604090205490565b6101bb6104ed565b6005546040516001600160a01b039091168152602001610177565b610188610500565b61016b6102a7366004610e64565b61050f565b61016b6102ba366004610e64565b61058e565b61016b6102cd366004610f7a565b60066020525f908152604090205460ff1681565b6101bb6102ef366004610ebb565b61059b565b6101d4610302366004610f93565b610612565b6101bb61063c565b6101bb61031d366004610f7a565b6106ba565b6101bb610330366004610f7a565b610730565b60606003805461034490610fc4565b80601f016020809104026020016040519081016040528092919081815260200182805461037090610fc4565b80156103bb5780601f10610392576101008083540402835291602001916103bb565b820191905f5260205f20905b81548152906001019060200180831161039e57829003601f168201915b5050505050905090565b5f336103d2818585610865565b60019150505b92915050565b6103e6610988565b60058054911515600160a81b0260ff60a81b19909216919091179055565b61040c610988565b5f5b8181101561047a575f60065f85858581811061042c5761042c610ffc565b90506020020160208101906104419190610f7a565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061047281611024565b91505061040e565b505050565b5f3361048c8582856109e2565b610497858585610a5a565b506001949350505050565b5f336103d28185856104b48383610612565b6104be919061103c565b610865565b6104cb610988565b6005805460ff60a01b1916600160a01b179055565b6104ea3382610c07565b50565b6104f5610988565b6104fe5f610d42565b565b60606004805461034490610fc4565b5f338161051c8286610612565b9050838110156105815760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6104978286868403610865565b5f336103d2818585610a5a565b6105a3610988565b5f5b8181101561047a57600160065f8585858181106105c4576105c4610ffc565b90506020020160208101906105d99190610f7a565b6001600160a01b0316815260208101919091526040015f20805460ff19169115159190911790558061060a81611024565b9150506105a5565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b610644610988565b600554600160a01b900460ff16156106915760405162461bcd60e51b815260206004820152601060248201526f15d2551211149055d7d09313d0d2d15160821b6044820152606401610578565b60405133904780156108fc02915f818181858888f193505050501580156104ea573d5f803e3d5ffd5b6106c2610988565b6001600160a01b0381166107275760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610578565b6104ea81610d42565b610738610988565b600554600160a01b900460ff16156107855760405162461bcd60e51b815260206004820152601060248201526f15d2551211149055d7d09313d0d2d15160821b6044820152606401610578565b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa1580156107d1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107f5919061104f565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303815f875af115801561083d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108619190611066565b5050565b6001600160a01b0383166108c75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610578565b6001600160a01b0382166109285760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610578565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146104fe5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610578565b5f6109ed8484610612565b90505f198114610a545781811015610a475760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610578565b610a548484848403610865565b50505050565b6001600160a01b038316610abe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610578565b6001600160a01b038216610b205760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610578565b610b2b838383610d93565b6001600160a01b0383165f9081526020819052604090205481811015610ba25760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610578565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610a54565b6001600160a01b038216610c675760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610578565b610c72825f83610d93565b6001600160a01b0382165f9081526020819052604090205481811015610ce55760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610578565b6001600160a01b0383165f818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600554600160a81b900460ff161561047a576001600160a01b0383165f9081526006602052604090205460ff1661047a5760405162461bcd60e51b815260206004820152600f60248201526e1393d517d5d2125511531254d51151608a1b6044820152606401610578565b5f6020808352835180828501525f5b81811015610e2957858101830151858201604001528201610e0d565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610e5f575f80fd5b919050565b5f8060408385031215610e75575f80fd5b610e7e83610e49565b946020939093013593505050565b80151581146104ea575f80fd5b5f60208284031215610ea9575f80fd5b8135610eb481610e8c565b9392505050565b5f8060208385031215610ecc575f80fd5b823567ffffffffffffffff80821115610ee3575f80fd5b818501915085601f830112610ef6575f80fd5b813581811115610f04575f80fd5b8660208260051b8501011115610f18575f80fd5b60209290920196919550909350505050565b5f805f60608486031215610f3c575f80fd5b610f4584610e49565b9250610f5360208501610e49565b9150604084013590509250925092565b5f60208284031215610f73575f80fd5b5035919050565b5f60208284031215610f8a575f80fd5b610eb482610e49565b5f8060408385031215610fa4575f80fd5b610fad83610e49565b9150610fbb60208401610e49565b90509250929050565b600181811c90821680610fd857607f821691505b602082108103610ff657634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52603260045260245ffd5b634e487b7160e01b5f52601160045260245ffd5b5f6001820161103557611035611010565b5060010190565b808201808211156103d8576103d8611010565b5f6020828403121561105f575f80fd5b5051919050565b5f60208284031215611076575f80fd5b8151610eb481610e8c56fea2646970667358221220839d757aec967a9588d366c0af39e8ee1872da89ddb30889a78de88397e2cc4264736f6c63430008140033

Deployed Bytecode Sourcemap

20850:1626:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21043:39;;;;;-1:-1:-1;;;21043:39:0;;;;;;;;;179:14:1;;172:22;154:41;;142:2;127:18;21043:39:0;;;;;;;;9784:100;;;:::i;:::-;;;;;;;:::i;12144:201::-;;;;;;:::i;:::-;;:::i;21240:117::-;;;;;;:::i;:::-;;:::i;:::-;;22269:204;;;;;;:::i;:::-;;:::i;10913:108::-;11001:12;;10913:108;;;2331:25:1;;;2319:2;2304:18;10913:108:0;2185:177:1;12925:261:0;;;;;;:::i;:::-;;:::i;10755:93::-;;;10838:2;2842:36:1;;2830:2;2815:18;10755:93:0;2700:184:1;13595:238:0;;;;;;:::i;:::-;;:::i;21147:87::-;;;:::i;21754:75::-;;;;;;:::i;:::-;;:::i;21002:36::-;;;;;-1:-1:-1;;;21002:36:0;;;;;;11084:127;;;;;;:::i;:::-;-1:-1:-1;;;;;11185:18:0;11158:7;11185:18;;;;;;;;;;;;11084:127;3050:103;;;:::i;2409:87::-;2482:6;;2409:87;;-1:-1:-1;;;;;2482:6:0;;;3411:51:1;;3399:2;3384:18;2409:87:0;3265:203:1;10003:104:0;;;:::i;14336:436::-;;;;;;:::i;:::-;;:::i;11417:193::-;;;;;;:::i;:::-;;:::i;21087:53::-;;;;;;:::i;:::-;;;;;;;;;;;;;;;;22065:198;;;;;;:::i;:::-;;:::i;11673:151::-;;;;;;:::i;:::-;;:::i;21591:157::-;;;:::i;3308:201::-;;;;;;:::i;:::-;;:::i;21363:222::-;;;;;;:::i;:::-;;:::i;9784:100::-;9838:13;9871:5;9864:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9784:100;:::o;12144:201::-;12227:4;870:10;12283:32;870:10;12299:7;12308:6;12283:8;:32::i;:::-;12333:4;12326:11;;;12144:201;;;;;:::o;21240:117::-;2295:13;:11;:13::i;:::-;21317:19:::1;:34:::0;;;::::1;;-1:-1:-1::0;;;21317:34:0::1;-1:-1:-1::0;;;;21317:34:0;;::::1;::::0;;;::::1;::::0;;21240:117::o;22269:204::-;2295:13;:11;:13::i;:::-;22367:6:::1;22362:106;22379:21:::0;;::::1;22362:106;;;22455:5;22416:21;:36;22438:10;;22449:1;22438:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22416:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;22416:36:0;:44;;-1:-1:-1;;22416:44:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22402:3;::::1;::::0;::::1;:::i;:::-;;;;22362:106;;;;22269:204:::0;;:::o;12925:261::-;13022:4;870:10;13080:38;13096:4;870:10;13111:6;13080:15;:38::i;:::-;13129:27;13139:4;13145:2;13149:6;13129:9;:27::i;:::-;-1:-1:-1;13174:4:0;;12925:261;-1:-1:-1;;;;12925:261:0:o;13595:238::-;13683:4;870:10;13739:64;870:10;13755:7;13792:10;13764:25;870:10;13755:7;13764:9;:25::i;:::-;:38;;;;:::i;:::-;13739:8;:64::i;21147:87::-;2295:13;:11;:13::i;:::-;21205:16:::1;:23:::0;;-1:-1:-1;;;;21205:23:0::1;-1:-1:-1::0;;;21205:23:0::1;::::0;;21147:87::o;21754:75::-;21798:25;21804:10;21816:6;21798:5;:25::i;:::-;21754:75;:::o;3050:103::-;2295:13;:11;:13::i;:::-;3115:30:::1;3142:1;3115:18;:30::i;:::-;3050:103::o:0;10003:104::-;10059:13;10092:7;10085:14;;;;;:::i;14336:436::-;14429:4;870:10;14429:4;14512:25;870:10;14529:7;14512:9;:25::i;:::-;14485:52;;14576:15;14556:16;:35;;14548:85;;;;-1:-1:-1;;;14548:85:0;;4859:2:1;14548:85:0;;;4841:21:1;4898:2;4878:18;;;4871:30;4937:34;4917:18;;;4910:62;-1:-1:-1;;;4988:18:1;;;4981:35;5033:19;;14548:85:0;;;;;;;;;14669:60;14678:5;14685:7;14713:15;14694:16;:34;14669:8;:60::i;11417:193::-;11496:4;870:10;11552:28;870:10;11569:2;11573:6;11552:9;:28::i;22065:198::-;2295:13;:11;:13::i;:::-;22158:6:::1;22153:105;22170:21:::0;;::::1;22153:105;;;22246:4;22207:21;:36;22229:10;;22240:1;22229:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;22207:36:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;22207:36:0;:43;;-1:-1:-1;;22207:43:0::1;::::0;::::1;;::::0;;;::::1;::::0;;22193:3;::::1;::::0;::::1;:::i;:::-;;;;22153:105;;11673:151:::0;-1:-1:-1;;;;;11789:18:0;;;11762:7;11789:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11673:151::o;21591:157::-;2295:13;:11;:13::i;:::-;21647:16:::1;::::0;-1:-1:-1;;;21647:16:0;::::1;;;21646:17;21638:46;;;::::0;-1:-1:-1;;;21638:46:0;;5265:2:1;21638:46:0::1;::::0;::::1;5247:21:1::0;5304:2;5284:18;;;5277:30;-1:-1:-1;;;5323:18:1;;;5316:46;5379:18;;21638:46:0::1;5063:340:1::0;21638:46:0::1;21691:51;::::0;21699:10:::1;::::0;21720:21:::1;21691:51:::0;::::1;;;::::0;::::1;::::0;;;21720:21;21699:10;21691:51;::::1;;;;;;;;;;;;;::::0;::::1;;;;3308:201:::0;2295:13;:11;:13::i;:::-;-1:-1:-1;;;;;3397:22:0;::::1;3389:73;;;::::0;-1:-1:-1;;;3389:73:0;;5610:2:1;3389:73:0::1;::::0;::::1;5592:21:1::0;5649:2;5629:18;;;5622:30;5688:34;5668:18;;;5661:62;-1:-1:-1;;;5739:18:1;;;5732:36;5785:19;;3389:73:0::1;5408:402:1::0;3389:73:0::1;3473:28;3492:8;3473:18;:28::i;21363:222::-:0;2295:13;:11;:13::i;:::-;21443:16:::1;::::0;-1:-1:-1;;;21443:16:0;::::1;;;21442:17;21434:46;;;::::0;-1:-1:-1;;;21434:46:0;;5265:2:1;21434:46:0::1;::::0;::::1;5247:21:1::0;5304:2;5284:18;;;5277:30;-1:-1:-1;;;5323:18:1;;;5316:46;5379:18;;21434:46:0::1;5063:340:1::0;21434:46:0::1;21531:47;::::0;-1:-1:-1;;;21531:47:0;;21572:4:::1;21531:47;::::0;::::1;3411:51:1::0;-1:-1:-1;;;;;21487:31:0;::::1;::::0;::::1;::::0;21519:10:::1;::::0;21487:31;;21531:32:::1;::::0;3384:18:1;;21531:47:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21487:92;::::0;-1:-1:-1;;;;;;21487:92:0::1;::::0;;;;;;-1:-1:-1;;;;;6196:32:1;;;21487:92:0::1;::::0;::::1;6178:51:1::0;6245:18;;;6238:34;6151:18;;21487:92:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;21363:222:::0;:::o;18329:346::-;-1:-1:-1;;;;;18431:19:0;;18423:68;;;;-1:-1:-1;;;18423:68:0;;6735:2:1;18423:68:0;;;6717:21:1;6774:2;6754:18;;;6747:30;6813:34;6793:18;;;6786:62;-1:-1:-1;;;6864:18:1;;;6857:34;6908:19;;18423:68:0;6533:400:1;18423:68:0;-1:-1:-1;;;;;18510:21:0;;18502:68;;;;-1:-1:-1;;;18502:68:0;;7140:2:1;18502:68:0;;;7122:21:1;7179:2;7159:18;;;7152:30;7218:34;7198:18;;;7191:62;-1:-1:-1;;;7269:18:1;;;7262:32;7311:19;;18502:68:0;6938:398:1;18502:68:0;-1:-1:-1;;;;;18583:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18635:32;;2331:25:1;;;18635:32:0;;2304:18:1;18635:32:0;;;;;;;18329:346;;;:::o;2574:132::-;2482:6;;-1:-1:-1;;;;;2482:6:0;870:10;2638:23;2630:68;;;;-1:-1:-1;;;2630:68:0;;7543:2:1;2630:68:0;;;7525:21:1;;;7562:18;;;7555:30;7621:34;7601:18;;;7594:62;7673:18;;2630:68:0;7341:356:1;18966:419:0;19067:24;19094:25;19104:5;19111:7;19094:9;:25::i;:::-;19067:52;;-1:-1:-1;;19134:16:0;:37;19130:248;;19216:6;19196:16;:26;;19188:68;;;;-1:-1:-1;;;19188:68:0;;7904:2:1;19188:68:0;;;7886:21:1;7943:2;7923:18;;;7916:30;7982:31;7962:18;;;7955:59;8031:18;;19188:68:0;7702:353:1;19188:68:0;19300:51;19309:5;19316:7;19344:6;19325:16;:25;19300:8;:51::i;:::-;19056:329;18966:419;;;:::o;15242:806::-;-1:-1:-1;;;;;15339:18:0;;15331:68;;;;-1:-1:-1;;;15331:68:0;;8262:2:1;15331:68:0;;;8244:21:1;8301:2;8281:18;;;8274:30;8340:34;8320:18;;;8313:62;-1:-1:-1;;;8391:18:1;;;8384:35;8436:19;;15331:68:0;8060:401:1;15331:68:0;-1:-1:-1;;;;;15418:16:0;;15410:64;;;;-1:-1:-1;;;15410:64:0;;8668:2:1;15410:64:0;;;8650:21:1;8707:2;8687:18;;;8680:30;8746:34;8726:18;;;8719:62;-1:-1:-1;;;8797:18:1;;;8790:33;8840:19;;15410:64:0;8466:399:1;15410:64:0;15487:38;15508:4;15514:2;15518:6;15487:20;:38::i;:::-;-1:-1:-1;;;;;15560:15:0;;15538:19;15560:15;;;;;;;;;;;15594:21;;;;15586:72;;;;-1:-1:-1;;;15586:72:0;;9072:2:1;15586:72:0;;;9054:21:1;9111:2;9091:18;;;9084:30;9150:34;9130:18;;;9123:62;-1:-1:-1;;;9201:18:1;;;9194:36;9247:19;;15586:72:0;8870:402:1;15586:72:0;-1:-1:-1;;;;;15694:15:0;;;:9;:15;;;;;;;;;;;15712:20;;;15694:38;;15912:13;;;;;;;;;;:23;;;;;;15964:26;;2331:25:1;;;15912:13:0;;15964:26;;2304:18:1;15964:26:0;;;;;;;16003:37;22269:204;17216:675;-1:-1:-1;;;;;17300:21:0;;17292:67;;;;-1:-1:-1;;;17292:67:0;;9479:2:1;17292:67:0;;;9461:21:1;9518:2;9498:18;;;9491:30;9557:34;9537:18;;;9530:62;-1:-1:-1;;;9608:18:1;;;9601:31;9649:19;;17292:67:0;9277:397:1;17292:67:0;17372:49;17393:7;17410:1;17414:6;17372:20;:49::i;:::-;-1:-1:-1;;;;;17459:18:0;;17434:22;17459:18;;;;;;;;;;;17496:24;;;;17488:71;;;;-1:-1:-1;;;17488:71:0;;9881:2:1;17488:71:0;;;9863:21:1;9920:2;9900:18;;;9893:30;9959:34;9939:18;;;9932:62;-1:-1:-1;;;10010:18:1;;;10003:32;10052:19;;17488:71:0;9679:398:1;17488:71:0;-1:-1:-1;;;;;17595:18:0;;:9;:18;;;;;;;;;;;17616:23;;;17595:44;;17734:12;:22;;;;;;;17785:37;2331:25:1;;;17595:9:0;;:18;17785:37;;2304:18:1;17785:37:0;;;;;;;22362:106:::1;22269:204:::0;;:::o;3669:191::-;3762:6;;;-1:-1:-1;;;;;3779:17:0;;;-1:-1:-1;;;;;;3779:17:0;;;;;;;3812:40;;3762:6;;;3779:17;3762:6;;3812:40;;3743:16;;3812:40;3732:128;3669:191;:::o;21835:224::-;21961:19;;-1:-1:-1;;;21961:19:0;;;;21958:96;;;-1:-1:-1;;;;;21999:27:0;;;;;;:21;:27;;;;;;;;21991:55;;;;-1:-1:-1;;;21991:55:0;;10284:2:1;21991:55:0;;;10266:21:1;10323:2;10303:18;;;10296:30;-1:-1:-1;;;10342:18:1;;;10335:45;10397:18;;21991:55:0;10082:339:1;206:548;318:4;347:2;376;365:9;358:21;408:6;402:13;451:6;446:2;435:9;431:18;424:34;476:1;486:140;500:6;497:1;494:13;486:140;;;595:14;;;591:23;;585:30;561:17;;;580:2;557:26;550:66;515:10;;486:140;;;490:3;675:1;670:2;661:6;650:9;646:22;642:31;635:42;745:2;738;734:7;729:2;721:6;717:15;713:29;702:9;698:45;694:54;686:62;;;;206:548;;;;:::o;759:173::-;827:20;;-1:-1:-1;;;;;876:31:1;;866:42;;856:70;;922:1;919;912:12;856:70;759:173;;;:::o;937:254::-;1005:6;1013;1066:2;1054:9;1045:7;1041:23;1037:32;1034:52;;;1082:1;1079;1072:12;1034:52;1105:29;1124:9;1105:29;:::i;:::-;1095:39;1181:2;1166:18;;;;1153:32;;-1:-1:-1;;;937:254:1:o;1196:118::-;1282:5;1275:13;1268:21;1261:5;1258:32;1248:60;;1304:1;1301;1294:12;1319:241;1375:6;1428:2;1416:9;1407:7;1403:23;1399:32;1396:52;;;1444:1;1441;1434:12;1396:52;1483:9;1470:23;1502:28;1524:5;1502:28;:::i;:::-;1549:5;1319:241;-1:-1:-1;;;1319:241:1:o;1565:615::-;1651:6;1659;1712:2;1700:9;1691:7;1687:23;1683:32;1680:52;;;1728:1;1725;1718:12;1680:52;1768:9;1755:23;1797:18;1838:2;1830:6;1827:14;1824:34;;;1854:1;1851;1844:12;1824:34;1892:6;1881:9;1877:22;1867:32;;1937:7;1930:4;1926:2;1922:13;1918:27;1908:55;;1959:1;1956;1949:12;1908:55;1999:2;1986:16;2025:2;2017:6;2014:14;2011:34;;;2041:1;2038;2031:12;2011:34;2094:7;2089:2;2079:6;2076:1;2072:14;2068:2;2064:23;2060:32;2057:45;2054:65;;;2115:1;2112;2105:12;2054:65;2146:2;2138:11;;;;;2168:6;;-1:-1:-1;1565:615:1;;-1:-1:-1;;;;1565:615:1:o;2367:328::-;2444:6;2452;2460;2513:2;2501:9;2492:7;2488:23;2484:32;2481:52;;;2529:1;2526;2519:12;2481:52;2552:29;2571:9;2552:29;:::i;:::-;2542:39;;2600:38;2634:2;2623:9;2619:18;2600:38;:::i;:::-;2590:48;;2685:2;2674:9;2670:18;2657:32;2647:42;;2367:328;;;;;:::o;2889:180::-;2948:6;3001:2;2989:9;2980:7;2976:23;2972:32;2969:52;;;3017:1;3014;3007:12;2969:52;-1:-1:-1;3040:23:1;;2889:180;-1:-1:-1;2889:180:1:o;3074:186::-;3133:6;3186:2;3174:9;3165:7;3161:23;3157:32;3154:52;;;3202:1;3199;3192:12;3154:52;3225:29;3244:9;3225:29;:::i;3473:260::-;3541:6;3549;3602:2;3590:9;3581:7;3577:23;3573:32;3570:52;;;3618:1;3615;3608:12;3570:52;3641:29;3660:9;3641:29;:::i;:::-;3631:39;;3689:38;3723:2;3712:9;3708:18;3689:38;:::i;:::-;3679:48;;3473:260;;;;;:::o;3738:380::-;3817:1;3813:12;;;;3860;;;3881:61;;3935:4;3927:6;3923:17;3913:27;;3881:61;3988:2;3980:6;3977:14;3957:18;3954:38;3951:161;;4034:10;4029:3;4025:20;4022:1;4015:31;4069:4;4066:1;4059:15;4097:4;4094:1;4087:15;3951:161;;3738:380;;;:::o;4123:127::-;4184:10;4179:3;4175:20;4172:1;4165:31;4215:4;4212:1;4205:15;4239:4;4236:1;4229:15;4255:127;4316:10;4311:3;4307:20;4304:1;4297:31;4347:4;4344:1;4337:15;4371:4;4368:1;4361:15;4387:135;4426:3;4447:17;;;4444:43;;4467:18;;:::i;:::-;-1:-1:-1;4514:1:1;4503:13;;4387:135::o;4527:125::-;4592:9;;;4613:10;;;4610:36;;;4626:18;;:::i;5815:184::-;5885:6;5938:2;5926:9;5917:7;5913:23;5909:32;5906:52;;;5954:1;5951;5944:12;5906:52;-1:-1:-1;5977:16:1;;5815:184;-1:-1:-1;5815:184:1:o;6283:245::-;6350:6;6403:2;6391:9;6382:7;6378:23;6374:32;6371:52;;;6419:1;6416;6409:12;6371:52;6451:9;6445:16;6470:28;6492:5;6470:28;:::i

Swarm Source

ipfs://839d757aec967a9588d366c0af39e8ee1872da89ddb30889a78de88397e2cc42
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.