ETH Price: $3,268.52 (+0.79%)
Gas: 1 Gwei

Contract

0xD6c902278E97d4cA4540929A618Dcd5A6173aFE7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer186619652023-11-27 9:03:35244 days ago1701075815IN
0xD6c90227...A6173aFE7
0 ETH0.001304123
Transfer186619632023-11-27 9:03:11244 days ago1701075791IN
0xD6c90227...A6173aFE7
0 ETH0.001360824
Transfer186619592023-11-27 9:02:23244 days ago1701075743IN
0xD6c90227...A6173aFE7
0 ETH0.001587628
Transfer186619552023-11-27 9:01:35244 days ago1701075695IN
0xD6c90227...A6173aFE7
0 ETH0.001587628
Transfer186619482023-11-27 9:00:11244 days ago1701075611IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619422023-11-27 8:58:59244 days ago1701075539IN
0xD6c90227...A6173aFE7
0 ETH0.001474226
Transfer186619382023-11-27 8:58:11244 days ago1701075491IN
0xD6c90227...A6173aFE7
0 ETH0.001417525
Transfer186619352023-11-27 8:57:35244 days ago1701075455IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619312023-11-27 8:56:47244 days ago1701075407IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619272023-11-27 8:55:59244 days ago1701075359IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619222023-11-27 8:54:59244 days ago1701075299IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619182023-11-27 8:54:11244 days ago1701075251IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619132023-11-27 8:53:11244 days ago1701075191IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619102023-11-27 8:52:35244 days ago1701075155IN
0xD6c90227...A6173aFE7
0 ETH0.0012476622
Transfer186619062023-11-27 8:51:47244 days ago1701075107IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186619022023-11-27 8:50:59244 days ago1701075059IN
0xD6c90227...A6173aFE7
0 ETH0.001417825
Transfer186618942023-11-27 8:49:23244 days ago1701074963IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186618902023-11-27 8:48:35244 days ago1701074915IN
0xD6c90227...A6173aFE7
0 ETH0.0012476622
Transfer186618862023-11-27 8:47:47244 days ago1701074867IN
0xD6c90227...A6173aFE7
0 ETH0.001190721
Transfer186618802023-11-27 8:46:35244 days ago1701074795IN
0xD6c90227...A6173aFE7
0 ETH0.0013610824
Transfer186618752023-11-27 8:45:35244 days ago1701074735IN
0xD6c90227...A6173aFE7
0 ETH0.0013043723
Transfer186618702023-11-27 8:44:35244 days ago1701074675IN
0xD6c90227...A6173aFE7
0 ETH0.001417825
Transfer186618642023-11-27 8:43:23244 days ago1701074603IN
0xD6c90227...A6173aFE7
0 ETH0.0015879328
Transfer186618572023-11-27 8:41:59244 days ago1701074519IN
0xD6c90227...A6173aFE7
0 ETH0.001530927
Transfer186618452023-11-27 8:39:35244 days ago1701074375IN
0xD6c90227...A6173aFE7
0 ETH0.001530927
View all transactions

Advanced mode:
Parent Transaction Hash Block From To
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Gobubblefong

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 9 : Gobubblefong.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

import "@openzeppelin/contracts/token/ERC20/ERC20.sol";
import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@hexlantcontract/hc-utils/solidity/Freezable.sol";

contract Gobubblefong is ERC20, ERC20Burnable, Pausable, Ownable, Freezable {
    constructor() ERC20("Gobubblefong", "GOBF") {
        _mint(msg.sender, 100000000 * 10 ** decimals());
    }

    function pause() public onlyOwner {
        _pause();
    }

    function unpause() public onlyOwner {
        _unpause();
    }

    function freeze(address account) public onlyOwner {
        _freeze(account);
    }

    function unfreeze(address account) public onlyOwner {
        _unfreeze(account);
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount)
        internal
        whenNotPaused
        whenNotFrozen(from)
        override
    {
        super._beforeTokenTransfer(from, to, amount);
    }
}

File 2 of 9 : Freezable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.9;

