ETH Price: $2,429.05 (+0.20%)
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176943112023-07-14 21:17:11478 days ago1689369431IN
0xaCa40079...c16ECaFFf
0 ETH0.0003418713.71225378
Approve176733982023-07-11 22:40:59481 days ago1689115259IN
0xaCa40079...c16ECaFFf
0 ETH0.0003971315.96714852
Approve176732942023-07-11 22:19:59481 days ago1689113999IN
0xaCa40079...c16ECaFFf
0 ETH0.0007362415.6968983
Approve176675062023-07-11 2:48:35482 days ago1689043715IN
0xaCa40079...c16ECaFFf
0 ETH0.0007053414.95763537
Approve176660142023-07-10 21:45:47482 days ago1689025547IN
0xaCa40079...c16ECaFFf
0 ETH0.0010709222.68130049
Approve176646122023-07-10 17:02:11483 days ago1689008531IN
0xaCa40079...c16ECaFFf
0 ETH0.002223447.40339859
Approve176645372023-07-10 16:47:11483 days ago1689007631IN
0xaCa40079...c16ECaFFf
0 ETH0.001634934.67008888
Approve176638702023-07-10 14:31:23483 days ago1688999483IN
0xaCa40079...c16ECaFFf
0 ETH0.0017839237.78216864
Approve176615832023-07-10 6:47:35483 days ago1688971655IN
0xaCa40079...c16ECaFFf
0 ETH0.0008910218.87117451
Approve176615452023-07-10 6:39:59483 days ago1688971199IN
0xaCa40079...c16ECaFFf
0 ETH0.0007021414.8897939
Approve176615302023-07-10 6:36:59483 days ago1688971019IN
0xaCa40079...c16ECaFFf
0 ETH0.0007248915.4468918
Approve176613442023-07-10 5:59:47483 days ago1688968787IN
0xaCa40079...c16ECaFFf
0 ETH0.0005954612.69535536
Approve176613032023-07-10 5:51:23483 days ago1688968283IN
0xaCa40079...c16ECaFFf
0 ETH0.0008793818.77267397
Approve176610342023-07-10 4:57:23483 days ago1688965043IN
0xaCa40079...c16ECaFFf
0 ETH0.0007666416.25760525
Approve176610192023-07-10 4:54:23483 days ago1688964863IN
0xaCa40079...c16ECaFFf
0 ETH0.0007442315.76227219
Approve176610172023-07-10 4:53:59483 days ago1688964839IN
0xaCa40079...c16ECaFFf
0 ETH0.0007444715.76743985
Approve176610172023-07-10 4:53:59483 days ago1688964839IN
0xaCa40079...c16ECaFFf
0 ETH0.0007444715.76743985
Approve176610092023-07-10 4:52:23483 days ago1688964743IN
0xaCa40079...c16ECaFFf
0 ETH0.0010746722.76091827
Approve176610062023-07-10 4:51:47483 days ago1688964707IN
0xaCa40079...c16ECaFFf
0 ETH0.0006460913.70115177
Approve176610052023-07-10 4:51:35483 days ago1688964695IN
0xaCa40079...c16ECaFFf
0 ETH0.0007876816.68262656
Approve176609922023-07-10 4:48:59483 days ago1688964539IN
0xaCa40079...c16ECaFFf
0 ETH0.0006557713.96332937
Approve176609902023-07-10 4:48:23483 days ago1688964503IN
0xaCa40079...c16ECaFFf
0 ETH0.0008311617.60344932
Approve176609862023-07-10 4:47:35483 days ago1688964455IN
0xaCa40079...c16ECaFFf
0 ETH0.000665114.08637978
Approve176609862023-07-10 4:47:35483 days ago1688964455IN
0xaCa40079...c16ECaFFf
0 ETH0.0007359215.58637978
Approve176609792023-07-10 4:46:11483 days ago1688964371IN
0xaCa40079...c16ECaFFf
0 ETH0.0007330615.52569062
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
Bozo

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
File 1 of 1 : Bozo.sol
// SPDX-License-Identifier: MIT

pragma solidity >0.4.0 <0.9.0;

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

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

abstract contract Ownable is Context {
    address private _owner;

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


    constructor() {
        _transferOwnership(_msgSender());
    }

    function owner() public view virtual returns (address) {
        return _owner;
    }

    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

library SafeMath {

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

    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

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

    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

interface IERC20 {

    function totalSupply() external view returns (uint256);
    function balanceOf(address account) external view returns (uint256);
    function transfer(address recipient, uint256 amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint256);
    function approve(address spender, uint256 amount) external returns (bool);

    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) external returns (bool);

    event Transfer(address indexed from, address indexed to, uint256 value);
    event Approval(address indexed owner, address indexed spender, uint256 value);
}

interface IERC20Metadata is IERC20 {

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
}

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

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

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

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

    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    function transfer(address recipient, uint256 amount) public virtual override returns (bool) {
        _transfer(_msgSender(), recipient, amount);
        return true;
    }

    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    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");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue);
        return true;
    }

    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        uint256 currentAllowance = _allowances[_msgSender()][spender];
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _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");

        _beforeTokenTransfer(sender, recipient, amount);

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

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

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

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

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

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

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

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

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

    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

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

    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

