ETH Price: $2,309.36 (-0.28%)

Contract

0x76becAE16f5cEb7ff63B8ECFa2fEd6117EFb7cd7
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve178827842023-08-10 6:44:23404 days ago1691649863IN
0x76becAE1...17EFb7cd7
0 ETH0.0006215713.2569383
Transfer178827802023-08-10 6:43:35404 days ago1691649815IN
0x76becAE1...17EFb7cd7
0 ETH0.0009924518.90525971
Approve178827582023-08-10 6:38:59404 days ago1691649539IN
0x76becAE1...17EFb7cd7
0 ETH0.0007022814.88296262
Approve178827562023-08-10 6:38:35404 days ago1691649515IN
0x76becAE1...17EFb7cd7
0 ETH0.0006099713.01937362
Approve178827542023-08-10 6:38:11404 days ago1691649491IN
0x76becAE1...17EFb7cd7
0 ETH0.0007550216.00076051
Approve178827422023-08-10 6:35:47404 days ago1691649347IN
0x76becAE1...17EFb7cd7
0 ETH0.0007040214.91999242
Approve178827422023-08-10 6:35:47404 days ago1691649347IN
0x76becAE1...17EFb7cd7
0 ETH0.000798416.91999242
Approve178827402023-08-10 6:35:23404 days ago1691649323IN
0x76becAE1...17EFb7cd7
0 ETH0.0007789616.50799795
Approve178827392023-08-10 6:35:11404 days ago1691649311IN
0x76becAE1...17EFb7cd7
0 ETH0.0006089912.99853441
Approve178827372023-08-10 6:34:47404 days ago1691649287IN
0x76becAE1...17EFb7cd7
0 ETH0.0007839916.61465122
Approve178827292023-08-10 6:33:11404 days ago1691649191IN
0x76becAE1...17EFb7cd7
0 ETH0.0007522415.94178225
Approve178827292023-08-10 6:33:11404 days ago1691649191IN
0x76becAE1...17EFb7cd7
0 ETH0.0008879118.93729007
Approve178827232023-08-10 6:31:59404 days ago1691649119IN
0x76becAE1...17EFb7cd7
0 ETH0.0008063117.08758806
Approve178827212023-08-10 6:31:35404 days ago1691649095IN
0x76becAE1...17EFb7cd7
0 ETH0.0007587316.07923231
Approve178827202023-08-10 6:31:23404 days ago1691649083IN
0x76becAE1...17EFb7cd7
0 ETH0.0008162417.29818875
Approve178827162023-08-10 6:30:35404 days ago1691649035IN
0x76becAE1...17EFb7cd7
0 ETH0.0006973314.87263775
0x60806040178826862023-08-10 6:24:23404 days ago1691648663IN
 Create: SlotsBot
0 ETH0.018037214.08477394

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
SlotsBot

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-08-10
*/

// https://twitter.com/SlotsBotETH
pragma solidity ^0.8.0;
/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol



pragma solidity ^0.8.0;


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

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

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

// File: @openzeppelin/contracts/utils/Context.sol



pragma solidity ^0.8.0;


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

    function _msgData() internal view virtual returns (bytes calldata) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

// File: @openzeppelin/contracts/token/ERC20/ERC20.sol



pragma solidity ^0.8.0;



contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;
    uint256 private _decimals;
    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The defaut 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_,uint256 initialBalance_,uint256 decimals_,address tokenOwner) {
        _name = name_;
        _symbol = symbol_;
        _totalSupply = initialBalance_* 10**decimals_;
        _balances[tokenOwner] = _totalSupply;
        _decimals = decimals_;
        emit Transfer(address(0), tokenOwner, _totalSupply);
    }

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), 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}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        _approve(sender, _msgSender(), currentAllowance - 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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][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) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        _approve(_msgSender(), spender, currentAllowance - subtractedValue);

        return true;
    }


    function _transfer(address sender, address recipient, uint256 amount) internal virtual {
        require(sender != address(0), "ERC20: transfer from the zero address");
        require(recipient != address(0), "ERC20: transfer to the zero address");


        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }



    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);
    }

}





pragma solidity ^0.8.0;




