BNB Price: $639.95 (+0.52%)
 

Overview

BNB Balance

BNB Smart Chain LogoBNB Smart Chain LogoBNB Smart Chain Logo0 BNB

BNB Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Block
From
To
Approve931077262026-04-17 18:14:4646 mins ago1776449686IN
0x5A5ba3c4...e07674444
0 BNB0.000003020.06488641
Approve930937902026-04-17 16:30:082 hrs ago1776443408IN
0x5A5ba3c4...e07674444
0 BNB0.000001260.05227882
Approve930924672026-04-17 16:20:122 hrs ago1776442812IN
0x5A5ba3c4...e07674444
0 BNB0.000002320.05
Approve930882912026-04-17 15:48:513 hrs ago1776440931IN
0x5A5ba3c4...e07674444
0 BNB0.000002430.05219258
Approve930795202026-04-17 14:42:564 hrs ago1776436976IN
0x5A5ba3c4...e07674444
0 BNB0.00000260.0559551
Approve930737732026-04-17 13:59:385 hrs ago1776434378IN
0x5A5ba3c4...e07674444
0 BNB0.000002760.05938443
Approve930721992026-04-17 13:47:495 hrs ago1776433669IN
0x5A5ba3c4...e07674444
0 BNB0.000001250.0517626
Approve930555612026-04-17 11:42:477 hrs ago1776426167IN
0x5A5ba3c4...e07674444
0 BNB0.000002430.05229584
Approve930495342026-04-17 10:57:318 hrs ago1776423451IN
0x5A5ba3c4...e07674444
0 BNB0.000004650.1
Approve930410522026-04-17 9:53:489 hrs ago1776419628IN
0x5A5ba3c4...e07674444
0 BNB0.000003290.07078781
Approve930146542026-04-17 6:35:3312 hrs ago1776407733IN
0x5A5ba3c4...e07674444
0 BNB0.000002440.05240011
Approve930036382026-04-17 5:12:5013 hrs ago1776402770IN
0x5A5ba3c4...e07674444
0 BNB0.00000290.06243763
Approve929768522026-04-17 1:51:4317 hrs ago1776390703IN
0x5A5ba3c4...e07674444
0 BNB0.000002340.05033495
Approve929745692026-04-17 1:34:3117 hrs ago1776389671IN
0x5A5ba3c4...e07674444
0 BNB0.000002770.05966041
Approve929699572026-04-17 0:59:5518 hrs ago1776387595IN
0x5A5ba3c4...e07674444
0 BNB0.000002530.05441816
Approve929609272026-04-16 23:52:0919 hrs ago1776383529IN
0x5A5ba3c4...e07674444
0 BNB0.000004650.1
Approve929237862026-04-16 19:13:2223 hrs ago1776366802IN
0x5A5ba3c4...e07674444
0 BNB0.000002460.05289467
Approve928744642026-04-16 13:02:5329 hrs ago1776344573IN
0x5A5ba3c4...e07674444
0 BNB0.000002320.05
Approve928277242026-04-16 7:11:4735 hrs ago1776323507IN
0x5A5ba3c4...e07674444
0 BNB0.000002530.05440062
Approve927694142026-04-15 23:53:5143 hrs ago1776297231IN
0x5A5ba3c4...e07674444
0 BNB0.000002630.05662149
Approve927167792026-04-15 17:17:562 days ago1776273476IN
0x5A5ba3c4...e07674444
0 BNB0.000004650.1
Approve926537422026-04-15 9:23:522 days ago1776245032IN
0x5A5ba3c4...e07674444
0 BNB0.000002660.05731975
Approve926234592026-04-15 5:36:292 days ago1776231389IN
0x5A5ba3c4...e07674444
0 BNB0.000002380.05112571
Approve926097922026-04-15 3:53:532 days ago1776225233IN
0x5A5ba3c4...e07674444
0 BNB0.000001310.05421331
Approve926095922026-04-15 3:52:232 days ago1776225143IN
0x5A5ba3c4...e07674444
0 BNB0.000002450.05278032
View all transactions

Latest 1 internal transaction

Parent Transaction Hash Block From To
876398872026-03-20 6:01:4928 days ago1773986509  Contract Creation0 BNB
Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xC51ceF5c...2E27cC7f9
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Token

Compiler Version
v0.8.20+commit.a1b79de6

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 6: Token3.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./Ownable.sol";
import "./FourERC20.sol";

