Mumbai Testnet

Contract

0x4589aAfd7d3dEEc8418D94F3F90fD7731Bde745b

Overview

MATIC Balance

Polygon PoS Chain LogoPolygon PoS Chain LogoPolygon PoS Chain Logo0 MATIC

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Value
Transfer323236602023-02-23 8:48:49399 days ago1677142129IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323236172023-02-23 8:47:19399 days ago1677142039IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323235712023-02-23 8:45:41399 days ago1677141941IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323235602023-02-23 8:45:17399 days ago1677141917IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323235502023-02-23 8:44:55399 days ago1677141895IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323235232023-02-23 8:43:59399 days ago1677141839IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323235152023-02-23 8:43:41399 days ago1677141821IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323234752023-02-23 8:42:17399 days ago1677141737IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323234622023-02-23 8:41:49399 days ago1677141709IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323234492023-02-23 8:41:21399 days ago1677141681IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323230182023-02-23 8:26:05399 days ago1677140765IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323230122023-02-23 8:25:53399 days ago1677140753IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323229902023-02-23 8:25:05399 days ago1677140705IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323229672023-02-23 8:24:17399 days ago1677140657IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323228902023-02-23 8:21:33399 days ago1677140493IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323228582023-02-23 8:20:25399 days ago1677140425IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323228092023-02-23 8:18:41399 days ago1677140321IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323225282023-02-23 8:08:45399 days ago1677139725IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323224842023-02-23 8:07:11399 days ago1677139631IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323224782023-02-23 8:06:57399 days ago1677139617IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323223812023-02-23 8:03:31399 days ago1677139411IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323223112023-02-23 8:01:03399 days ago1677139263IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323222742023-02-23 7:59:45399 days ago1677139185IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323222572023-02-23 7:59:09399 days ago1677139149IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
Transfer323222012023-02-23 7:57:09399 days ago1677139029IN
0x4589aAfd...31Bde745b
0 MATIC0.000074022.10000002
View all transactions

Parent Txn Hash Block From To Value
View All Internal Transactions
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GamiflyToken

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at mumbai.polygonscan.com on 2022-06-24
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Context.sol


// 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: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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: @openzeppelin/contracts/token/ERC20/IERC20.sol


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