contract SlotsBot is ERC20 {
    constructor(
       string memory name_,
        string memory symbol_,
        uint256 decimals_,
        uint256 initialBalance_,
        address tokenOwner_,
        address payable feeReceiver_
    ) payable ERC20(name_, symbol_,initialBalance_,decimals_,tokenOwner_) {
        payable(feeReceiver_).transfer(msg.value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"address","name":"tokenOwner_","type":"address"},{"internalType":"address payable","name":"feeReceiver_","type":"address"}],"stateMutability":"payable","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":"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":"uint256","name":"","type":"uint256"}],"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":"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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

608060405260405162001dcd38038062001dcd8339818101604052810190620000299190620003fb565b858584868584600490816200003f919062000716565b50836005908162000051919062000716565b5081600a62000061919062000980565b836200006e9190620009d1565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60025460405162000122919062000a2d565b60405180910390a350505050508073ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f1935050505015801562000176573d6000803e3d6000fd5b5050505050505062000a4a565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620001ec82620001a1565b810181811067ffffffffffffffff821117156200020e576200020d620001b2565b5b80604052505050565b60006200022362000183565b9050620002318282620001e1565b919050565b600067ffffffffffffffff821115620002545762000253620001b2565b5b6200025f82620001a1565b9050602081019050919050565b60005b838110156200028c5780820151818401526020810190506200026f565b60008484015250505050565b6000620002af620002a98462000236565b62000217565b905082815260208101848484011115620002ce57620002cd6200019c565b5b620002db8482856200026c565b509392505050565b600082601f830112620002fb57620002fa62000197565b5b81516200030d84826020860162000298565b91505092915050565b6000819050919050565b6200032b8162000316565b81146200033757600080fd5b50565b6000815190506200034b8162000320565b92915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200037e8262000351565b9050919050565b620003908162000371565b81146200039c57600080fd5b50565b600081519050620003b08162000385565b92915050565b6000620003c38262000351565b9050919050565b620003d581620003b6565b8114620003e157600080fd5b50565b600081519050620003f581620003ca565b92915050565b60008060008060008060c087890312156200041b576200041a6200018d565b5b600087015167ffffffffffffffff8111156200043c576200043b62000192565b5b6200044a89828a01620002e3565b965050602087015167ffffffffffffffff8111156200046e576200046d62000192565b5b6200047c89828a01620002e3565b95505060406200048f89828a016200033a565b9450506060620004a289828a016200033a565b9350506080620004b589828a016200039f565b92505060a0620004c889828a01620003e4565b9150509295509295509295565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200052857607f821691505b6020821081036200053e576200053d620004e0565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005a87fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000569565b620005b4868362000569565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620005f7620005f1620005eb8462000316565b620005cc565b62000316565b9050919050565b6000819050919050565b6200061383620005d6565b6200062b6200062282620005fe565b84845462000576565b825550505050565b600090565b6200064262000633565b6200064f81848462000608565b505050565b5b8181101562000677576200066b60008262000638565b60018101905062000655565b5050565b601f821115620006c657620006908162000544565b6200069b8462000559565b81016020851015620006ab578190505b620006c3620006ba8562000559565b83018262000654565b50505b505050565b600082821c905092915050565b6000620006eb60001984600802620006cb565b1980831691505092915050565b6000620007068383620006d8565b9150826002028217905092915050565b6200072182620004d5565b67ffffffffffffffff8111156200073d576200073c620001b2565b5b6200074982546200050f565b620007568282856200067b565b600060209050601f8311600181146200078e576000841562000779578287015190505b620007858582620006f8565b865550620007f5565b601f1984166200079e8662000544565b60005b82811015620007c857848901518255600182019150602085019450602081019050620007a1565b86831015620007e85784890151620007e4601f891682620006d8565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200088b57808604811115620008635762000862620007fd565b5b6001851615620008735780820291505b808102905062000883856200082c565b945062000843565b94509492505050565b600082620008a6576001905062000979565b81620008b6576000905062000979565b8160018114620008cf5760028114620008da5762000910565b600191505062000979565b60ff841115620008ef57620008ee620007fd565b5b8360020a915084821115620009095762000908620007fd565b5b5062000979565b5060208310610133831016604e8410600b84101617156200094a5782820a905083811115620009445762000943620007fd565b5b62000979565b62000959848484600162000839565b92509050818404811115620009735762000972620007fd565b5b81810290505b9392505050565b60006200098d8262000316565b91506200099a8362000316565b9250620009c97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000894565b905092915050565b6000620009de8262000316565b9150620009eb8362000316565b9250828202620009fb8162000316565b9150828204841483151762000a155762000a14620007fd565b5b5092915050565b62000a278162000316565b82525050565b600060208201905062000a44600083018462000a1c565b92915050565b6113738062000a5a6000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c2d565b60405180910390f35b6100e660048036038101906100e19190610ce8565b610308565b6040516100f39190610d43565b60405180910390f35b610104610326565b6040516101119190610d6d565b60405180910390f35b610134600480360381019061012f9190610d88565b610330565b6040516101419190610d43565b60405180910390f35b610152610431565b60405161015f9190610d6d565b60405180910390f35b610182600480360381019061017d9190610ce8565b61043b565b60405161018f9190610d43565b60405180910390f35b6101b260048036038101906101ad9190610ddb565b6104e7565b6040516101bf9190610d6d565b60405180910390f35b6101d061052f565b6040516101dd9190610c2d565b60405180910390f35b61020060048036038101906101fb9190610ce8565b6105c1565b60405161020d9190610d43565b60405180910390f35b610230600480360381019061022b9190610ce8565b6106b5565b60405161023d9190610d43565b60405180910390f35b610260600480360381019061025b9190610e08565b6106d3565b60405161026d9190610d6d565b60405180910390f35b60606004805461028590610e77565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e77565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f1a565b60405180910390fd5b6104258561041461075a565b85846104209190610f69565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f9d565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e77565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e77565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611043565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f69565b610762565b600191505092915050565b60006106c96106c261075a565b848461092b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790611167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091e9190610d6d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906111f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061128b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061131d565b60405180910390fd5b8181610a9b9190610f69565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2b9190610f9d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8f9190610d6d565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bd7578082015181840152602081019050610bbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610bff82610b9d565b610c098185610ba8565b9350610c19818560208601610bb9565b610c2281610be3565b840191505092915050565b60006020820190508181036000830152610c478184610bf4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c7f82610c54565b9050919050565b610c8f81610c74565b8114610c9a57600080fd5b50565b600081359050610cac81610c86565b92915050565b6000819050919050565b610cc581610cb2565b8114610cd057600080fd5b50565b600081359050610ce281610cbc565b92915050565b60008060408385031215610cff57610cfe610c4f565b5b6000610d0d85828601610c9d565b9250506020610d1e85828601610cd3565b9150509250929050565b60008115159050919050565b610d3d81610d28565b82525050565b6000602082019050610d586000830184610d34565b92915050565b610d6781610cb2565b82525050565b6000602082019050610d826000830184610d5e565b92915050565b600080600060608486031215610da157610da0610c4f565b5b6000610daf86828701610c9d565b9350506020610dc086828701610c9d565b9250506040610dd186828701610cd3565b9150509250925092565b600060208284031215610df157610df0610c4f565b5b6000610dff84828501610c9d565b91505092915050565b60008060408385031215610e1f57610e1e610c4f565b5b6000610e2d85828601610c9d565b9250506020610e3e85828601610c9d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e8f57607f821691505b602082108103610ea257610ea1610e48565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f04602883610ba8565b9150610f0f82610ea8565b604082019050919050565b60006020820190508181036000830152610f3381610ef7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f7482610cb2565b9150610f7f83610cb2565b9250828203905081811115610f9757610f96610f3a565b5b92915050565b6000610fa882610cb2565b9150610fb383610cb2565b9250828201905080821115610fcb57610fca610f3a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061102d602583610ba8565b915061103882610fd1565b604082019050919050565b6000602082019050818103600083015261105c81611020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110bf602483610ba8565b91506110ca82611063565b604082019050919050565b600060208201905081810360008301526110ee816110b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611151602283610ba8565b915061115c826110f5565b604082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006111e3602583610ba8565b91506111ee82611187565b604082019050919050565b60006020820190508181036000830152611212816111d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611275602383610ba8565b915061128082611219565b604082019050919050565b600060208201905081810360008301526112a481611268565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611307602683610ba8565b9150611312826112ab565b604082019050919050565b60006020820190508181036000830152611336816112fa565b905091905056fea2646970667358221220f0ca0e87f3553b619e961ea5e5f7ab169c6f89d0be1cabc64cc2d27eb2cb45a464736f6c6343000812003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000f42400000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c978990000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c978990000000000000000000000000000000000000000000000000000000000000009536c6f747320426f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453424f5400000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610c2d565b60405180910390f35b6100e660048036038101906100e19190610ce8565b610308565b6040516100f39190610d43565b60405180910390f35b610104610326565b6040516101119190610d6d565b60405180910390f35b610134600480360381019061012f9190610d88565b610330565b6040516101419190610d43565b60405180910390f35b610152610431565b60405161015f9190610d6d565b60405180910390f35b610182600480360381019061017d9190610ce8565b61043b565b60405161018f9190610d43565b60405180910390f35b6101b260048036038101906101ad9190610ddb565b6104e7565b6040516101bf9190610d6d565b60405180910390f35b6101d061052f565b6040516101dd9190610c2d565b60405180910390f35b61020060048036038101906101fb9190610ce8565b6105c1565b60405161020d9190610d43565b60405180910390f35b610230600480360381019061022b9190610ce8565b6106b5565b60405161023d9190610d43565b60405180910390f35b610260600480360381019061025b9190610e08565b6106d3565b60405161026d9190610d6d565b60405180910390f35b60606004805461028590610e77565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190610e77565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092b565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90610f1a565b60405180910390fd5b6104258561041461075a565b85846104209190610f69565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190610f9d565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90610e77565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90610e77565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161068490611043565b60405180910390fd5b6106aa61069861075a565b8585846106a59190610f69565b610762565b600191505092915050565b60006106c96106c261075a565b848461092b565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036107d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c8906110d5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610840576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083790611167565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161091e9190610d6d565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361099a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610991906111f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a009061128b565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a869061131d565b60405180910390fd5b8181610a9b9190610f69565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2b9190610f9d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b8f9190610d6d565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610bd7578082015181840152602081019050610bbc565b60008484015250505050565b6000601f19601f8301169050919050565b6000610bff82610b9d565b610c098185610ba8565b9350610c19818560208601610bb9565b610c2281610be3565b840191505092915050565b60006020820190508181036000830152610c478184610bf4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610c7f82610c54565b9050919050565b610c8f81610c74565b8114610c9a57600080fd5b50565b600081359050610cac81610c86565b92915050565b6000819050919050565b610cc581610cb2565b8114610cd057600080fd5b50565b600081359050610ce281610cbc565b92915050565b60008060408385031215610cff57610cfe610c4f565b5b6000610d0d85828601610c9d565b9250506020610d1e85828601610cd3565b9150509250929050565b60008115159050919050565b610d3d81610d28565b82525050565b6000602082019050610d586000830184610d34565b92915050565b610d6781610cb2565b82525050565b6000602082019050610d826000830184610d5e565b92915050565b600080600060608486031215610da157610da0610c4f565b5b6000610daf86828701610c9d565b9350506020610dc086828701610c9d565b9250506040610dd186828701610cd3565b9150509250925092565b600060208284031215610df157610df0610c4f565b5b6000610dff84828501610c9d565b91505092915050565b60008060408385031215610e1f57610e1e610c4f565b5b6000610e2d85828601610c9d565b9250506020610e3e85828601610c9d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680610e8f57607f821691505b602082108103610ea257610ea1610e48565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000610f04602883610ba8565b9150610f0f82610ea8565b604082019050919050565b60006020820190508181036000830152610f3381610ef7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000610f7482610cb2565b9150610f7f83610cb2565b9250828203905081811115610f9757610f96610f3a565b5b92915050565b6000610fa882610cb2565b9150610fb383610cb2565b9250828201905080821115610fcb57610fca610f3a565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061102d602583610ba8565b915061103882610fd1565b604082019050919050565b6000602082019050818103600083015261105c81611020565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006110bf602483610ba8565b91506110ca82611063565b604082019050919050565b600060208201905081810360008301526110ee816110b2565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611151602283610ba8565b915061115c826110f5565b604082019050919050565b6000602082019050818103600083015261118081611144565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006111e3602583610ba8565b91506111ee82611187565b604082019050919050565b60006020820190508181036000830152611212816111d6565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611275602383610ba8565b915061128082611219565b604082019050919050565b600060208201905081810360008301526112a481611268565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611307602683610ba8565b9150611312826112ab565b604082019050919050565b60006020820190508181036000830152611336816112fa565b905091905056fea2646970667358221220f0ca0e87f3553b619e961ea5e5f7ab169c6f89d0be1cabc64cc2d27eb2cb45a464736f6c63430008120033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000f42400000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c978990000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c978990000000000000000000000000000000000000000000000000000000000000009536c6f747320426f740000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000453424f5400000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Slots Bot
Arg [1] : symbol_ (string): SBOT
Arg [2] : decimals_ (uint256): 18
Arg [3] : initialBalance_ (uint256): 1000000
Arg [4] : tokenOwner_ (address): 0x2bb70d0e3A37374623005c1d6c195BCF24C97899
Arg [5] : feeReceiver_ (address): 0x2bb70d0e3A37374623005c1d6c195BCF24C97899

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [3] : 00000000000000000000000000000000000000000000000000000000000f4240
Arg [4] : 0000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c97899
Arg [5] : 0000000000000000000000002bb70d0e3a37374623005c1d6c195bcf24c97899
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [7] : 536c6f747320426f740000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [9] : 53424f5400000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