contract Bozo is Ownable, ERC20 {
    using SafeMath for uint256;

    constructor(uint256 _tokensCount) ERC20("Bozo", "BOZO") {
        _mint(owner(), _tokensCount);
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"_tokensCount","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b5060405162001e1438038062001e1483398181016040528101906200003791906200045f565b6040518060400160405280600481526020017f426f7a6f000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f424f5a4f00000000000000000000000000000000000000000000000000000000815250620000c3620000b76200011f60201b60201c565b6200012760201b60201c565b8160049080519060200190620000db92919062000398565b508060059080519060200190620000f492919062000398565b505050620001186200010b620001eb60201b60201c565b826200021460201b60201c565b5062000651565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000287576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200027e90620004c3565b60405180910390fd5b6200029b600083836200038e60201b60201c565b8060036000828254620002af919062000513565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000307919062000513565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036e9190620004e5565b60405180910390a36200038a600083836200039360201b60201c565b5050565b505050565b505050565b828054620003a6906200057a565b90600052602060002090601f016020900481019282620003ca576000855562000416565b82601f10620003e557805160ff191683800117855562000416565b8280016001018555821562000416579182015b8281111562000415578251825591602001919060010190620003f8565b5b50905062000425919062000429565b5090565b5b80821115620004445760008160009055506001016200042a565b5090565b600081519050620004598162000637565b92915050565b6000602082840312156200047257600080fd5b6000620004828482850162000448565b91505092915050565b60006200049a601f8362000502565b9150620004a7826200060e565b602082019050919050565b620004bd8162000570565b82525050565b60006020820190508181036000830152620004de816200048b565b9050919050565b6000602082019050620004fc6000830184620004b2565b92915050565b600082825260208201905092915050565b6000620005208262000570565b91506200052d8362000570565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005655762000564620005b0565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200059357607f821691505b60208210811415620005aa57620005a9620005df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b620006428162000570565b81146200064e57600080fd5b50565b6117b380620006616000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061119b565b60405180910390f35b61012760048036038101906101229190610f79565b61038d565b6040516101349190611180565b60405180910390f35b6101456103ab565b60405161015291906112dd565b60405180910390f35b61017560048036038101906101709190610f2a565b6103b5565b6040516101829190611180565b60405180910390f35b6101936104ad565b6040516101a091906112f8565b60405180910390f35b6101c360048036038101906101be9190610f79565b6104b6565b6040516101d09190611180565b60405180910390f35b6101f360048036038101906101ee9190610ec5565b610562565b60405161020091906112dd565b60405180910390f35b6102116105ab565b005b61021b610633565b6040516102289190611165565b60405180910390f35b61023961065c565b604051610246919061119b565b60405180910390f35b61026960048036038101906102649190610f79565b6106ee565b6040516102769190611180565b60405180910390f35b61029960048036038101906102949190610f79565b6107d9565b6040516102a69190611180565b60405180910390f35b6102c960048036038101906102c49190610eee565b6107f7565b6040516102d691906112dd565b60405180910390f35b6102f960048036038101906102f49190610ec5565b61087e565b005b60606004805461030a9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061140d565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610976565b848461097e565b6001905092915050565b6000600354905090565b60006103c2848484610b49565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061123d565b60405180910390fd5b6104a185610499610976565b85840361097e565b60019150509392505050565b60006012905090565b60006105586104c3610976565b8484600260006104d1610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610553919061132f565b61097e565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b3610976565b73ffffffffffffffffffffffffffffffffffffffff166105d1610633565b73ffffffffffffffffffffffffffffffffffffffff1614610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e9061125d565b60405180910390fd5b6106316000610dcd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461066b9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546106979061140d565b80156106e45780601f106106b9576101008083540402835291602001916106e4565b820191906000526020600020905b8154815290600101906020018083116106c757829003601f168201915b5050505050905090565b600080600260006106fd610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b1906112bd565b60405180910390fd5b6107ce6107c5610976565b8585840361097e565b600191505092915050565b60006107ed6107e6610976565b8484610b49565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610886610976565b73ffffffffffffffffffffffffffffffffffffffff166108a4610633565b73ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f19061125d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561096a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610961906111dd565b60405180910390fd5b61097381610dcd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061129d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906111fd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3c91906112dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb09061127d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906111bd565b60405180910390fd5b610c34838383610e91565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061121d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d50919061132f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db491906112dd565b60405180910390a3610dc7848484610e96565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eaa8161174f565b92915050565b600081359050610ebf81611766565b92915050565b600060208284031215610ed757600080fd5b6000610ee584828501610e9b565b91505092915050565b60008060408385031215610f0157600080fd5b6000610f0f85828601610e9b565b9250506020610f2085828601610e9b565b9150509250929050565b600080600060608486031215610f3f57600080fd5b6000610f4d86828701610e9b565b9350506020610f5e86828701610e9b565b9250506040610f6f86828701610eb0565b9150509250925092565b60008060408385031215610f8c57600080fd5b6000610f9a85828601610e9b565b9250506020610fab85828601610eb0565b9150509250929050565b610fbe81611385565b82525050565b610fcd81611397565b82525050565b6000610fde82611313565b610fe8818561131e565b9350610ff88185602086016113da565b6110018161149d565b840191505092915050565b600061101960238361131e565b9150611024826114ae565b604082019050919050565b600061103c60268361131e565b9150611047826114fd565b604082019050919050565b600061105f60228361131e565b915061106a8261154c565b604082019050919050565b600061108260268361131e565b915061108d8261159b565b604082019050919050565b60006110a560288361131e565b91506110b0826115ea565b604082019050919050565b60006110c860208361131e565b91506110d382611639565b602082019050919050565b60006110eb60258361131e565b91506110f682611662565b604082019050919050565b600061110e60248361131e565b9150611119826116b1565b604082019050919050565b600061113160258361131e565b915061113c82611700565b604082019050919050565b611150816113c3565b82525050565b61115f816113cd565b82525050565b600060208201905061117a6000830184610fb5565b92915050565b60006020820190506111956000830184610fc4565b92915050565b600060208201905081810360008301526111b58184610fd3565b905092915050565b600060208201905081810360008301526111d68161100c565b9050919050565b600060208201905081810360008301526111f68161102f565b9050919050565b6000602082019050818103600083015261121681611052565b9050919050565b6000602082019050818103600083015261123681611075565b9050919050565b6000602082019050818103600083015261125681611098565b9050919050565b60006020820190508181036000830152611276816110bb565b9050919050565b60006020820190508181036000830152611296816110de565b9050919050565b600060208201905081810360008301526112b681611101565b9050919050565b600060208201905081810360008301526112d681611124565b9050919050565b60006020820190506112f26000830184611147565b92915050565b600060208201905061130d6000830184611156565b92915050565b600081519050919050565b600082825260208201905092915050565b600061133a826113c3565b9150611345836113c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561137a5761137961143f565b5b828201905092915050565b6000611390826113a3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156113f85780820151818401526020810190506113dd565b83811115611407576000848401525b50505050565b6000600282049050600182168061142557607f821691505b602082108114156114395761143861146e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61175881611385565b811461176357600080fd5b50565b61176f816113c3565b811461177a57600080fd5b5056fea264697066735822122040657a04aee6a78125e96bd33c9e99c3f37a16b1ca309e568c05ec8c96594a8864736f6c63430008040033000000000000000000000000000000000000000006765c793fa10079d0000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a457c2d711610066578063a457c2d71461024f578063a9059cbb1461027f578063dd62ed3e146102af578063f2fde38b146102df576100ea565b8063715018a6146102095780638da5cb5b1461021357806395d89b4114610231576100ea565b806323b872dd116100c857806323b872dd1461015b578063313ce5671461018b57806339509351146101a957806370a08231146101d9576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461013d575b600080fd5b6100f76102fb565b604051610104919061119b565b60405180910390f35b61012760048036038101906101229190610f79565b61038d565b6040516101349190611180565b60405180910390f35b6101456103ab565b60405161015291906112dd565b60405180910390f35b61017560048036038101906101709190610f2a565b6103b5565b6040516101829190611180565b60405180910390f35b6101936104ad565b6040516101a091906112f8565b60405180910390f35b6101c360048036038101906101be9190610f79565b6104b6565b6040516101d09190611180565b60405180910390f35b6101f360048036038101906101ee9190610ec5565b610562565b60405161020091906112dd565b60405180910390f35b6102116105ab565b005b61021b610633565b6040516102289190611165565b60405180910390f35b61023961065c565b604051610246919061119b565b60405180910390f35b61026960048036038101906102649190610f79565b6106ee565b6040516102769190611180565b60405180910390f35b61029960048036038101906102949190610f79565b6107d9565b6040516102a69190611180565b60405180910390f35b6102c960048036038101906102c49190610eee565b6107f7565b6040516102d691906112dd565b60405180910390f35b6102f960048036038101906102f49190610ec5565b61087e565b005b60606004805461030a9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546103369061140d565b80156103835780601f1061035857610100808354040283529160200191610383565b820191906000526020600020905b81548152906001019060200180831161036657829003601f168201915b5050505050905090565b60006103a161039a610976565b848461097e565b6001905092915050565b6000600354905090565b60006103c2848484610b49565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061040d610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561048d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104849061123d565b60405180910390fd5b6104a185610499610976565b85840361097e565b60019150509392505050565b60006012905090565b60006105586104c3610976565b8484600260006104d1610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610553919061132f565b61097e565b6001905092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6105b3610976565b73ffffffffffffffffffffffffffffffffffffffff166105d1610633565b73ffffffffffffffffffffffffffffffffffffffff1614610627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061e9061125d565b60405180910390fd5b6106316000610dcd565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461066b9061140d565b80601f01602080910402602001604051908101604052809291908181526020018280546106979061140d565b80156106e45780601f106106b9576101008083540402835291602001916106e4565b820191906000526020600020905b8154815290600101906020018083116106c757829003601f168201915b5050505050905090565b600080600260006106fd610976565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156107ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b1906112bd565b60405180910390fd5b6107ce6107c5610976565b8585840361097e565b600191505092915050565b60006107ed6107e6610976565b8484610b49565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610886610976565b73ffffffffffffffffffffffffffffffffffffffff166108a4610633565b73ffffffffffffffffffffffffffffffffffffffff16146108fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f19061125d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561096a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610961906111dd565b60405180910390fd5b61097381610dcd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156109ee576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e59061129d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a55906111fd565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b3c91906112dd565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb09061127d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c20906111bd565b60405180910390fd5b610c34838383610e91565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb29061121d565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610d50919061132f565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610db491906112dd565b60405180910390a3610dc7848484610e96565b50505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081359050610eaa8161174f565b92915050565b600081359050610ebf81611766565b92915050565b600060208284031215610ed757600080fd5b6000610ee584828501610e9b565b91505092915050565b60008060408385031215610f0157600080fd5b6000610f0f85828601610e9b565b9250506020610f2085828601610e9b565b9150509250929050565b600080600060608486031215610f3f57600080fd5b6000610f4d86828701610e9b565b9350506020610f5e86828701610e9b565b9250506040610f6f86828701610eb0565b9150509250925092565b60008060408385031215610f8c57600080fd5b6000610f9a85828601610e9b565b9250506020610fab85828601610eb0565b9150509250929050565b610fbe81611385565b82525050565b610fcd81611397565b82525050565b6000610fde82611313565b610fe8818561131e565b9350610ff88185602086016113da565b6110018161149d565b840191505092915050565b600061101960238361131e565b9150611024826114ae565b604082019050919050565b600061103c60268361131e565b9150611047826114fd565b604082019050919050565b600061105f60228361131e565b915061106a8261154c565b604082019050919050565b600061108260268361131e565b915061108d8261159b565b604082019050919050565b60006110a560288361131e565b91506110b0826115ea565b604082019050919050565b60006110c860208361131e565b91506110d382611639565b602082019050919050565b60006110eb60258361131e565b91506110f682611662565b604082019050919050565b600061110e60248361131e565b9150611119826116b1565b604082019050919050565b600061113160258361131e565b915061113c82611700565b604082019050919050565b611150816113c3565b82525050565b61115f816113cd565b82525050565b600060208201905061117a6000830184610fb5565b92915050565b60006020820190506111956000830184610fc4565b92915050565b600060208201905081810360008301526111b58184610fd3565b905092915050565b600060208201905081810360008301526111d68161100c565b9050919050565b600060208201905081810360008301526111f68161102f565b9050919050565b6000602082019050818103600083015261121681611052565b9050919050565b6000602082019050818103600083015261123681611075565b9050919050565b6000602082019050818103600083015261125681611098565b9050919050565b60006020820190508181036000830152611276816110bb565b9050919050565b60006020820190508181036000830152611296816110de565b9050919050565b600060208201905081810360008301526112b681611101565b9050919050565b600060208201905081810360008301526112d681611124565b9050919050565b60006020820190506112f26000830184611147565b92915050565b600060208201905061130d6000830184611156565b92915050565b600081519050919050565b600082825260208201905092915050565b600061133a826113c3565b9150611345836113c3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561137a5761137961143f565b5b828201905092915050565b6000611390826113a3565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b838110156113f85780820151818401526020810190506113dd565b83811115611407576000848401525b50505050565b6000600282049050600182168061142557607f821691505b602082108114156114395761143861146e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b61175881611385565b811461176357600080fd5b50565b61176f816113c3565b811461177a57600080fd5b5056fea264697066735822122040657a04aee6a78125e96bd33c9e99c3f37a16b1ca309e568c05ec8c96594a8864736f6c63430008040033

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

000000000000000000000000000000000000000006765c793fa10079d0000000

-----Decoded View---------------
Arg [0] : _tokensCount (uint256): 2000000000000000000000000000

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000006765c793fa10079d0000000


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.