/**
 * @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: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.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: @openzeppelin/contracts/token/ERC20/ERC20.sol


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



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `sender` to `recipient`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

// File: contracts/GamiflyToken.sol


contract GamiflyToken is ERC20, Ownable {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;
    uint8 private _decimals;

    string private _name;
    string private _symbol;


    constructor(string memory tokenname, string memory tokesymbol) ERC20(tokenname, tokesymbol) {
        _name = tokenname;
        _symbol = tokesymbol;
        _decimals = 18;
        _totalSupply = 1000000000 * (10**_decimals);
        _balances[_msgSender()] = _totalSupply;
    }

    function name() public view override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view override returns (string memory) {
        return _symbol;
    }

    function decimals() public view override returns (uint8) {
        return _decimals;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */

    function totalSupply() public view override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */

    function balanceOf(address account) public view 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 override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view 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 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 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 override 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 override 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 override {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
        }
        _balances[to] += amount;

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal override {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal override {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal override {
        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 override {
        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 override {}

    /**
     * @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 override {}
}

Contract ABI

[{"inputs":[{"internalType":"string","name":"tokenname","type":"string"},{"internalType":"string","name":"tokesymbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001d7338038062001d7383398181016040528101906200003791906200035d565b81818160039080519060200190620000519291906200023b565b5080600490805190602001906200006a9291906200023b565b5050506200008d620000816200016d60201b60201c565b6200017560201b60201c565b81600a9080519060200190620000a59291906200023b565b5080600b9080519060200190620000be9291906200023b565b506012600960006101000a81548160ff021916908360ff160217905550600960009054906101000a900460ff16600a620000f9919062000492565b633b9aca006200010a9190620005cf565b60088190555060085460066000620001276200016d60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050506200074d565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000249906200067d565b90600052602060002090601f0160209004810192826200026d5760008555620002b9565b82601f106200028857805160ff1916838001178555620002b9565b82800160010185558215620002b9579182015b82811115620002b85782518255916020019190600101906200029b565b5b509050620002c89190620002cc565b5090565b5b80821115620002e7576000816000905550600101620002cd565b5090565b600062000302620002fc8462000404565b620003d0565b9050828152602081018484840111156200031b57600080fd5b6200032884828562000647565b509392505050565b600082601f8301126200034257600080fd5b815162000354848260208601620002eb565b91505092915050565b600080604083850312156200037157600080fd5b600083015167ffffffffffffffff8111156200038c57600080fd5b6200039a8582860162000330565b925050602083015167ffffffffffffffff811115620003b857600080fd5b620003c68582860162000330565b9150509250929050565b6000604051905081810181811067ffffffffffffffff82111715620003fa57620003f962000711565b5b8060405250919050565b600067ffffffffffffffff82111562000422576200042162000711565b5b601f19601f8301169050602081019050919050565b6000808291508390505b60018511156200048957808604811115620004615762000460620006b3565b5b6001851615620004715780820291505b8081029050620004818562000740565b945062000441565b94509492505050565b60006200049f8262000630565b9150620004ac836200063a565b9250620004db7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004e3565b905092915050565b600082620004f55760019050620005c8565b81620005055760009050620005c8565b81600181146200051e576002811462000529576200055f565b6001915050620005c8565b60ff8411156200053e576200053d620006b3565b5b8360020a915084821115620005585762000557620006b3565b5b50620005c8565b5060208310610133831016604e8410600b8410161715620005995782820a905083811115620005935762000592620006b3565b5b620005c8565b620005a8848484600162000437565b92509050818404811115620005c257620005c1620006b3565b5b81810290505b9392505050565b6000620005dc8262000630565b9150620005e98362000630565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006255762000624620006b3565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b60005b83811015620006675780820151818401526020810190506200064a565b8381111562000677576000848401525b50505050565b600060028204905060018216806200069657607f821691505b60208210811415620006ad57620006ac620006e2565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b611616806200075d6000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061129f565b60405180910390f35b61012760048036038101906101229190610e6e565b61038d565b6040516101349190611284565b60405180910390f35b6101456103b0565b60405161015291906113e1565b60405180910390f35b61017560048036038101906101709190610e1f565b6103ba565b6040516101829190611284565b60405180910390f35b6101936103e9565b6040516101a091906113fc565b60405180910390f35b6101c360048036038101906101be9190610e6e565b610400565b6040516101d09190611284565b60405180910390f35b6101f360048036038101906101ee9190610dba565b610437565b60405161020091906113e1565b60405180910390f35b610211610480565b005b61021b610508565b6040516102289190611269565b60405180910390f35b610239610532565b604051610246919061129f565b60405180910390f35b61026960048036038101906102649190610e6e565b6105c4565b6040516102769190611284565b60405180910390f35b61029960048036038101906102949190610e6e565b61063b565b6040516102a69190611284565b60405180910390f35b6102c960048036038101906102c49190610de3565b61065e565b6040516102d691906113e1565b60405180910390f35b6102f960048036038101906102f49190610dba565b6106e5565b005b6060600a805461030a90611511565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611511565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107dd565b90506103a58185856107e5565b600191505092915050565b6000600854905090565b6000806103c56107dd565b90506103d28582856109b0565b6103dd858585610a3c565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b60008061040b6107dd565b905061042c81858561041d858961065e565b6104279190611433565b6107e5565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104886107dd565b73ffffffffffffffffffffffffffffffffffffffff166104a6610508565b73ffffffffffffffffffffffffffffffffffffffff16146104fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f390611361565b60405180910390fd5b6105066000610cc0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b805461054190611511565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611511565b80156105ba5780601f1061058f576101008083540402835291602001916105ba565b820191906000526020600020905b81548152906001019060200180831161059d57829003601f168201915b5050505050905090565b6000806105cf6107dd565b905060006105dd828661065e565b905083811015610622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610619906113c1565b60405180910390fd5b61062f82868684036107e5565b60019250505092915050565b6000806106466107dd565b9050610653818585610a3c565b600191505092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106ed6107dd565b73ffffffffffffffffffffffffffffffffffffffff1661070b610508565b73ffffffffffffffffffffffffffffffffffffffff1614610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890611361565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906112e1565b60405180910390fd5b6107da81610cc0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c906113a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc90611301565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a391906113e1565b60405180910390a3505050565b60006109bc848461065e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a365781811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611321565b60405180910390fd5b610a3584848484036107e5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b13906112c1565b60405180910390fd5b610b27838383610d86565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590611341565b60405180910390fd5b818103600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c439190611433565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca791906113e1565b60405180910390a3610cba848484610d8b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d9f816115b2565b92915050565b600081359050610db4816115c9565b92915050565b600060208284031215610dcc57600080fd5b6000610dda84828501610d90565b91505092915050565b60008060408385031215610df657600080fd5b6000610e0485828601610d90565b9250506020610e1585828601610d90565b9150509250929050565b600080600060608486031215610e3457600080fd5b6000610e4286828701610d90565b9350506020610e5386828701610d90565b9250506040610e6486828701610da5565b9150509250925092565b60008060408385031215610e8157600080fd5b6000610e8f85828601610d90565b9250506020610ea085828601610da5565b9150509250929050565b610eb381611489565b82525050565b610ec28161149b565b82525050565b6000610ed382611417565b610edd8185611422565b9350610eed8185602086016114de565b610ef6816115a1565b840191505092915050565b6000610f0e602383611422565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f74602683611422565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fda602283611422565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611040601d83611422565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611080602683611422565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110e6602083611422565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611126602583611422565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118c602483611422565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111f2602583611422565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611254816114c7565b82525050565b611263816114d1565b82525050565b600060208201905061127e6000830184610eaa565b92915050565b60006020820190506112996000830184610eb9565b92915050565b600060208201905081810360008301526112b98184610ec8565b905092915050565b600060208201905081810360008301526112da81610f01565b9050919050565b600060208201905081810360008301526112fa81610f67565b9050919050565b6000602082019050818103600083015261131a81610fcd565b9050919050565b6000602082019050818103600083015261133a81611033565b9050919050565b6000602082019050818103600083015261135a81611073565b9050919050565b6000602082019050818103600083015261137a816110d9565b9050919050565b6000602082019050818103600083015261139a81611119565b9050919050565b600060208201905081810360008301526113ba8161117f565b9050919050565b600060208201905081810360008301526113da816111e5565b9050919050565b60006020820190506113f6600083018461124b565b92915050565b6000602082019050611411600083018461125a565b92915050565b600081519050919050565b600082825260208201905092915050565b600061143e826114c7565b9150611449836114c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561147e5761147d611543565b5b828201905092915050565b6000611494826114a7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114fc5780820151818401526020810190506114e1565b8381111561150b576000848401525b50505050565b6000600282049050600182168061152957607f821691505b6020821081141561153d5761153c611572565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6115bb81611489565b81146115c657600080fd5b50565b6115d2816114c7565b81146115dd57600080fd5b5056fea2646970667358221220d4737529e5b04630190519fb502cb7a863c5a56c5195ccb9d48d8e973e04cb6364736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47616d69666c7920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d460000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061129f565b60405180910390f35b61012760048036038101906101229190610e6e565b61038d565b6040516101349190611284565b60405180910390f35b6101456103b0565b60405161015291906113e1565b60405180910390f35b61017560048036038101906101709190610e1f565b6103ba565b6040516101829190611284565b60405180910390f35b6101936103e9565b6040516101a091906113fc565b60405180910390f35b6101c360048036038101906101be9190610e6e565b610400565b6040516101d09190611284565b60405180910390f35b6101f360048036038101906101ee9190610dba565b610437565b60405161020091906113e1565b60405180910390f35b610211610480565b005b61021b610508565b6040516102289190611269565b60405180910390f35b610239610532565b604051610246919061129f565b60405180910390f35b61026960048036038101906102649190610e6e565b6105c4565b6040516102769190611284565b60405180910390f35b61029960048036038101906102949190610e6e565b61063b565b6040516102a69190611284565b60405180910390f35b6102c960048036038101906102c49190610de3565b61065e565b6040516102d691906113e1565b60405180910390f35b6102f960048036038101906102f49190610dba565b6106e5565b005b6060600a805461030a90611511565b80601f016020809104026020016040519081016040528092919081815260200182805461033690611511565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b6000806103986107dd565b90506103a58185856107e5565b600191505092915050565b6000600854905090565b6000806103c56107dd565b90506103d28582856109b0565b6103dd858585610a3c565b60019150509392505050565b6000600960009054906101000a900460ff16905090565b60008061040b6107dd565b905061042c81858561041d858961065e565b6104279190611433565b6107e5565b600191505092915050565b6000600660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104886107dd565b73ffffffffffffffffffffffffffffffffffffffff166104a6610508565b73ffffffffffffffffffffffffffffffffffffffff16146104fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104f390611361565b60405180910390fd5b6105066000610cc0565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600b805461054190611511565b80601f016020809104026020016040519081016040528092919081815260200182805461056d90611511565b80156105ba5780601f1061058f576101008083540402835291602001916105ba565b820191906000526020600020905b81548152906001019060200180831161059d57829003601f168201915b5050505050905090565b6000806105cf6107dd565b905060006105dd828661065e565b905083811015610622576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610619906113c1565b60405180910390fd5b61062f82868684036107e5565b60019250505092915050565b6000806106466107dd565b9050610653818585610a3c565b600191505092915050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6106ed6107dd565b73ffffffffffffffffffffffffffffffffffffffff1661070b610508565b73ffffffffffffffffffffffffffffffffffffffff1614610761576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161075890611361565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906112e1565b60405180910390fd5b6107da81610cc0565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610855576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084c906113a1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156108c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108bc90611301565b60405180910390fd5b80600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109a391906113e1565b60405180910390a3505050565b60006109bc848461065e565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a365781811015610a28576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a1f90611321565b60405180910390fd5b610a3584848484036107e5565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa390611381565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b13906112c1565b60405180910390fd5b610b27838383610d86565b6000600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610bae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba590611341565b60405180910390fd5b818103600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610c439190611433565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610ca791906113e1565b60405180910390a3610cba848484610d8b565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610d9f816115b2565b92915050565b600081359050610db4816115c9565b92915050565b600060208284031215610dcc57600080fd5b6000610dda84828501610d90565b91505092915050565b60008060408385031215610df657600080fd5b6000610e0485828601610d90565b9250506020610e1585828601610d90565b9150509250929050565b600080600060608486031215610e3457600080fd5b6000610e4286828701610d90565b9350506020610e5386828701610d90565b9250506040610e6486828701610da5565b9150509250925092565b60008060408385031215610e8157600080fd5b6000610e8f85828601610d90565b9250506020610ea085828601610da5565b9150509250929050565b610eb381611489565b82525050565b610ec28161149b565b82525050565b6000610ed382611417565b610edd8185611422565b9350610eed8185602086016114de565b610ef6816115a1565b840191505092915050565b6000610f0e602383611422565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f74602683611422565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610fda602283611422565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611040601d83611422565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611080602683611422565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006110e6602083611422565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611126602583611422565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061118c602483611422565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006111f2602583611422565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b611254816114c7565b82525050565b611263816114d1565b82525050565b600060208201905061127e6000830184610eaa565b92915050565b60006020820190506112996000830184610eb9565b92915050565b600060208201905081810360008301526112b98184610ec8565b905092915050565b600060208201905081810360008301526112da81610f01565b9050919050565b600060208201905081810360008301526112fa81610f67565b9050919050565b6000602082019050818103600083015261131a81610fcd565b9050919050565b6000602082019050818103600083015261133a81611033565b9050919050565b6000602082019050818103600083015261135a81611073565b9050919050565b6000602082019050818103600083015261137a816110d9565b9050919050565b6000602082019050818103600083015261139a81611119565b9050919050565b600060208201905081810360008301526113ba8161117f565b9050919050565b600060208201905081810360008301526113da816111e5565b9050919050565b60006020820190506113f6600083018461124b565b92915050565b6000602082019050611411600083018461125a565b92915050565b600081519050919050565b600082825260208201905092915050565b600061143e826114c7565b9150611449836114c7565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561147e5761147d611543565b5b828201905092915050565b6000611494826114a7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156114fc5780820151818401526020810190506114e1565b8381111561150b576000848401525b50505050565b6000600282049050600182168061152957607f821691505b6020821081141561153d5761153c611572565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6115bb81611489565b81146115c657600080fd5b50565b6115d2816114c7565b81146115dd57600080fd5b5056fea2646970667358221220d4737529e5b04630190519fb502cb7a863c5a56c5195ccb9d48d8e973e04cb6364736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000000d47616d69666c7920546f6b656e000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003474d460000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : tokenname (string): Gamifly Token
Arg [1] : tokesymbol (string): GMF

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 000000000000000000000000000000000000000000000000000000000000000d
Arg [3] : 47616d69666c7920546f6b656e00000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [5] : 474d460000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

19942:10698:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20541:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22216:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21015:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20856:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23685:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21180:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2612:103;;;:::i;:::-;;1961:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20752:96;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24427:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21505:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21753:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2870:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20541:92;20587:13;20620:5;20613:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20541:92;:::o;22216:193::-;22291:4;22308:13;22324:12;:10;:12::i;:::-;22308:28;;22347:32;22356:5;22363:7;22372:6;22347:8;:32::i;:::-;22397:4;22390:11;;;22216:193;;;;:::o;21015:100::-;21068:7;21095:12;;21088:19;;21015:100;:::o;22989:287::-;23112:4;23129:15;23147:12;:10;:12::i;:::-;23129:30;;23170:38;23186:4;23192:7;23201:6;23170:15;:38::i;:::-;23219:27;23229:4;23235:2;23239:6;23219:9;:27::i;:::-;23264:4;23257:11;;;22989:287;;;;;:::o;20856:92::-;20906:5;20931:9;;;;;;;;;;;20924:16;;20856:92;:::o;23685:239::-;23774:4;23791:13;23807:12;:10;:12::i;:::-;23791:28;;23830:64;23839:5;23846:7;23883:10;23855:25;23865:5;23872:7;23855:9;:25::i;:::-;:38;;;;:::i;:::-;23830:8;:64::i;:::-;23912:4;23905:11;;;23685:239;;;;:::o;21180:119::-;21246:7;21273:9;:18;21283:7;21273:18;;;;;;;;;;;;;;;;21266:25;;21180:119;;;:::o;2612:103::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2677:30:::1;2704:1;2677:18;:30::i;:::-;2612:103::o:0;1961:87::-;2007:7;2034:6;;;;;;;;;;;2027:13;;1961:87;:::o;20752:96::-;20800:13;20833:7;20826:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20752:96;:::o;24427:437::-;24521:4;24538:13;24554:12;:10;:12::i;:::-;24538:28;;24577:24;24604:25;24614:5;24621:7;24604:9;:25::i;:::-;24577:52;;24668:15;24648:16;:35;;24640:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;24761:60;24770:5;24777:7;24805:15;24786:16;:34;24761:8;:60::i;:::-;24852:4;24845:11;;;;24427:437;;;;:::o;21505:185::-;21576:4;21593:13;21609:12;:10;:12::i;:::-;21593:28;;21632;21642:5;21649:2;21653:6;21632:9;:28::i;:::-;21678:4;21671:11;;;21505:185;;;;:::o;21753:143::-;21834:7;21861:11;:18;21873:5;21861:18;;;;;;;;;;;;;;;:27;21880:7;21861:27;;;;;;;;;;;;;;;;21854:34;;21753:143;;;;:::o;2870:201::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2979:1:::1;2959:22;;:8;:22;;;;2951:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3035:28;3054:8;3035:18;:28::i;:::-;2870:201:::0;:::o;712:98::-;765:7;792:10;785:17;;712:98;:::o;28056:381::-;28210:1;28193:19;;:5;:19;;;;28185:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28291:1;28272:21;;:7;:21;;;;28264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28375:6;28345:11;:18;28357:5;28345:18;;;;;;;;;;;;;;;:27;28364:7;28345:27;;;;;;;;;;;;;;;:36;;;;28413:7;28397:32;;28406:5;28397:32;;;28422:6;28397:32;;;;;;:::i;:::-;;;;;;;;28056:381;;;:::o;28728:454::-;28864:24;28891:25;28901:5;28908:7;28891:9;:25::i;:::-;28864:52;;28951:17;28931:16;:37;28927:248;;29013:6;28993:16;:26;;28985:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;29097:51;29106:5;29113:7;29141:6;29122:16;:25;29097:8;:51::i;:::-;28927:248;28728:454;;;;:::o;25334:672::-;25482:1;25466:18;;:4;:18;;;;25458:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25559:1;25545:16;;:2;:16;;;;25537:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25614:38;25635:4;25641:2;25645:6;25614:20;:38::i;:::-;25665:19;25687:9;:15;25697:4;25687:15;;;;;;;;;;;;;;;;25665:37;;25736:6;25721:11;:21;;25713:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;25853:6;25839:11;:20;25821:9;:15;25831:4;25821:15;;;;;;;;;;;;;;;:38;;;;25898:6;25881:9;:13;25891:2;25881:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;25937:2;25922:26;;25931:4;25922:26;;;25941:6;25922:26;;;;;;:::i;:::-;;;;;;;;25961:37;25981:4;25987:2;25991:6;25961:19;:37::i;:::-;25334:672;;;;:::o;3231:191::-;3305:16;3324:6;;;;;;;;;;;3305:25;;3350:8;3341:6;;:17;;;;;;;;;;;;;;;;;;3405:8;3374:40;;3395:8;3374:40;;;;;;;;;;;;3231:191;;:::o;29782:126::-;;;;:::o;30512:125::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:327::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:31;3935:1;3930:3;3926:11;3919:52;3997:2;3992:3;3988:12;3981:19;;3825:181;;;:::o;4012:370::-;;4175:67;4239:2;4234:3;4175:67;:::i;:::-;4168:74;;4272:34;4268:1;4263:3;4259:11;4252:55;4338:8;4333:2;4328:3;4324:12;4317:30;4373:2;4368:3;4364:12;4357:19;;4158:224;;;:::o;4388:330::-;;4551:67;4615:2;4610:3;4551:67;:::i;:::-;4544:74;;4648:34;4644:1;4639:3;4635:11;4628:55;4709:2;4704:3;4700:12;4693:19;;4534:184;;;:::o;4724:369::-;;4887:67;4951:2;4946:3;4887:67;:::i;:::-;4880:74;;4984:34;4980:1;4975:3;4971:11;4964:55;5050:7;5045:2;5040:3;5036:12;5029:29;5084:2;5079:3;5075:12;5068:19;;4870:223;;;:::o;5099:368::-;;5262:67;5326:2;5321:3;5262:67;:::i;:::-;5255:74;;5359:34;5355:1;5350:3;5346:11;5339:55;5425:6;5420:2;5415:3;5411:12;5404:28;5458:2;5453:3;5449:12;5442:19;;5245:222;;;:::o;5473:369::-;;5636:67;5700:2;5695:3;5636:67;:::i;:::-;5629:74;;5733:34;5729:1;5724:3;5720:11;5713:55;5799:7;5794:2;5789:3;5785:12;5778:29;5833:2;5828:3;5824:12;5817:19;;5619:223;;;:::o;5848:118::-;5935:24;5953:5;5935:24;:::i;:::-;5930:3;5923:37;5913:53;;:::o;5972:112::-;6055:22;6071:5;6055:22;:::i;:::-;6050:3;6043:35;6033:51;;:::o;6090:222::-;;6221:2;6210:9;6206:18;6198:26;;6234:71;6302:1;6291:9;6287:17;6278:6;6234:71;:::i;:::-;6188:124;;;;:::o;6318:210::-;;6443:2;6432:9;6428:18;6420:26;;6456:65;6518:1;6507:9;6503:17;6494:6;6456:65;:::i;:::-;6410:118;;;;:::o;6534:313::-;;6685:2;6674:9;6670:18;6662:26;;6734:9;6728:4;6724:20;6720:1;6709:9;6705:17;6698:47;6762:78;6835:4;6826:6;6762:78;:::i;:::-;6754:86;;6652:195;;;;:::o;6853:419::-;;7057:2;7046:9;7042:18;7034:26;;7106:9;7100:4;7096:20;7092:1;7081:9;7077:17;7070:47;7134:131;7260:4;7134:131;:::i;:::-;7126:139;;7024:248;;;:::o;7278:419::-;;7482:2;7471:9;7467:18;7459:26;;7531:9;7525:4;7521:20;7517:1;7506:9;7502:17;7495:47;7559:131;7685:4;7559:131;:::i;:::-;7551:139;;7449:248;;;:::o;7703:419::-;;7907:2;7896:9;7892:18;7884:26;;7956:9;7950:4;7946:20;7942:1;7931:9;7927:17;7920:47;7984:131;8110:4;7984:131;:::i;:::-;7976:139;;7874:248;;;:::o;8128:419::-;;8332:2;8321:9;8317:18;8309:26;;8381:9;8375:4;8371:20;8367:1;8356:9;8352:17;8345:47;8409:131;8535:4;8409:131;:::i;:::-;8401:139;;8299:248;;;:::o;8553:419::-;;8757:2;8746:9;8742:18;8734:26;;8806:9;8800:4;8796:20;8792:1;8781:9;8777:17;8770:47;8834:131;8960:4;8834:131;:::i;:::-;8826:139;;8724:248;;;:::o;8978:419::-;;9182:2;9171:9;9167:18;9159:26;;9231:9;9225:4;9221:20;9217:1;9206:9;9202:17;9195:47;9259:131;9385:4;9259:131;:::i;:::-;9251:139;;9149:248;;;:::o;9403:419::-;;9607:2;9596:9;9592:18;9584:26;;9656:9;9650:4;9646:20;9642:1;9631:9;9627:17;9620:47;9684:131;9810:4;9684:131;:::i;:::-;9676:139;;9574:248;;;:::o;9828:419::-;;10032:2;10021:9;10017:18;10009:26;;10081:9;10075:4;10071:20;10067:1;10056:9;10052:17;10045:47;10109:131;10235:4;10109:131;:::i;:::-;10101:139;;9999:248;;;:::o;10253:419::-;;10457:2;10446:9;10442:18;10434:26;;10506:9;10500:4;10496:20;10492:1;10481:9;10477:17;10470:47;10534:131;10660:4;10534:131;:::i;:::-;10526:139;;10424:248;;;:::o;10678:222::-;;10809:2;10798:9;10794:18;10786:26;;10822:71;10890:1;10879:9;10875:17;10866:6;10822:71;:::i;:::-;10776:124;;;;:::o;10906:214::-;;11033:2;11022:9;11018:18;11010:26;;11046:67;11110:1;11099:9;11095:17;11086:6;11046:67;:::i;:::-;11000:120;;;;:::o;11126:99::-;;11212:5;11206:12;11196:22;;11185:40;;;:::o;11231:169::-;;11349:6;11344:3;11337:19;11389:4;11384:3;11380:14;11365:29;;11327:73;;;;:::o;11406:305::-;;11465:20;11483:1;11465:20;:::i;:::-;11460:25;;11499:20;11517:1;11499:20;:::i;:::-;11494:25;;11653:1;11585:66;11581:74;11578:1;11575:81;11572:2;;;11659:18;;:::i;:::-;11572:2;11703:1;11700;11696:9;11689:16;;11450:261;;;;:::o;11717:96::-;;11783:24;11801:5;11783:24;:::i;:::-;11772:35;;11762:51;;;:::o;11819:90::-;;11896:5;11889:13;11882:21;11871:32;;11861:48;;;:::o;11915:126::-;;11992:42;11985:5;11981:54;11970:65;;11960:81;;;:::o;12047:77::-;;12113:5;12102:16;;12092:32;;;:::o;12130:86::-;;12205:4;12198:5;12194:16;12183:27;;12173:43;;;:::o;12222:307::-;12290:1;12300:113;12314:6;12311:1;12308:13;12300:113;;;12399:1;12394:3;12390:11;12384:18;12380:1;12375:3;12371:11;12364:39;12336:2;12333:1;12329:10;12324:15;;12300:113;;;12431:6;12428:1;12425:13;12422:2;;;12511:1;12502:6;12497:3;12493:16;12486:27;12422:2;12271:258;;;;:::o;12535:320::-;;12616:1;12610:4;12606:12;12596:22;;12663:1;12657:4;12653:12;12684:18;12674:2;;12740:4;12732:6;12728:17;12718:27;;12674:2;12802;12794:6;12791:14;12771:18;12768:38;12765:2;;;12821:18;;:::i;:::-;12765:2;12586:269;;;;:::o;12861:180::-;12909:77;12906:1;12899:88;13006:4;13003:1;12996:15;13030:4;13027:1;13020:15;13047:180;13095:77;13092:1;13085:88;13192:4;13189:1;13182:15;13216:4;13213:1;13206:15;13233:102;;13325:2;13321:7;13316:2;13309:5;13305:14;13301:28;13291:38;;13281:54;;;:::o;13341:122::-;13414:24;13432:5;13414:24;:::i;:::-;13407:5;13404:35;13394:2;;13453:1;13450;13443:12;13394:2;13384:79;:::o;13469:122::-;13542:24;13560:5;13542:24;:::i;:::-;13535:5;13532:35;13522:2;;13581:1;13578;13571:12;13522:2;13512:79;:::o

Swarm Source

ipfs://d4737529e5b04630190519fb502cb7a863c5a56c5195ccb9d48d8e973e04cb63

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

Txn Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.