contract Token is FourERC20, Ownable {
    uint public constant MODE_NORMAL = 0;
    uint public constant MODE_TRANSFER_RESTRICTED = 1;
    uint public constant MODE_TRANSFER_CONTROLLED = 2;
    uint public _mode;

    bool private _initialized;

    function init(
        string memory name,
        string memory symbol,
        uint256 totalSupply) public onlyOwner {
        require(!_initialized, "Token: initialized");
        _initialized = true;
        _init(name, symbol);
        _mint(owner(), totalSupply);
        _mode = MODE_TRANSFER_RESTRICTED;
    }

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, amount);
        if (_mode == MODE_TRANSFER_RESTRICTED) {
            revert("Token: Transfer is restricted");
        }
        if (_mode == MODE_TRANSFER_CONTROLLED) {
            require(from == owner() || to == owner(), "Token: Invalid transfer");
        }
    }

    function setMode(uint256 v) public onlyOwner {
        if (_mode != MODE_NORMAL) {
            _mode = v;
        }
    }
}

File 2 of 6: Context.sol
// SPDX-License-Identifier: MIT
// 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 3 of 6: FourERC20.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./IERC20Metadata.sol";
import "./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.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 FourERC20 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.
     */
    function _init(string memory name_, string memory symbol_) internal {
        _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 4 of 6: IERC20.sol
// SPDX-License-Identifier: MIT
// 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 5 of 6: 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 6 of 6: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./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. 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);
    }
}

Contract Security Audit

Contract ABI

API
[{"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":"MODE_NORMAL","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_CONTROLLED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MODE_TRANSFER_RESTRICTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mode","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":"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":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"totalSupply","type":"uint256"}],"name":"init","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":[{"internalType":"uint256","name":"v","type":"uint256"}],"name":"setMode","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"}]