abstract contract Freezable {
    /* solhint-disable custom-errors */
    event Freeze(address indexed account);
    event Unfreeze(address indexed account);

    mapping(address => bool) private _isFrozen;

    modifier whenNotFrozen(address account) {
        require(!_isFrozen[account], "Freezable: frozen");
        _;
    }

    function isFrozen(
        address account
    ) public view virtual returns (bool frozen) {
        return _isFrozen[account];
    }

    function _freeze(address account) internal virtual returns (bool success) {
        require(!isFrozen(account), "Freezable: frozen");
        _isFrozen[account] = true;
        emit Freeze(account);
        success = true;
    }

    function _unfreeze(
        address account
    ) internal virtual returns (bool success) {
        require(isFrozen(account), "Freezable: not be frozen");
        _isFrozen[account] = false;
        emit Unfreeze(account);
        success = true;
    }
}

File 3 of 9 : Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. 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 4 of 9 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 9 : ERC20Burnable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;

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

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

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

File 6 of 9 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 7 of 9 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 8 of 9 : 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 9 of 9 : 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);
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

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":"account","type":"address"}],"name":"Freeze","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"Unfreeze","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"freeze","outputs":[],"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":"address","name":"account","type":"address"}],"name":"isFrozen","outputs":[{"internalType":"bool","name":"frozen","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"unfreeze","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f476f627562626c65666f6e6700000000000000000000000000000000000000008152506040518060400160405280600481526020017f474f424600000000000000000000000000000000000000000000000000000000815250816003908051906020019062000096929190620004ad565b508060049080519060200190620000af929190620004ad565b5050506000600560006101000a81548160ff021916908315150217905550620000ed620000e16200013360201b60201c565b6200013b60201b60201c565b6200012d33620001026200020160201b60201c565b600a620001109190620006f7565b6305f5e10062000121919062000748565b6200020a60201b60201c565b62000a00565b600033905090565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200027d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000274906200080a565b60405180910390fd5b62000291600083836200037860201b60201c565b8060026000828254620002a591906200082c565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200035891906200089a565b60405180910390a362000374600083836200043760201b60201c565b5050565b620003886200043c60201b60201c565b82600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161562000419576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004109062000907565b60405180910390fd5b620004318484846200049160201b620008ff1760201c565b50505050565b505050565b6200044c6200049660201b60201c565b156200048f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004869062000979565b60405180910390fd5b565b505050565b6000600560009054906101000a900460ff16905090565b828054620004bb90620009ca565b90600052602060002090601f016020900481019282620004df57600085556200052b565b82601f10620004fa57805160ff19168380011785556200052b565b828001600101855582156200052b579182015b828111156200052a5782518255916020019190600101906200050d565b5b5090506200053a91906200053e565b5090565b5b80821115620005595760008160009055506001016200053f565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b6001851115620005eb57808604811115620005c357620005c26200055d565b5b6001851615620005d35780820291505b8081029050620005e3856200058c565b9450620005a3565b94509492505050565b600082620006065760019050620006d9565b81620006165760009050620006d9565b81600181146200062f57600281146200063a5762000670565b6001915050620006d9565b60ff8411156200064f576200064e6200055d565b5b8360020a9150848211156200066957620006686200055d565b5b50620006d9565b5060208310610133831016604e8410600b8410161715620006aa5782820a905083811115620006a457620006a36200055d565b5b620006d9565b620006b9848484600162000599565b92509050818404811115620006d357620006d26200055d565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200070482620006e0565b91506200071183620006ea565b9250620007407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620005f4565b905092915050565b60006200075582620006e0565b91506200076283620006e0565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200079e576200079d6200055d565b5b828202905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007f2601f83620007a9565b9150620007ff82620007ba565b602082019050919050565b600060208201905081810360008301526200082581620007e3565b9050919050565b60006200083982620006e0565b91506200084683620006e0565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200087e576200087d6200055d565b5b828201905092915050565b6200089481620006e0565b82525050565b6000602082019050620008b1600083018462000889565b92915050565b7f467265657a61626c653a2066726f7a656e000000000000000000000000000000600082015250565b6000620008ef601183620007a9565b9150620008fc82620008b7565b602082019050919050565b600060208201905081810360008301526200092281620008e0565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600062000961601083620007a9565b91506200096e8262000929565b602082019050919050565b60006020820190508181036000830152620009948162000952565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620009e357607f821691505b60208210811415620009fa57620009f96200099b565b5b50919050565b6120d78062000a106000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b411461032b578063a457c2d714610349578063a9059cbb14610379578063dd62ed3e146103a9578063e5839836146103d9578063f2fde38b1461040957610142565b8063715018a6146102c157806379cc6790146102cb5780638456cb59146102e75780638d1fdf2f146102f15780638da5cb5b1461030d57610142565b8063395093511161010a57806339509351146102015780633f4ba83a1461023157806342966c681461023b57806345c8b1a6146102575780635c975abb1461027357806370a082311461029157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610425565b60405161015c9190611568565b60405180910390f35b61017f600480360381019061017a9190611623565b6104b7565b60405161018c919061167e565b60405180910390f35b61019d6104da565b6040516101aa91906116a8565b60405180910390f35b6101cd60048036038101906101c891906116c3565b6104e4565b6040516101da919061167e565b60405180910390f35b6101eb610513565b6040516101f89190611732565b60405180910390f35b61021b60048036038101906102169190611623565b61051c565b604051610228919061167e565b60405180910390f35b610239610553565b005b6102556004803603810190610250919061174d565b610565565b005b610271600480360381019061026c919061177a565b610579565b005b61027b61058e565b604051610288919061167e565b60405180910390f35b6102ab60048036038101906102a6919061177a565b6105a5565b6040516102b891906116a8565b60405180910390f35b6102c96105ed565b005b6102e560048036038101906102e09190611623565b610601565b005b6102ef610621565b005b61030b6004803603810190610306919061177a565b610633565b005b610315610648565b60405161032291906117b6565b60405180910390f35b610333610672565b6040516103409190611568565b60405180910390f35b610363600480360381019061035e9190611623565b610704565b604051610370919061167e565b60405180910390f35b610393600480360381019061038e9190611623565b61077b565b6040516103a0919061167e565b60405180910390f35b6103c360048036038101906103be91906117d1565b61079e565b6040516103d091906116a8565b60405180910390f35b6103f360048036038101906103ee919061177a565b610825565b604051610400919061167e565b60405180910390f35b610423600480360381019061041e919061177a565b61087b565b005b60606003805461043490611840565b80601f016020809104026020016040519081016040528092919081815260200182805461046090611840565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610904565b90506104cf81858561090c565b600191505092915050565b6000600254905090565b6000806104ef610904565b90506104fc858285610ad7565b610507858585610b63565b60019150509392505050565b60006012905090565b600080610527610904565b9050610548818585610539858961079e565b61054391906118a1565b61090c565b600191505092915050565b61055b610ddb565b610563610e59565b565b610576610570610904565b82610ebc565b50565b610581610ddb565b61058a8161108a565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f5610ddb565b6105ff6000611178565b565b6106138261060d610904565b83610ad7565b61061d8282610ebc565b5050565b610629610ddb565b61063161123e565b565b61063b610ddb565b610644816112a1565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068190611840565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611840565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b60008061070f610904565b9050600061071d828661079e565b905083811015610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990611969565b60405180910390fd5b61076f828686840361090c565b60019250505092915050565b600080610786610904565b9050610793818585610b63565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610883610ddb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea906119fb565b60405180910390fd5b6108fc81611178565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390611a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611b1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aca91906116a8565b60405180910390a3505050565b6000610ae3848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b5d5781811015610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611b8b565b60405180910390fd5b610b5c848484840361090c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90611caf565b60405180910390fd5b610c4e838383611390565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90611d41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc291906116a8565b60405180910390a3610dd5848484611437565b50505050565b610de3610904565b73ffffffffffffffffffffffffffffffffffffffff16610e01610648565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90611dad565b60405180910390fd5b565b610e6161143c565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ea5610904565b604051610eb291906117b6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390611e3f565b60405180910390fd5b610f3882600083611390565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590611ed1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107191906116a8565b60405180910390a361108583600084611437565b505050565b600061109582610825565b6110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611f3d565b60405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee60405160405180910390a260019050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611246611485565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861128a610904565b60405161129791906117b6565b60405180910390a1565b60006112ac82610825565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611fa9565b60405180910390fd5b6001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304960405160405180910390a260019050919050565b611398611485565b82600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90611fa9565b60405180910390fd5b6114318484846108ff565b50505050565b505050565b61144461058e565b611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90612015565b60405180910390fd5b565b61148d61058e565b156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612081565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156115095780820151818401526020810190506114ee565b83811115611518576000848401525b50505050565b6000601f19601f8301169050919050565b600061153a826114cf565b61154481856114da565b93506115548185602086016114eb565b61155d8161151e565b840191505092915050565b60006020820190508181036000830152611582818461152f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ba8261158f565b9050919050565b6115ca816115af565b81146115d557600080fd5b50565b6000813590506115e7816115c1565b92915050565b6000819050919050565b611600816115ed565b811461160b57600080fd5b50565b60008135905061161d816115f7565b92915050565b6000806040838503121561163a5761163961158a565b5b6000611648858286016115d8565b92505060206116598582860161160e565b9150509250929050565b60008115159050919050565b61167881611663565b82525050565b6000602082019050611693600083018461166f565b92915050565b6116a2816115ed565b82525050565b60006020820190506116bd6000830184611699565b92915050565b6000806000606084860312156116dc576116db61158a565b5b60006116ea868287016115d8565b93505060206116fb868287016115d8565b925050604061170c8682870161160e565b9150509250925092565b600060ff82169050919050565b61172c81611716565b82525050565b60006020820190506117476000830184611723565b92915050565b6000602082840312156117635761176261158a565b5b60006117718482850161160e565b91505092915050565b6000602082840312156117905761178f61158a565b5b600061179e848285016115d8565b91505092915050565b6117b0816115af565b82525050565b60006020820190506117cb60008301846117a7565b92915050565b600080604083850312156117e8576117e761158a565b5b60006117f6858286016115d8565b9250506020611807858286016115d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061185857607f821691505b6020821081141561186c5761186b611811565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ac826115ed565b91506118b7836115ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118ec576118eb611872565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119536025836114da565b915061195e826118f7565b604082019050919050565b6000602082019050818103600083015261198281611946565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119e56026836114da565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a776024836114da565b9150611a8282611a1b565b604082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b096022836114da565b9150611b1482611aad565b604082019050919050565b60006020820190508181036000830152611b3881611afc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b75601d836114da565b9150611b8082611b3f565b602082019050919050565b60006020820190508181036000830152611ba481611b68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c076025836114da565b9150611c1282611bab565b604082019050919050565b60006020820190508181036000830152611c3681611bfa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c996023836114da565b9150611ca482611c3d565b604082019050919050565b60006020820190508181036000830152611cc881611c8c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d2b6026836114da565b9150611d3682611ccf565b604082019050919050565b60006020820190508181036000830152611d5a81611d1e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d976020836114da565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e296021836114da565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb6022836114da565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f467265657a61626c653a206e6f742062652066726f7a656e0000000000000000600082015250565b6000611f276018836114da565b9150611f3282611ef1565b602082019050919050565b60006020820190508181036000830152611f5681611f1a565b9050919050565b7f467265657a61626c653a2066726f7a656e000000000000000000000000000000600082015250565b6000611f936011836114da565b9150611f9e82611f5d565b602082019050919050565b60006020820190508181036000830152611fc281611f86565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611fff6014836114da565b915061200a82611fc9565b602082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061206b6010836114da565b915061207682612035565b602082019050919050565b6000602082019050818103600083015261209a8161205e565b905091905056fea264697066735822122080fad99d63c7ad29869aa00e9a9e5cb85b6b8c0af5238843ba9f9988cc4726ac64736f6c63430008090033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c8063715018a6116100b857806395d89b411161007c57806395d89b411461032b578063a457c2d714610349578063a9059cbb14610379578063dd62ed3e146103a9578063e5839836146103d9578063f2fde38b1461040957610142565b8063715018a6146102c157806379cc6790146102cb5780638456cb59146102e75780638d1fdf2f146102f15780638da5cb5b1461030d57610142565b8063395093511161010a57806339509351146102015780633f4ba83a1461023157806342966c681461023b57806345c8b1a6146102575780635c975abb1461027357806370a082311461029157610142565b806306fdde0314610147578063095ea7b31461016557806318160ddd1461019557806323b872dd146101b3578063313ce567146101e3575b600080fd5b61014f610425565b60405161015c9190611568565b60405180910390f35b61017f600480360381019061017a9190611623565b6104b7565b60405161018c919061167e565b60405180910390f35b61019d6104da565b6040516101aa91906116a8565b60405180910390f35b6101cd60048036038101906101c891906116c3565b6104e4565b6040516101da919061167e565b60405180910390f35b6101eb610513565b6040516101f89190611732565b60405180910390f35b61021b60048036038101906102169190611623565b61051c565b604051610228919061167e565b60405180910390f35b610239610553565b005b6102556004803603810190610250919061174d565b610565565b005b610271600480360381019061026c919061177a565b610579565b005b61027b61058e565b604051610288919061167e565b60405180910390f35b6102ab60048036038101906102a6919061177a565b6105a5565b6040516102b891906116a8565b60405180910390f35b6102c96105ed565b005b6102e560048036038101906102e09190611623565b610601565b005b6102ef610621565b005b61030b6004803603810190610306919061177a565b610633565b005b610315610648565b60405161032291906117b6565b60405180910390f35b610333610672565b6040516103409190611568565b60405180910390f35b610363600480360381019061035e9190611623565b610704565b604051610370919061167e565b60405180910390f35b610393600480360381019061038e9190611623565b61077b565b6040516103a0919061167e565b60405180910390f35b6103c360048036038101906103be91906117d1565b61079e565b6040516103d091906116a8565b60405180910390f35b6103f360048036038101906103ee919061177a565b610825565b604051610400919061167e565b60405180910390f35b610423600480360381019061041e919061177a565b61087b565b005b60606003805461043490611840565b80601f016020809104026020016040519081016040528092919081815260200182805461046090611840565b80156104ad5780601f10610482576101008083540402835291602001916104ad565b820191906000526020600020905b81548152906001019060200180831161049057829003601f168201915b5050505050905090565b6000806104c2610904565b90506104cf81858561090c565b600191505092915050565b6000600254905090565b6000806104ef610904565b90506104fc858285610ad7565b610507858585610b63565b60019150509392505050565b60006012905090565b600080610527610904565b9050610548818585610539858961079e565b61054391906118a1565b61090c565b600191505092915050565b61055b610ddb565b610563610e59565b565b610576610570610904565b82610ebc565b50565b610581610ddb565b61058a8161108a565b5050565b6000600560009054906101000a900460ff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105f5610ddb565b6105ff6000611178565b565b6106138261060d610904565b83610ad7565b61061d8282610ebc565b5050565b610629610ddb565b61063161123e565b565b61063b610ddb565b610644816112a1565b5050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461068190611840565b80601f01602080910402602001604051908101604052809291908181526020018280546106ad90611840565b80156106fa5780601f106106cf576101008083540402835291602001916106fa565b820191906000526020600020905b8154815290600101906020018083116106dd57829003601f168201915b5050505050905090565b60008061070f610904565b9050600061071d828661079e565b905083811015610762576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075990611969565b60405180910390fd5b61076f828686840361090c565b60019250505092915050565b600080610786610904565b9050610793818585610b63565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b610883610ddb565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ea906119fb565b60405180910390fd5b6108fc81611178565b50565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561097c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097390611a8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611b1f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610aca91906116a8565b60405180910390a3505050565b6000610ae3848461079e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b5d5781811015610b4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4690611b8b565b60405180910390fd5b610b5c848484840361090c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bd3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bca90611c1d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3a90611caf565b60405180910390fd5b610c4e838383611390565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ccb90611d41565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610dc291906116a8565b60405180910390a3610dd5848484611437565b50505050565b610de3610904565b73ffffffffffffffffffffffffffffffffffffffff16610e01610648565b73ffffffffffffffffffffffffffffffffffffffff1614610e57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4e90611dad565b60405180910390fd5b565b610e6161143c565b6000600560006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa610ea5610904565b604051610eb291906117b6565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2390611e3f565b60405180910390fd5b610f3882600083611390565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb590611ed1565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107191906116a8565b60405180910390a361108583600084611437565b505050565b600061109582610825565b6110d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110cb90611f3d565b60405180910390fd5b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167fca5069937e68fd197927055037f59d7c90bf75ac104e6e375539ef480c3ad6ee60405160405180910390a260019050919050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611246611485565b6001600560006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861128a610904565b60405161129791906117b6565b60405180910390a1565b60006112ac82610825565b156112ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e390611fa9565b60405180910390fd5b6001600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167faf85b60d26151edd11443b704d424da6c43d0468f2235ebae3d1904dbc32304960405160405180910390a260019050919050565b611398611485565b82600660008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611426576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161141d90611fa9565b60405180910390fd5b6114318484846108ff565b50505050565b505050565b61144461058e565b611483576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147a90612015565b60405180910390fd5b565b61148d61058e565b156114cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c490612081565b60405180910390fd5b565b600081519050919050565b600082825260208201905092915050565b60005b838110156115095780820151818401526020810190506114ee565b83811115611518576000848401525b50505050565b6000601f19601f8301169050919050565b600061153a826114cf565b61154481856114da565b93506115548185602086016114eb565b61155d8161151e565b840191505092915050565b60006020820190508181036000830152611582818461152f565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006115ba8261158f565b9050919050565b6115ca816115af565b81146115d557600080fd5b50565b6000813590506115e7816115c1565b92915050565b6000819050919050565b611600816115ed565b811461160b57600080fd5b50565b60008135905061161d816115f7565b92915050565b6000806040838503121561163a5761163961158a565b5b6000611648858286016115d8565b92505060206116598582860161160e565b9150509250929050565b60008115159050919050565b61167881611663565b82525050565b6000602082019050611693600083018461166f565b92915050565b6116a2816115ed565b82525050565b60006020820190506116bd6000830184611699565b92915050565b6000806000606084860312156116dc576116db61158a565b5b60006116ea868287016115d8565b93505060206116fb868287016115d8565b925050604061170c8682870161160e565b9150509250925092565b600060ff82169050919050565b61172c81611716565b82525050565b60006020820190506117476000830184611723565b92915050565b6000602082840312156117635761176261158a565b5b60006117718482850161160e565b91505092915050565b6000602082840312156117905761178f61158a565b5b600061179e848285016115d8565b91505092915050565b6117b0816115af565b82525050565b60006020820190506117cb60008301846117a7565b92915050565b600080604083850312156117e8576117e761158a565b5b60006117f6858286016115d8565b9250506020611807858286016115d8565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061185857607f821691505b6020821081141561186c5761186b611811565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118ac826115ed565b91506118b7836115ed565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156118ec576118eb611872565b5b828201905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119536025836114da565b915061195e826118f7565b604082019050919050565b6000602082019050818103600083015261198281611946565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119e56026836114da565b91506119f082611989565b604082019050919050565b60006020820190508181036000830152611a14816119d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a776024836114da565b9150611a8282611a1b565b604082019050919050565b60006020820190508181036000830152611aa681611a6a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b096022836114da565b9150611b1482611aad565b604082019050919050565b60006020820190508181036000830152611b3881611afc565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b75601d836114da565b9150611b8082611b3f565b602082019050919050565b60006020820190508181036000830152611ba481611b68565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c076025836114da565b9150611c1282611bab565b604082019050919050565b60006020820190508181036000830152611c3681611bfa565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611c996023836114da565b9150611ca482611c3d565b604082019050919050565b60006020820190508181036000830152611cc881611c8c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d2b6026836114da565b9150611d3682611ccf565b604082019050919050565b60006020820190508181036000830152611d5a81611d1e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611d976020836114da565b9150611da282611d61565b602082019050919050565b60006020820190508181036000830152611dc681611d8a565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e296021836114da565b9150611e3482611dcd565b604082019050919050565b60006020820190508181036000830152611e5881611e1c565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611ebb6022836114da565b9150611ec682611e5f565b604082019050919050565b60006020820190508181036000830152611eea81611eae565b9050919050565b7f467265657a61626c653a206e6f742062652066726f7a656e0000000000000000600082015250565b6000611f276018836114da565b9150611f3282611ef1565b602082019050919050565b60006020820190508181036000830152611f5681611f1a565b9050919050565b7f467265657a61626c653a2066726f7a656e000000000000000000000000000000600082015250565b6000611f936011836114da565b9150611f9e82611f5d565b602082019050919050565b60006020820190508181036000830152611fc281611f86565b9050919050565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b6000611fff6014836114da565b915061200a82611fc9565b602082019050919050565b6000602082019050818103600083015261202e81611ff2565b9050919050565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b600061206b6010836114da565b915061207682612035565b602082019050919050565b6000602082019050818103600083015261209a8161205e565b905091905056fea264697066735822122080fad99d63c7ad29869aa00e9a9e5cb85b6b8c0af5238843ba9f9988cc4726ac64736f6c63430008090033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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  ]

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.