10783:376:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5066:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7242:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6195:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7893:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6028:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8724:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6366:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5285:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9442:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6706:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6944:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5066:100;5120:13;5153:5;5146:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5066:100;:::o;7242:169::-;7325:4;7342:39;7351:12;:10;:12::i;:::-;7365:7;7374:6;7342:8;:39::i;:::-;7399:4;7392:11;;7242:169;;;;:::o;6195:108::-;6256:7;6283:12;;6276:19;;6195:108;:::o;7893:422::-;7999:4;8016:36;8026:6;8034:9;8045:6;8016:9;:36::i;:::-;8065:24;8092:11;:19;8104:6;8092:19;;;;;;;;;;;;;;;:33;8112:12;:10;:12::i;:::-;8092:33;;;;;;;;;;;;;;;;8065:60;;8164:6;8144:16;:26;;8136:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8226:57;8235:6;8243:12;:10;:12::i;:::-;8276:6;8257:16;:25;;;;:::i;:::-;8226:8;:57::i;:::-;8303:4;8296:11;;;7893:422;;;;;:::o;6028:102::-;6086:7;6113:9;;6106:16;;6028:102;:::o;8724:215::-;8812:4;8829:80;8838:12;:10;:12::i;:::-;8852:7;8898:10;8861:11;:25;8873:12;:10;:12::i;:::-;8861:25;;;;;;;;;;;;;;;:34;8887:7;8861:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8829:8;:80::i;:::-;8927:4;8920:11;;8724:215;;;;:::o;6366:127::-;6440:7;6467:9;:18;6477:7;6467:18;;;;;;;;;;;;;;;;6460:25;;6366:127;;;:::o;5285:104::-;5341:13;5374:7;5367:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5285:104;:::o;9442:377::-;9535:4;9552:24;9579:11;:25;9591:12;:10;:12::i;:::-;9579:25;;;;;;;;;;;;;;;:34;9605:7;9579:34;;;;;;;;;;;;;;;;9552:61;;9652:15;9632:16;:35;;9624:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9720:67;9729:12;:10;:12::i;:::-;9743:7;9771:15;9752:16;:34;;;;:::i;:::-;9720:8;:67::i;:::-;9807:4;9800:11;;;9442:377;;;;:::o;6706:175::-;6792:4;6809:42;6819:12;:10;:12::i;:::-;6833:9;6844:6;6809:9;:42::i;:::-;6869:4;6862:11;;6706:175;;;;:::o;6944:151::-;7033:7;7060:11;:18;7072:5;7060:18;;;;;;;;;;;;;;;:27;7079:7;7060:27;;;;;;;;;;;;;;;;7053:34;;6944:151;;;;:::o;3554:98::-;3607:7;3634:10;3627:17;;3554:98;:::o;10387:346::-;10506:1;10489:19;;:5;:19;;;10481:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10587:1;10568:21;;:7;:21;;;10560:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10671:6;10641:11;:18;10653:5;10641:18;;;;;;;;;;;;;;;:27;10660:7;10641:27;;;;;;;;;;;;;;;:36;;;;10709:7;10693:32;;10702:5;10693:32;;;10718:6;10693:32;;;;;;:::i;:::-;;;;;;;;10387:346;;;:::o;9829:546::-;9953:1;9935:20;;:6;:20;;;9927:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10037:1;10016:23;;:9;:23;;;10008:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10094:21;10118:9;:17;10128:6;10118:17;;;;;;;;;;;;;;;;10094:41;;10171:6;10154:13;:23;;10146:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10267:6;10251:13;:22;;;;:::i;:::-;10231:9;:17;10241:6;10231:17;;;;;;;;;;;;;;;:42;;;;10308:6;10284:9;:20;10294:9;10284:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10349:9;10332:35;;10341:6;10332:35;;;10360:6;10332:35;;;;;;:::i;:::-;;;;;;;;9916:459;9829:546;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:619::-;3875:6;3883;3891;3940:2;3928:9;3919:7;3915:23;3911:32;3908:119;;;3946:79;;:::i;:::-;3908:119;4066:1;4091:53;4136:7;4127:6;4116:9;4112:22;4091:53;:::i;:::-;4081:63;;4037:117;4193:2;4219:53;4264:7;4255:6;4244:9;4240:22;4219:53;:::i;:::-;4209:63;;4164:118;4321:2;4347:53;4392:7;4383:6;4372:9;4368:22;4347:53;:::i;:::-;4337:63;;4292:118;3798:619;;;;;:::o;4423:329::-;4482:6;4531:2;4519:9;4510:7;4506:23;4502:32;4499:119;;;4537:79;;:::i;:::-;4499:119;4657:1;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4628:117;4423:329;;;;:::o;4758:474::-;4826:6;4834;4883:2;4871:9;4862:7;4858:23;4854:32;4851:119;;;4889:79;;:::i;:::-;4851:119;5009:1;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4980:117;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4758:474;;;;;:::o;5238:180::-;5286:77;5283:1;5276:88;5383:4;5380:1;5373:15;5407:4;5404:1;5397:15;5424:320;5468:6;5505:1;5499:4;5495:12;5485:22;;5552:1;5546:4;5542:12;5573:18;5563:81;;5629:4;5621:6;5617:17;5607:27;;5563:81;5691:2;5683:6;5680:14;5660:18;5657:38;5654:84;;5710:18;;:::i;:::-;5654:84;5475:269;5424:320;;;:::o;5750:227::-;5890:34;5886:1;5878:6;5874:14;5867:58;5959:10;5954:2;5946:6;5942:15;5935:35;5750:227;:::o;5983:366::-;6125:3;6146:67;6210:2;6205:3;6146:67;:::i;:::-;6139:74;;6222:93;6311:3;6222:93;:::i;:::-;6340:2;6335:3;6331:12;6324:19;;5983:366;;;:::o;6355:419::-;6521:4;6559:2;6548:9;6544:18;6536:26;;6608:9;6602:4;6598:20;6594:1;6583:9;6579:17;6572:47;6636:131;6762:4;6636:131;:::i;:::-;6628:139;;6355:419;;;:::o;6780:180::-;6828:77;6825:1;6818:88;6925:4;6922:1;6915:15;6949:4;6946:1;6939:15;6966:194;7006:4;7026:20;7044:1;7026:20;:::i;:::-;7021:25;;7060:20;7078:1;7060:20;:::i;:::-;7055:25;;7104:1;7101;7097:9;7089:17;;7128:1;7122:4;7119:11;7116:37;;;7133:18;;:::i;:::-;7116:37;6966:194;;;;:::o;7166:191::-;7206:3;7225:20;7243:1;7225:20;:::i;:::-;7220:25;;7259:20;7277:1;7259:20;:::i;:::-;7254:25;;7302:1;7299;7295:9;7288:16;;7323:3;7320:1;7317:10;7314:36;;;7330:18;;:::i;:::-;7314:36;7166:191;;;;:::o;7363:224::-;7503:34;7499:1;7491:6;7487:14;7480:58;7572:7;7567:2;7559:6;7555:15;7548:32;7363:224;:::o;7593:366::-;7735:3;7756:67;7820:2;7815:3;7756:67;:::i;:::-;7749:74;;7832:93;7921:3;7832:93;:::i;:::-;7950:2;7945:3;7941:12;7934:19;;7593:366;;;:::o;7965:419::-;8131:4;8169:2;8158:9;8154:18;8146:26;;8218:9;8212:4;8208:20;8204:1;8193:9;8189:17;8182:47;8246:131;8372:4;8246:131;:::i;:::-;8238:139;;7965:419;;;:::o;8390:223::-;8530:34;8526:1;8518:6;8514:14;8507:58;8599:6;8594:2;8586:6;8582:15;8575:31;8390:223;:::o;8619:366::-;8761:3;8782:67;8846:2;8841:3;8782:67;:::i;:::-;8775:74;;8858:93;8947:3;8858:93;:::i;:::-;8976:2;8971:3;8967:12;8960:19;;8619:366;;;:::o;8991:419::-;9157:4;9195:2;9184:9;9180:18;9172:26;;9244:9;9238:4;9234:20;9230:1;9219:9;9215:17;9208:47;9272:131;9398:4;9272:131;:::i;:::-;9264:139;;8991:419;;;:::o;9416:221::-;9556:34;9552:1;9544:6;9540:14;9533:58;9625:4;9620:2;9612:6;9608:15;9601:29;9416:221;:::o;9643:366::-;9785:3;9806:67;9870:2;9865:3;9806:67;:::i;:::-;9799:74;;9882:93;9971:3;9882:93;:::i;:::-;10000:2;9995:3;9991:12;9984:19;;9643:366;;;:::o;10015:419::-;10181:4;10219:2;10208:9;10204:18;10196:26;;10268:9;10262:4;10258:20;10254:1;10243:9;10239:17;10232:47;10296:131;10422:4;10296:131;:::i;:::-;10288:139;;10015:419;;;:::o;10440:224::-;10580:34;10576:1;10568:6;10564:14;10557:58;10649:7;10644:2;10636:6;10632:15;10625:32;10440:224;:::o;10670:366::-;10812:3;10833:67;10897:2;10892:3;10833:67;:::i;:::-;10826:74;;10909:93;10998:3;10909:93;:::i;:::-;11027:2;11022:3;11018:12;11011:19;;10670:366;;;:::o;11042:419::-;11208:4;11246:2;11235:9;11231:18;11223:26;;11295:9;11289:4;11285:20;11281:1;11270:9;11266:17;11259:47;11323:131;11449:4;11323:131;:::i;:::-;11315:139;;11042:419;;;:::o;11467:222::-;11607:34;11603:1;11595:6;11591:14;11584:58;11676:5;11671:2;11663:6;11659:15;11652:30;11467:222;:::o;11695:366::-;11837:3;11858:67;11922:2;11917:3;11858:67;:::i;:::-;11851:74;;11934:93;12023:3;11934:93;:::i;:::-;12052:2;12047:3;12043:12;12036:19;;11695:366;;;:::o;12067:419::-;12233:4;12271:2;12260:9;12256:18;12248:26;;12320:9;12314:4;12310:20;12306:1;12295:9;12291:17;12284:47;12348:131;12474:4;12348:131;:::i;:::-;12340:139;;12067:419;;;:::o;12492:225::-;12632:34;12628:1;12620:6;12616:14;12609:58;12701:8;12696:2;12688:6;12684:15;12677:33;12492:225;:::o;12723:366::-;12865:3;12886:67;12950:2;12945:3;12886:67;:::i;:::-;12879:74;;12962:93;13051:3;12962:93;:::i;:::-;13080:2;13075:3;13071:12;13064:19;;12723:366;;;:::o;13095:419::-;13261:4;13299:2;13288:9;13284:18;13276:26;;13348:9;13342:4;13338:20;13334:1;13323:9;13319:17;13312:47;13376:131;13502:4;13376:131;:::i;:::-;13368:139;;13095:419;;;:::o

Swarm Source

ipfs://f0ca0e87f3553b619e961ea5e5f7ab169c6f89d0be1cabc64cc2d27eb2cb45a4

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.