0x608060405234801561000f575f80fd5b506100193361001e565b61006f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b610eee8061007c5f395ff3fe608060405234801561000f575f80fd5b5060043610610127575f3560e01c806370a08231116100a9578063a9059cbb1161006e578063a9059cbb14610245578063c5c03af314610258578063d72dd3b414610261578063dd62ed3e14610274578063f2fde38b14610287575f80fd5b806370a08231146101df578063715018a6146102075780638da5cb5b1461020f57806395d89b411461022a578063a457c2d714610232575f80fd5b80632eabc917116100ef5780632eabc91714610199578063313ce567146101ae57806332be6330146101bd57806339509351146101c55780633af3d783146101d8575f80fd5b806306fdde031461012b578063095ea7b31461014957806318160ddd1461016c5780631c8fc2c01461017e57806323b872dd14610186575b5f80fd5b61013361029a565b6040516101409190610b24565b60405180910390f35b61015c610157366004610b8a565b61032a565b6040519015158152602001610140565b6002545b604051908152602001610140565b610170600181565b61015c610194366004610bb2565b610343565b6101ac6101a7366004610c88565b610366565b005b60405160128152602001610140565b610170600281565b61015c6101d3366004610b8a565b6103f7565b6101705f81565b6101706101ed366004610cf0565b6001600160a01b03165f9081526020819052604090205490565b6101ac610418565b6005546040516001600160a01b039091168152602001610140565b61013361042b565b61015c610240366004610b8a565b61043a565b61015c610253366004610b8a565b6104b4565b61017060065481565b6101ac61026f366004610d10565b6104c1565b610170610282366004610d27565b6104da565b6101ac610295366004610cf0565b610504565b6060600380546102a990610d58565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610d58565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f3361033781858561057a565b60019150505b92915050565b5f3361035085828561069d565b61035b858585610715565b506001949350505050565b61036e6108c2565b60075460ff16156103bb5760405162461bcd60e51b8152602060048201526012602482015271151bdad95b8e881a5b9a5d1a585b1a5e995960721b60448201526064015b60405180910390fd5b6007805460ff191660011790556103d2838361091c565b6103ed6103e76005546001600160a01b031690565b8261093a565b5050600160065550565b5f3361033781858561040983836104da565b6104139190610d90565b61057a565b6104206108c2565b6104295f610a02565b565b6060600480546102a990610d58565b5f338161044782866104da565b9050838110156104a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61035b828686840361057a565b5f33610337818585610715565b6104c96108c2565b600654156104d75760068190555b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61050c6108c2565b6001600160a01b0381166105715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b2565b6104d781610a02565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6106a884846104da565b90505f19811461070f57818110156107025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b2565b61070f848484840361057a565b50505050565b6001600160a01b0383166107795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b0382166107db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b6107e6838383610a53565b6001600160a01b0383165f908152602081905260409020548181101561085d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b2565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361070f565b6005546001600160a01b031633146104295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b60036109288382610dfc565b5060046109358282610dfc565b505050565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b2565b61099b5f8383610a53565b8060025f8282546109ac9190610d90565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600160065403610aa55760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e3a205472616e73666572206973207265737472696374656400000060448201526064016103b2565b600260065403610935576005546001600160a01b0384811691161480610ad857506005546001600160a01b038381169116145b6109355760405162461bcd60e51b815260206004820152601760248201527f546f6b656e3a20496e76616c6964207472616e7366657200000000000000000060448201526064016103b2565b5f6020808352835180828501525f5b81811015610b4f57858101830151858201604001528201610b33565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b85575f80fd5b919050565b5f8060408385031215610b9b575f80fd5b610ba483610b6f565b946020939093013593505050565b5f805f60608486031215610bc4575f80fd5b610bcd84610b6f565b9250610bdb60208501610b6f565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610c0e575f80fd5b813567ffffffffffffffff80821115610c2957610c29610beb565b604051601f8301601f19908116603f01168101908282118183101715610c5157610c51610beb565b81604052838152866020858801011115610c69575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f805f60608486031215610c9a575f80fd5b833567ffffffffffffffff80821115610cb1575f80fd5b610cbd87838801610bff565b94506020860135915080821115610cd2575f80fd5b50610cdf86828701610bff565b925050604084013590509250925092565b5f60208284031215610d00575f80fd5b610d0982610b6f565b9392505050565b5f60208284031215610d20575f80fd5b5035919050565b5f8060408385031215610d38575f80fd5b610d4183610b6f565b9150610d4f60208401610b6f565b90509250929050565b600181811c90821680610d6c57607f821691505b602082108103610d8a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561033d57634e487b7160e01b5f52601160045260245ffd5b601f821115610935575f81815260208120601f850160051c81016020861015610dd55750805b601f850160051c820191505b81811015610df457828155600101610de1565b505050505050565b815167ffffffffffffffff811115610e1657610e16610beb565b610e2a81610e248454610d58565b84610daf565b602080601f831160018114610e5d575f8415610e465750858301515b5f19600386901b1c1916600185901b178555610df4565b5f85815260208120601f198616915b82811015610e8b57888601518255948401946001909101908401610e6c565b5085821015610ea857878501515f19600388901b60f8161c191681555b5050505050600190811b0190555056fea26469706673582212203874a68f141da9e7322cb8fa8158cb6e06dacbfbfbf6320d1070ee24cf24335864736f6c63430008140033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610127575f3560e01c806370a08231116100a9578063a9059cbb1161006e578063a9059cbb14610245578063c5c03af314610258578063d72dd3b414610261578063dd62ed3e14610274578063f2fde38b14610287575f80fd5b806370a08231146101df578063715018a6146102075780638da5cb5b1461020f57806395d89b411461022a578063a457c2d714610232575f80fd5b80632eabc917116100ef5780632eabc91714610199578063313ce567146101ae57806332be6330146101bd57806339509351146101c55780633af3d783146101d8575f80fd5b806306fdde031461012b578063095ea7b31461014957806318160ddd1461016c5780631c8fc2c01461017e57806323b872dd14610186575b5f80fd5b61013361029a565b6040516101409190610b24565b60405180910390f35b61015c610157366004610b8a565b61032a565b6040519015158152602001610140565b6002545b604051908152602001610140565b610170600181565b61015c610194366004610bb2565b610343565b6101ac6101a7366004610c88565b610366565b005b60405160128152602001610140565b610170600281565b61015c6101d3366004610b8a565b6103f7565b6101705f81565b6101706101ed366004610cf0565b6001600160a01b03165f9081526020819052604090205490565b6101ac610418565b6005546040516001600160a01b039091168152602001610140565b61013361042b565b61015c610240366004610b8a565b61043a565b61015c610253366004610b8a565b6104b4565b61017060065481565b6101ac61026f366004610d10565b6104c1565b610170610282366004610d27565b6104da565b6101ac610295366004610cf0565b610504565b6060600380546102a990610d58565b80601f01602080910402602001604051908101604052809291908181526020018280546102d590610d58565b80156103205780601f106102f757610100808354040283529160200191610320565b820191905f5260205f20905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b5f3361033781858561057a565b60019150505b92915050565b5f3361035085828561069d565b61035b858585610715565b506001949350505050565b61036e6108c2565b60075460ff16156103bb5760405162461bcd60e51b8152602060048201526012602482015271151bdad95b8e881a5b9a5d1a585b1a5e995960721b60448201526064015b60405180910390fd5b6007805460ff191660011790556103d2838361091c565b6103ed6103e76005546001600160a01b031690565b8261093a565b5050600160065550565b5f3361033781858561040983836104da565b6104139190610d90565b61057a565b6104206108c2565b6104295f610a02565b565b6060600480546102a990610d58565b5f338161044782866104da565b9050838110156104a75760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103b2565b61035b828686840361057a565b5f33610337818585610715565b6104c96108c2565b600654156104d75760068190555b50565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b61050c6108c2565b6001600160a01b0381166105715760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b2565b6104d781610a02565b6001600160a01b0383166105dc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103b2565b6001600160a01b03821661063d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103b2565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b5f6106a884846104da565b90505f19811461070f57818110156107025760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103b2565b61070f848484840361057a565b50505050565b6001600160a01b0383166107795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103b2565b6001600160a01b0382166107db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103b2565b6107e6838383610a53565b6001600160a01b0383165f908152602081905260409020548181101561085d5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103b2565b6001600160a01b038481165f81815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361070f565b6005546001600160a01b031633146104295760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b2565b60036109288382610dfc565b5060046109358282610dfc565b505050565b6001600160a01b0382166109905760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103b2565b61099b5f8383610a53565b8060025f8282546109ac9190610d90565b90915550506001600160a01b0382165f81815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b600160065403610aa55760405162461bcd60e51b815260206004820152601d60248201527f546f6b656e3a205472616e73666572206973207265737472696374656400000060448201526064016103b2565b600260065403610935576005546001600160a01b0384811691161480610ad857506005546001600160a01b038381169116145b6109355760405162461bcd60e51b815260206004820152601760248201527f546f6b656e3a20496e76616c6964207472616e7366657200000000000000000060448201526064016103b2565b5f6020808352835180828501525f5b81811015610b4f57858101830151858201604001528201610b33565b505f604082860101526040601f19601f8301168501019250505092915050565b80356001600160a01b0381168114610b85575f80fd5b919050565b5f8060408385031215610b9b575f80fd5b610ba483610b6f565b946020939093013593505050565b5f805f60608486031215610bc4575f80fd5b610bcd84610b6f565b9250610bdb60208501610b6f565b9150604084013590509250925092565b634e487b7160e01b5f52604160045260245ffd5b5f82601f830112610c0e575f80fd5b813567ffffffffffffffff80821115610c2957610c29610beb565b604051601f8301601f19908116603f01168101908282118183101715610c5157610c51610beb565b81604052838152866020858801011115610c69575f80fd5b836020870160208301375f602085830101528094505050505092915050565b5f805f60608486031215610c9a575f80fd5b833567ffffffffffffffff80821115610cb1575f80fd5b610cbd87838801610bff565b94506020860135915080821115610cd2575f80fd5b50610cdf86828701610bff565b925050604084013590509250925092565b5f60208284031215610d00575f80fd5b610d0982610b6f565b9392505050565b5f60208284031215610d20575f80fd5b5035919050565b5f8060408385031215610d38575f80fd5b610d4183610b6f565b9150610d4f60208401610b6f565b90509250929050565b600181811c90821680610d6c57607f821691505b602082108103610d8a57634e487b7160e01b5f52602260045260245ffd5b50919050565b8082018082111561033d57634e487b7160e01b5f52601160045260245ffd5b601f821115610935575f81815260208120601f850160051c81016020861015610dd55750805b601f850160051c820191505b81811015610df457828155600101610de1565b505050505050565b815167ffffffffffffffff811115610e1657610e16610beb565b610e2a81610e248454610d58565b84610daf565b602080601f831160018114610e5d575f8415610e465750858301515b5f19600386901b1c1916600185901b178555610df4565b5f85815260208120601f198616915b82811015610e8b57888601518255948401946001909101908401610e6c565b5085821015610ea857878501515f19600388901b60f8161c191681555b5050505050600190811b0190555056fea26469706673582212203874a68f141da9e7322cb8fa8158cb6e06dacbfbfbf6320d1070ee24cf24335864736f6c63430008140033

Deployed Bytecode Sourcemap

114:1183:5:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2139:100:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4499:201;;;;;;:::i;:::-;;:::i;:::-;;;1169:14:6;;1162:22;1144:41;;1132:2;1117:18;4499:201:1;1004:187:6;3268:108:1;3356:12;;3268:108;;;1342:25:6;;;1330:2;1315:18;3268:108:1;1196:177:6;201:49:5;;249:1;201:49;;5280:261:1;;;;;;:::i;:::-;;:::i;373:326:5:-;;;;;;:::i;:::-;;:::i;:::-;;3110:93:1;;;3193:2;3325:36:6;;3313:2;3298:18;3110:93:1;3183:184:6;257:49:5;;305:1;257:49;;5950:238:1;;;;;;:::i;:::-;;:::i;158:36:5:-;;193:1;158:36;;3439:127:1;;;;;;:::i;:::-;-1:-1:-1;;;;;3540:18:1;3513:7;3540:18;;;;;;;;;;;;3439:127;1817:101:4;;;:::i;1194:85::-;1266:6;;1194:85;;-1:-1:-1;;;;;1266:6:4;;;3709:51:6;;3697:2;3682:18;1194:85:4;3563:203:6;2358:104:1;;;:::i;6691:436::-;;;;;;:::i;:::-;;:::i;3772:193::-;;;;;;:::i;:::-;;:::i;313:17:5:-;;;;;;1169:125;;;;;;:::i;:::-;;:::i;4028:151:1:-;;;;;;:::i;:::-;;:::i;2067:198:4:-;;;;;;:::i;:::-;;:::i;2139:100:1:-;2193:13;2226:5;2219:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2139:100;:::o;4499:201::-;4582:4;734:10:0;4638:32:1;734:10:0;4654:7:1;4663:6;4638:8;:32::i;:::-;4688:4;4681:11;;;4499:201;;;;;:::o;5280:261::-;5377:4;734:10:0;5435:38:1;5451:4;734:10:0;5466:6:1;5435:15;:38::i;:::-;5484:27;5494:4;5500:2;5504:6;5484:9;:27::i;:::-;-1:-1:-1;5529:4:1;;5280:261;-1:-1:-1;;;;5280:261:1:o;373:326:5:-;1087:13:4;:11;:13::i;:::-;515:12:5::1;::::0;::::1;;514:13;506:44;;;::::0;-1:-1:-1;;;506:44:5;;4808:2:6;506:44:5::1;::::0;::::1;4790:21:6::0;4847:2;4827:18;;;4820:30;-1:-1:-1;;;4866:18:6;;;4859:48;4924:18;;506:44:5::1;;;;;;;;;561:12;:19:::0;;-1:-1:-1;;561:19:5::1;576:4;561:19;::::0;;591::::1;597:4:::0;603:6;591:5:::1;:19::i;:::-;621:27;627:7;1266:6:4::0;;-1:-1:-1;;;;;1266:6:4;;1194:85;627:7:5::1;636:11;621:5;:27::i;:::-;-1:-1:-1::0;;249:1:5::1;659:5;:32:::0;-1:-1:-1;373:326:5:o;5950:238:1:-;6038:4;734:10:0;6094:64:1;734:10:0;6110:7:1;6147:10;6119:25;734:10:0;6110:7:1;6119:9;:25::i;:::-;:38;;;;:::i;:::-;6094:8;:64::i;1817:101:4:-;1087:13;:11;:13::i;:::-;1881:30:::1;1908:1;1881:18;:30::i;:::-;1817:101::o:0;2358:104:1:-;2414:13;2447:7;2440:14;;;;;:::i;6691:436::-;6784:4;734:10:0;6784:4:1;6867:25;734:10:0;6884:7:1;6867:9;:25::i;:::-;6840:52;;6931:15;6911:16;:35;;6903:85;;;;-1:-1:-1;;;6903:85:1;;5382:2:6;6903:85:1;;;5364:21:6;5421:2;5401:18;;;5394:30;5460:34;5440:18;;;5433:62;-1:-1:-1;;;5511:18:6;;;5504:35;5556:19;;6903:85:1;5180:401:6;6903:85:1;7024:60;7033:5;7040:7;7068:15;7049:16;:34;7024:8;:60::i;3772:193::-;3851:4;734:10:0;3907:28:1;734:10:0;3924:2:1;3928:6;3907:9;:28::i;1169:125:5:-;1087:13:4;:11;:13::i;:::-;1229:5:5::1;::::0;:20;1225:62:::1;;1266:5;:9:::0;;;1225:62:::1;1169:125:::0;:::o;4028:151:1:-;-1:-1:-1;;;;;4144:18:1;;;4117:7;4144:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;4028:151::o;2067:198:4:-;1087:13;:11;:13::i;:::-;-1:-1:-1;;;;;2155:22:4;::::1;2147:73;;;::::0;-1:-1:-1;;;2147:73:4;;5788:2:6;2147:73:4::1;::::0;::::1;5770:21:6::0;5827:2;5807:18;;;5800:30;5866:34;5846:18;;;5839:62;-1:-1:-1;;;5917:18:6;;;5910:36;5963:19;;2147:73:4::1;5586:402:6::0;2147:73:4::1;2230:28;2249:8;2230:18;:28::i;10684:346:1:-:0;-1:-1:-1;;;;;10786:19:1;;10778:68;;;;-1:-1:-1;;;10778:68:1;;6195:2:6;10778:68:1;;;6177:21:6;6234:2;6214:18;;;6207:30;6273:34;6253:18;;;6246:62;-1:-1:-1;;;6324:18:6;;;6317:34;6368:19;;10778:68:1;5993:400:6;10778:68:1;-1:-1:-1;;;;;10865:21:1;;10857:68;;;;-1:-1:-1;;;10857:68:1;;6600:2:6;10857:68:1;;;6582:21:6;6639:2;6619:18;;;6612:30;6678:34;6658:18;;;6651:62;-1:-1:-1;;;6729:18:6;;;6722:32;6771:19;;10857:68:1;6398:398:6;10857:68:1;-1:-1:-1;;;;;10938:18:1;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10990:32;;1342:25:6;;;10990:32:1;;1315:18:6;10990:32:1;;;;;;;10684:346;;;:::o;11321:419::-;11422:24;11449:25;11459:5;11466:7;11449:9;:25::i;:::-;11422:52;;-1:-1:-1;;11489:16:1;:37;11485:248;;11571:6;11551:16;:26;;11543:68;;;;-1:-1:-1;;;11543:68:1;;7003:2:6;11543:68:1;;;6985:21:6;7042:2;7022:18;;;7015:30;7081:31;7061:18;;;7054:59;7130:18;;11543:68:1;6801:353:6;11543:68:1;11655:51;11664:5;11671:7;11699:6;11680:16;:25;11655:8;:51::i;:::-;11411:329;11321:419;;;:::o;7597:806::-;-1:-1:-1;;;;;7694:18:1;;7686:68;;;;-1:-1:-1;;;7686:68:1;;7361:2:6;7686:68:1;;;7343:21:6;7400:2;7380:18;;;7373:30;7439:34;7419:18;;;7412:62;-1:-1:-1;;;7490:18:6;;;7483:35;7535:19;;7686:68:1;7159:401:6;7686:68:1;-1:-1:-1;;;;;7773:16:1;;7765:64;;;;-1:-1:-1;;;7765:64:1;;7767:2:6;7765:64:1;;;7749:21:6;7806:2;7786:18;;;7779:30;7845:34;7825:18;;;7818:62;-1:-1:-1;;;7896:18:6;;;7889:33;7939:19;;7765:64:1;7565:399:6;7765:64:1;7842:38;7863:4;7869:2;7873:6;7842:20;:38::i;:::-;-1:-1:-1;;;;;7915:15:1;;7893:19;7915:15;;;;;;;;;;;7949:21;;;;7941:72;;;;-1:-1:-1;;;7941:72:1;;8171:2:6;7941:72:1;;;8153:21:6;8210:2;8190:18;;;8183:30;8249:34;8229:18;;;8222:62;-1:-1:-1;;;8300:18:6;;;8293:36;8346:19;;7941:72:1;7969:402:6;7941:72:1;-1:-1:-1;;;;;8049:15:1;;;:9;:15;;;;;;;;;;;8067:20;;;8049:38;;8267:13;;;;;;;;;;:23;;;;;;8319:26;;1342:25:6;;;8267:13:1;;8319:26;;1315:18:6;8319:26:1;;;;;;;8358:37;1941:128;1352:130:4;1266:6;;-1:-1:-1;;;;;1266:6:4;734:10:0;1415:23:4;1407:68;;;;-1:-1:-1;;;1407:68:4;;8578:2:6;1407:68:4;;;8560:21:6;;;8597:18;;;8590:30;8656:34;8636:18;;;8629:62;8708:18;;1407:68:4;8376:356:6;1941:128:1;2020:5;:13;2028:5;2020;:13;:::i;:::-;-1:-1:-1;2044:7:1;:17;2054:7;2044;:17;:::i;:::-;;1941:128;;:::o;8690:548::-;-1:-1:-1;;;;;8774:21:1;;8766:65;;;;-1:-1:-1;;;8766:65:1;;11143:2:6;8766:65:1;;;11125:21:6;11182:2;11162:18;;;11155:30;11221:33;11201:18;;;11194:61;11272:18;;8766:65:1;10941:355:6;8766:65:1;8844:49;8873:1;8877:7;8886:6;8844:20;:49::i;:::-;8922:6;8906:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;9077:18:1;;:9;:18;;;;;;;;;;;:28;;;;;;9132:37;1342:25:6;;;9132:37:1;;1315:18:6;9132:37:1;;;;;;;8690:548;;:::o;2419:187:4:-;2511:6;;;-1:-1:-1;;;;;2527:17:4;;;-1:-1:-1;;;;;;2527:17:4;;;;;;;2559:40;;2511:6;;;2527:17;2511:6;;2559:40;;2492:16;;2559:40;2482:124;2419:187;:::o;707:454:5:-;249:1;909:5;;:33;905:105;;959:39;;-1:-1:-1;;;959:39:5;;11503:2:6;959:39:5;;;11485:21:6;11542:2;11522:18;;;11515:30;11581:31;11561:18;;;11554:59;11630:18;;959:39:5;11301:353:6;905:105:5;305:1;1024:5;;:33;1020:134;;1266:6:4;;-1:-1:-1;;;;;1082:15:5;;;1266:6:4;;1082:15:5;;:32;;-1:-1:-1;1266:6:4;;-1:-1:-1;;;;;1101:13:5;;;1266:6:4;;1101:13:5;1082:32;1074:68;;;;-1:-1:-1;;;1074:68:5;;11861:2:6;1074:68:5;;;11843:21:6;11900:2;11880:18;;;11873:30;11939:25;11919:18;;;11912:53;11982:18;;1074:68:5;11659:347:6;14:548;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:173::-;635:20;;-1:-1:-1;;;;;684:31:6;;674:42;;664:70;;730:1;727;720:12;664:70;567:173;;;:::o;745:254::-;813:6;821;874:2;862:9;853:7;849:23;845:32;842:52;;;890:1;887;880:12;842:52;913:29;932:9;913:29;:::i;:::-;903:39;989:2;974:18;;;;961:32;;-1:-1:-1;;;745:254:6:o;1378:328::-;1455:6;1463;1471;1524:2;1512:9;1503:7;1499:23;1495:32;1492:52;;;1540:1;1537;1530:12;1492:52;1563:29;1582:9;1563:29;:::i;:::-;1553:39;;1611:38;1645:2;1634:9;1630:18;1611:38;:::i;:::-;1601:48;;1696:2;1685:9;1681:18;1668:32;1658:42;;1378:328;;;;;:::o;1711:127::-;1772:10;1767:3;1763:20;1760:1;1753:31;1803:4;1800:1;1793:15;1827:4;1824:1;1817:15;1843:719;1886:5;1939:3;1932:4;1924:6;1920:17;1916:27;1906:55;;1957:1;1954;1947:12;1906:55;1993:6;1980:20;2019:18;2056:2;2052;2049:10;2046:36;;;2062:18;;:::i;:::-;2137:2;2131:9;2105:2;2191:13;;-1:-1:-1;;2187:22:6;;;2211:2;2183:31;2179:40;2167:53;;;2235:18;;;2255:22;;;2232:46;2229:72;;;2281:18;;:::i;:::-;2321:10;2317:2;2310:22;2356:2;2348:6;2341:18;2402:3;2395:4;2390:2;2382:6;2378:15;2374:26;2371:35;2368:55;;;2419:1;2416;2409:12;2368:55;2483:2;2476:4;2468:6;2464:17;2457:4;2449:6;2445:17;2432:54;2530:1;2523:4;2518:2;2510:6;2506:15;2502:26;2495:37;2550:6;2541:15;;;;;;1843:719;;;;:::o;2567:611::-;2664:6;2672;2680;2733:2;2721:9;2712:7;2708:23;2704:32;2701:52;;;2749:1;2746;2739:12;2701:52;2789:9;2776:23;2818:18;2859:2;2851:6;2848:14;2845:34;;;2875:1;2872;2865:12;2845:34;2898:50;2940:7;2931:6;2920:9;2916:22;2898:50;:::i;:::-;2888:60;;3001:2;2990:9;2986:18;2973:32;2957:48;;3030:2;3020:8;3017:16;3014:36;;;3046:1;3043;3036:12;3014:36;;3069:52;3113:7;3102:8;3091:9;3087:24;3069:52;:::i;:::-;3059:62;;;3168:2;3157:9;3153:18;3140:32;3130:42;;2567:611;;;;;:::o;3372:186::-;3431:6;3484:2;3472:9;3463:7;3459:23;3455:32;3452:52;;;3500:1;3497;3490:12;3452:52;3523:29;3542:9;3523:29;:::i;:::-;3513:39;3372:186;-1:-1:-1;;;3372:186:6:o;3771:180::-;3830:6;3883:2;3871:9;3862:7;3858:23;3854:32;3851:52;;;3899:1;3896;3889:12;3851:52;-1:-1:-1;3922:23:6;;3771:180;-1:-1:-1;3771:180:6:o;3956:260::-;4024:6;4032;4085:2;4073:9;4064:7;4060:23;4056:32;4053:52;;;4101:1;4098;4091:12;4053:52;4124:29;4143:9;4124:29;:::i;:::-;4114:39;;4172:38;4206:2;4195:9;4191:18;4172:38;:::i;:::-;4162:48;;3956:260;;;;;:::o;4221:380::-;4300:1;4296:12;;;;4343;;;4364:61;;4418:4;4410:6;4406:17;4396:27;;4364:61;4471:2;4463:6;4460:14;4440:18;4437:38;4434:161;;4517:10;4512:3;4508:20;4505:1;4498:31;4552:4;4549:1;4542:15;4580:4;4577:1;4570:15;4434:161;;4221:380;;;:::o;4953:222::-;5018:9;;;5039:10;;;5036:133;;;5091:10;5086:3;5082:20;5079:1;5072:31;5126:4;5123:1;5116:15;5154:4;5151:1;5144:15;8863:545;8965:2;8960:3;8957:11;8954:448;;;9001:1;9026:5;9022:2;9015:17;9071:4;9067:2;9057:19;9141:2;9129:10;9125:19;9122:1;9118:27;9112:4;9108:38;9177:4;9165:10;9162:20;9159:47;;;-1:-1:-1;9200:4:6;9159:47;9255:2;9250:3;9246:12;9243:1;9239:20;9233:4;9229:31;9219:41;;9310:82;9328:2;9321:5;9318:13;9310:82;;;9373:17;;;9354:1;9343:13;9310:82;;;9314:3;;;8863:545;;;:::o;9584:1352::-;9710:3;9704:10;9737:18;9729:6;9726:30;9723:56;;;9759:18;;:::i;:::-;9788:97;9878:6;9838:38;9870:4;9864:11;9838:38;:::i;:::-;9832:4;9788:97;:::i;:::-;9940:4;;10004:2;9993:14;;10021:1;10016:663;;;;10723:1;10740:6;10737:89;;;-1:-1:-1;10792:19:6;;;10786:26;10737:89;-1:-1:-1;;9541:1:6;9537:11;;;9533:24;9529:29;9519:40;9565:1;9561:11;;;9516:57;10839:81;;9986:944;;10016:663;8810:1;8803:14;;;8847:4;8834:18;;-1:-1:-1;;10052:20:6;;;10170:236;10184:7;10181:1;10178:14;10170:236;;;10273:19;;;10267:26;10252:42;;10365:27;;;;10333:1;10321:14;;;;10200:19;;10170:236;;;10174:3;10434:6;10425:7;10422:19;10419:201;;;10495:19;;;10489:26;-1:-1:-1;;10578:1:6;10574:14;;;10590:3;10570:24;10566:37;10562:42;10547:58;10532:74;;10419:201;-1:-1:-1;;;;;10666:1:6;10650:14;;;10646:22;10633:36;;-1:-1:-1;9584:1352:6:o

Swarm Source

ipfs://3874a68f141da9e7322cb8fa8158cb6e06dacbfbfbf6320d1070ee24cf243358

Block Transaction Gas Used Reward
view all blocks produced
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
View All Validatorset

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

Validator Index Block Amount
View All Withdrawals

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

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