ETH Price: $2,102.69 (+2.62%)

Contract

0x2f4DDe8cCBeb68BC5569f2eDb9bfe76C0cef8856
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

TokenTracker

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve176673422023-07-11 2:15:11976 days ago1689041711IN
0x2f4DDe8c...C0cef8856
0 ETH0.000764116.19105936
Approve176673272023-07-11 2:11:59976 days ago1689041519IN
0x2f4DDe8c...C0cef8856
0 ETH0.0007304315.4973688
Approve176672882023-07-11 2:03:59976 days ago1689041039IN
0x2f4DDe8c...C0cef8856
0 ETH0.0006769714.43290971

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ERC20

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2023-07-11
*/

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 NINTH 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

API
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"initialBalance_","type":"uint256"},{"internalType":"uint256","name":"decimals_","type":"uint256"},{"internalType":"address","name":"tokenOwner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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"}]

60806040523480156200001157600080fd5b5060405162001aa038038062001aa083398181016040528101906200003791906200029c565b84600490805190602001906200004f9291906200014c565b508360059080519060200190620000689291906200014c565b5081600a62000078919062000440565b836200008591906200057d565b6002819055506002546000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816003819055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60025460405162000139919062000361565b60405180910390a3505050505062000756565b8280546200015a9062000652565b90600052602060002090601f0160209004810192826200017e5760008555620001ca565b82601f106200019957805160ff1916838001178555620001ca565b82800160010185558215620001ca579182015b82811115620001c9578251825591602001919060010190620001ac565b5b509050620001d99190620001dd565b5090565b5b80821115620001f8576000816000905550600101620001de565b5090565b6000620002136200020d84620003b2565b6200037e565b9050828152602081018484840111156200022c57600080fd5b620002398482856200061c565b509392505050565b600081519050620002528162000722565b92915050565b600082601f8301126200026a57600080fd5b81516200027c848260208601620001fc565b91505092915050565b60008151905062000296816200073c565b92915050565b600080600080600060a08688031215620002b557600080fd5b600086015167ffffffffffffffff811115620002d057600080fd5b620002de8882890162000258565b955050602086015167ffffffffffffffff811115620002fc57600080fd5b6200030a8882890162000258565b94505060406200031d8882890162000285565b9350506060620003308882890162000285565b9250506080620003438882890162000241565b9150509295509295909350565b6200035b8162000612565b82525050565b600060208201905062000378600083018462000350565b92915050565b6000604051905081810181811067ffffffffffffffff82111715620003a857620003a7620006e6565b5b8060405250919050565b600067ffffffffffffffff821115620003d057620003cf620006e6565b5b601f19601f8301169050602081019050919050565b6000808291508390505b600185111562000437578086048111156200040f576200040e62000688565b5b60018516156200041f5780820291505b80810290506200042f8562000715565b9450620003ef565b94509492505050565b60006200044d8262000612565b91506200045a8362000612565b9250620004897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000491565b905092915050565b600082620004a3576001905062000576565b81620004b3576000905062000576565b8160018114620004cc5760028114620004d7576200050d565b600191505062000576565b60ff841115620004ec57620004eb62000688565b5b8360020a91508482111562000506576200050562000688565b5b5062000576565b5060208310610133831016604e8410600b8410161715620005475782820a90508381111562000541576200054062000688565b5b62000576565b620005568484846001620003e5565b9250905081840481111562000570576200056f62000688565b5b81810290505b9392505050565b60006200058a8262000612565b9150620005978362000612565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620005d357620005d262000688565b5b828202905092915050565b6000620005eb82620005f2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200063c5780820151818401526020810190506200061f565b838111156200064c576000848401525b50505050565b600060028204905060018216806200066b57607f821691505b60208210811415620006825762000681620006b7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60008160011c9050919050565b6200072d81620005de565b81146200073957600080fd5b50565b620007478162000612565b81146200075357600080fd5b50565b61133a80620007666000396000f3fe608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea2646970667358221220716a20fb0d965fe96427ac6dc64260a3b7feaae550a0308ef65e56a676ceb47764736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000fb9c96e93853cd9689852695037b0dc0880a94c10000000000000000000000000000000000000000000000000000000000000005415045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054150455045000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100a95760003560e01c80633950935111610071578063395093511461016857806370a082311461019857806395d89b41146101c8578063a457c2d7146101e6578063a9059cbb14610216578063dd62ed3e14610246576100a9565b806306fdde03146100ae578063095ea7b3146100cc57806318160ddd146100fc57806323b872dd1461011a578063313ce5671461014a575b600080fd5b6100b6610276565b6040516100c39190610ff7565b60405180910390f35b6100e660048036038101906100e19190610c7f565b610308565b6040516100f39190610fdc565b60405180910390f35b610104610326565b60405161011191906110f9565b60405180910390f35b610134600480360381019061012f9190610c30565b610330565b6040516101419190610fdc565b60405180910390f35b610152610431565b60405161015f91906110f9565b60405180910390f35b610182600480360381019061017d9190610c7f565b61043b565b60405161018f9190610fdc565b60405180910390f35b6101b260048036038101906101ad9190610bcb565b6104e7565b6040516101bf91906110f9565b60405180910390f35b6101d061052f565b6040516101dd9190610ff7565b60405180910390f35b61020060048036038101906101fb9190610c7f565b6105c1565b60405161020d9190610fdc565b60405180910390f35b610230600480360381019061022b9190610c7f565b6106b5565b60405161023d9190610fdc565b60405180910390f35b610260600480360381019061025b9190610bf4565b6106d3565b60405161026d91906110f9565b60405180910390f35b60606004805461028590611235565b80601f01602080910402602001604051908101604052809291908181526020018280546102b190611235565b80156102fe5780601f106102d3576101008083540402835291602001916102fe565b820191906000526020600020905b8154815290600101906020018083116102e157829003601f168201915b5050505050905090565b600061031c61031561075a565b8484610762565b6001905092915050565b6000600254905090565b600061033d84848461092d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061038861075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610408576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103ff90611079565b60405180910390fd5b6104258561041461075a565b85846104209190611186565b610762565b60019150509392505050565b6000600354905090565b60006104dd61044861075a565b84846001600061045661075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546104d89190611130565b610762565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60606005805461053e90611235565b80601f016020809104026020016040519081016040528092919081815260200182805461056a90611235565b80156105b75780601f1061058c576101008083540402835291602001916105b7565b820191906000526020600020905b81548152906001019060200180831161059a57829003601f168201915b5050505050905090565b600080600160006105d061075a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561068d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610684906110d9565b60405180910390fd5b6106aa61069861075a565b8585846106a59190611186565b610762565b600191505092915050565b60006106c96106c261075a565b848461092d565b6001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c9906110b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610842576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083990611039565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161092091906110f9565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561099d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099490611099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0490611019565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90611059565b60405180910390fd5b8181610a9f9190611186565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610b2f9190611130565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610b9391906110f9565b60405180910390a350505050565b600081359050610bb0816112d6565b92915050565b600081359050610bc5816112ed565b92915050565b600060208284031215610bdd57600080fd5b6000610beb84828501610ba1565b91505092915050565b60008060408385031215610c0757600080fd5b6000610c1585828601610ba1565b9250506020610c2685828601610ba1565b9150509250929050565b600080600060608486031215610c4557600080fd5b6000610c5386828701610ba1565b9350506020610c6486828701610ba1565b9250506040610c7586828701610bb6565b9150509250925092565b60008060408385031215610c9257600080fd5b6000610ca085828601610ba1565b9250506020610cb185828601610bb6565b9150509250929050565b610cc4816111cc565b82525050565b6000610cd582611114565b610cdf818561111f565b9350610cef818560208601611202565b610cf8816112c5565b840191505092915050565b6000610d1060238361111f565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610d7660228361111f565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ddc60268361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610e4260288361111f565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610ea860258361111f565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f0e60248361111f565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000610f7460258361111f565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b610fd6816111f8565b82525050565b6000602082019050610ff16000830184610cbb565b92915050565b600060208201905081810360008301526110118184610cca565b905092915050565b6000602082019050818103600083015261103281610d03565b9050919050565b6000602082019050818103600083015261105281610d69565b9050919050565b6000602082019050818103600083015261107281610dcf565b9050919050565b6000602082019050818103600083015261109281610e35565b9050919050565b600060208201905081810360008301526110b281610e9b565b9050919050565b600060208201905081810360008301526110d281610f01565b9050919050565b600060208201905081810360008301526110f281610f67565b9050919050565b600060208201905061110e6000830184610fcd565b92915050565b600081519050919050565b600082825260208201905092915050565b600061113b826111f8565b9150611146836111f8565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561117b5761117a611267565b5b828201905092915050565b6000611191826111f8565b915061119c836111f8565b9250828210156111af576111ae611267565b5b828203905092915050565b60006111c5826111d8565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b83811015611220578082015181840152602081019050611205565b8381111561122f576000848401525b50505050565b6000600282049050600182168061124d57607f821691505b6020821081141561126157611260611296565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b6112df816111ba565b81146112ea57600080fd5b50565b6112f6816111f8565b811461130157600080fd5b5056fea2646970667358221220716a20fb0d965fe96427ac6dc64260a3b7feaae550a0308ef65e56a676ceb47764736f6c63430008000033

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

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e000000000000000000000000000000000000000000000000000000000009896800000000000000000000000000000000000000000000000000000000000000012000000000000000000000000fb9c96e93853cd9689852695037b0dc0880a94c10000000000000000000000000000000000000000000000000000000000000005415045504500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000054150455045000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): APEPE
Arg [1] : symbol_ (string): APEPE
Arg [2] : initialBalance_ (uint256): 10000000
Arg [3] : decimals_ (uint256): 18
Arg [4] : tokenOwner (address): 0xfb9C96e93853cd9689852695037b0dC0880A94c1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000989680
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [4] : 000000000000000000000000fb9c96e93853cd9689852695037b0dc0880a94c1
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 4150455045000000000000000000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [8] : 4150455045000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

3961:6743:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5032:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7208:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6161:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7859:422;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5994:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8690:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6332:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5251:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9408:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6672:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6910:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5032:100;5086:13;5119:5;5112:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5032:100;:::o;7208:169::-;7291:4;7308:39;7317:12;:10;:12::i;:::-;7331:7;7340:6;7308:8;:39::i;:::-;7365:4;7358:11;;7208:169;;;;:::o;6161:108::-;6222:7;6249:12;;6242:19;;6161:108;:::o;7859:422::-;7965:4;7982:36;7992:6;8000:9;8011:6;7982:9;:36::i;:::-;8031:24;8058:11;:19;8070:6;8058:19;;;;;;;;;;;;;;;:33;8078:12;:10;:12::i;:::-;8058:33;;;;;;;;;;;;;;;;8031:60;;8130:6;8110:16;:26;;8102:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;8192:57;8201:6;8209:12;:10;:12::i;:::-;8242:6;8223:16;:25;;;;:::i;:::-;8192:8;:57::i;:::-;8269:4;8262:11;;;7859:422;;;;;:::o;5994:102::-;6052:7;6079:9;;6072:16;;5994:102;:::o;8690:215::-;8778:4;8795:80;8804:12;:10;:12::i;:::-;8818:7;8864:10;8827:11;:25;8839:12;:10;:12::i;:::-;8827:25;;;;;;;;;;;;;;;:34;8853:7;8827:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;8795:8;:80::i;:::-;8893:4;8886:11;;8690:215;;;;:::o;6332:127::-;6406:7;6433:9;:18;6443:7;6433:18;;;;;;;;;;;;;;;;6426:25;;6332:127;;;:::o;5251:104::-;5307:13;5340:7;5333:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5251:104;:::o;9408:377::-;9501:4;9518:24;9545:11;:25;9557:12;:10;:12::i;:::-;9545:25;;;;;;;;;;;;;;;:34;9571:7;9545:34;;;;;;;;;;;;;;;;9518:61;;9618:15;9598:16;:35;;9590:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;9686:67;9695:12;:10;:12::i;:::-;9709:7;9737:15;9718:16;:34;;;;:::i;:::-;9686:8;:67::i;:::-;9773:4;9766:11;;;9408:377;;;;:::o;6672:175::-;6758:4;6775:42;6785:12;:10;:12::i;:::-;6799:9;6810:6;6775:9;:42::i;:::-;6835:4;6828:11;;6672:175;;;;:::o;6910:151::-;6999:7;7026:11;:18;7038:5;7026:18;;;;;;;;;;;;;;;:27;7045:7;7026:27;;;;;;;;;;;;;;;;7019:34;;6910:151;;;;:::o;3520:98::-;3573:7;3600:10;3593:17;;3520:98;:::o;10353:346::-;10472:1;10455:19;;:5;:19;;;;10447:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10553:1;10534:21;;:7;:21;;;;10526:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10637:6;10607:11;:18;10619:5;10607:18;;;;;;;;;;;;;;;:27;10626:7;10607:27;;;;;;;;;;;;;;;:36;;;;10675:7;10659:32;;10668:5;10659:32;;;10684:6;10659:32;;;;;;:::i;:::-;;;;;;;;10353:346;;;:::o;9795:546::-;9919:1;9901:20;;:6;:20;;;;9893:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;10003:1;9982:23;;:9;:23;;;;9974:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;10060:21;10084:9;:17;10094:6;10084:17;;;;;;;;;;;;;;;;10060:41;;10137:6;10120:13;:23;;10112:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;10233:6;10217:13;:22;;;;:::i;:::-;10197:9;:17;10207:6;10197:17;;;;;;;;;;;;;;;:42;;;;10274:6;10250:9;:20;10260:9;10250:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;10315:9;10298:35;;10307:6;10298:35;;;10326:6;10298:35;;;;;;:::i;:::-;;;;;;;;9795:546;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:109::-;2030:21;2045:5;2030:21;:::i;:::-;2025:3;2018:34;2008:50;;:::o;2064:364::-;;2180:39;2213:5;2180:39;:::i;:::-;2235:71;2299:6;2294:3;2235:71;:::i;:::-;2228:78;;2315:52;2360:6;2355:3;2348:4;2341:5;2337:16;2315:52;:::i;:::-;2392:29;2414:6;2392:29;:::i;:::-;2387:3;2383:39;2376:46;;2156:272;;;;;:::o;2434:367::-;;2597:67;2661:2;2656:3;2597:67;:::i;:::-;2590:74;;2694:34;2690:1;2685:3;2681:11;2674:55;2760:5;2755:2;2750:3;2746:12;2739:27;2792:2;2787:3;2783:12;2776:19;;2580:221;;;:::o;2807:366::-;;2970:67;3034:2;3029:3;2970:67;:::i;:::-;2963:74;;3067:34;3063:1;3058:3;3054:11;3047:55;3133:4;3128:2;3123:3;3119:12;3112:26;3164:2;3159:3;3155:12;3148:19;;2953:220;;;:::o;3179:370::-;;3342:67;3406:2;3401:3;3342:67;:::i;:::-;3335:74;;3439:34;3435:1;3430:3;3426:11;3419:55;3505:8;3500:2;3495:3;3491:12;3484:30;3540:2;3535:3;3531:12;3524:19;;3325:224;;;:::o;3555:372::-;;3718:67;3782:2;3777:3;3718:67;:::i;:::-;3711:74;;3815:34;3811:1;3806:3;3802:11;3795:55;3881:10;3876:2;3871:3;3867:12;3860:32;3918:2;3913:3;3909:12;3902:19;;3701:226;;;:::o;3933:369::-;;4096:67;4160:2;4155:3;4096:67;:::i;:::-;4089:74;;4193:34;4189:1;4184:3;4180:11;4173:55;4259:7;4254:2;4249:3;4245:12;4238:29;4293:2;4288:3;4284:12;4277:19;;4079:223;;;:::o;4308:368::-;;4471:67;4535:2;4530:3;4471:67;:::i;:::-;4464:74;;4568:34;4564:1;4559:3;4555:11;4548:55;4634:6;4629:2;4624:3;4620:12;4613:28;4667:2;4662:3;4658:12;4651:19;;4454:222;;;:::o;4682:369::-;;4845:67;4909:2;4904:3;4845:67;:::i;:::-;4838:74;;4942:34;4938:1;4933:3;4929:11;4922:55;5008:7;5003:2;4998:3;4994:12;4987:29;5042:2;5037:3;5033:12;5026:19;;4828:223;;;:::o;5057:118::-;5144:24;5162:5;5144:24;:::i;:::-;5139:3;5132:37;5122:53;;:::o;5181:210::-;;5306:2;5295:9;5291:18;5283:26;;5319:65;5381:1;5370:9;5366:17;5357:6;5319:65;:::i;:::-;5273:118;;;;:::o;5397:313::-;;5548:2;5537:9;5533:18;5525:26;;5597:9;5591:4;5587:20;5583:1;5572:9;5568:17;5561:47;5625:78;5698:4;5689:6;5625:78;:::i;:::-;5617:86;;5515:195;;;;:::o;5716:419::-;;5920:2;5909:9;5905:18;5897:26;;5969:9;5963:4;5959:20;5955:1;5944:9;5940:17;5933:47;5997:131;6123:4;5997:131;:::i;:::-;5989:139;;5887:248;;;:::o;6141:419::-;;6345:2;6334:9;6330:18;6322:26;;6394:9;6388:4;6384:20;6380:1;6369:9;6365:17;6358:47;6422:131;6548:4;6422:131;:::i;:::-;6414:139;;6312:248;;;:::o;6566:419::-;;6770:2;6759:9;6755:18;6747:26;;6819:9;6813:4;6809:20;6805:1;6794:9;6790:17;6783:47;6847:131;6973:4;6847:131;:::i;:::-;6839:139;;6737:248;;;:::o;6991:419::-;;7195:2;7184:9;7180:18;7172:26;;7244:9;7238:4;7234:20;7230:1;7219:9;7215:17;7208:47;7272:131;7398:4;7272:131;:::i;:::-;7264:139;;7162:248;;;:::o;7416:419::-;;7620:2;7609:9;7605:18;7597:26;;7669:9;7663:4;7659:20;7655:1;7644:9;7640:17;7633:47;7697:131;7823:4;7697:131;:::i;:::-;7689:139;;7587:248;;;:::o;7841:419::-;;8045:2;8034:9;8030:18;8022:26;;8094:9;8088:4;8084:20;8080:1;8069:9;8065:17;8058:47;8122:131;8248:4;8122:131;:::i;:::-;8114:139;;8012:248;;;:::o;8266:419::-;;8470:2;8459:9;8455:18;8447:26;;8519:9;8513:4;8509:20;8505:1;8494:9;8490:17;8483:47;8547:131;8673:4;8547:131;:::i;:::-;8539:139;;8437:248;;;:::o;8691:222::-;;8822:2;8811:9;8807:18;8799:26;;8835:71;8903:1;8892:9;8888:17;8879:6;8835:71;:::i;:::-;8789:124;;;;:::o;8919:99::-;;9005:5;8999:12;8989:22;;8978:40;;;:::o;9024:169::-;;9142:6;9137:3;9130:19;9182:4;9177:3;9173:14;9158:29;;9120:73;;;;:::o;9199:305::-;;9258:20;9276:1;9258:20;:::i;:::-;9253:25;;9292:20;9310:1;9292:20;:::i;:::-;9287:25;;9446:1;9378:66;9374:74;9371:1;9368:81;9365:2;;;9452:18;;:::i;:::-;9365:2;9496:1;9493;9489:9;9482:16;;9243:261;;;;:::o;9510:191::-;;9570:20;9588:1;9570:20;:::i;:::-;9565:25;;9604:20;9622:1;9604:20;:::i;:::-;9599:25;;9643:1;9640;9637:8;9634:2;;;9648:18;;:::i;:::-;9634:2;9693:1;9690;9686:9;9678:17;;9555:146;;;;:::o;9707:96::-;;9773:24;9791:5;9773:24;:::i;:::-;9762:35;;9752:51;;;:::o;9809:90::-;;9886:5;9879:13;9872:21;9861:32;;9851:48;;;:::o;9905:126::-;;9982:42;9975:5;9971:54;9960:65;;9950:81;;;:::o;10037:77::-;;10103:5;10092:16;;10082:32;;;:::o;10120:307::-;10188:1;10198:113;10212:6;10209:1;10206:13;10198:113;;;10297:1;10292:3;10288:11;10282:18;10278:1;10273:3;10269:11;10262:39;10234:2;10231:1;10227:10;10222:15;;10198:113;;;10329:6;10326:1;10323:13;10320:2;;;10409:1;10400:6;10395:3;10391:16;10384:27;10320:2;10169:258;;;;:::o;10433:320::-;;10514:1;10508:4;10504:12;10494:22;;10561:1;10555:4;10551:12;10582:18;10572:2;;10638:4;10630:6;10626:17;10616:27;;10572:2;10700;10692:6;10689:14;10669:18;10666:38;10663:2;;;10719:18;;:::i;:::-;10663:2;10484:269;;;;:::o;10759:180::-;10807:77;10804:1;10797:88;10904:4;10901:1;10894:15;10928:4;10925:1;10918:15;10945:180;10993:77;10990:1;10983:88;11090:4;11087:1;11080:15;11114:4;11111:1;11104:15;11131:102;;11223:2;11219:7;11214:2;11207:5;11203:14;11199:28;11189:38;;11179:54;;;:::o;11239:122::-;11312:24;11330:5;11312:24;:::i;:::-;11305:5;11302:35;11292:2;;11351:1;11348;11341:12;11292:2;11282:79;:::o;11367:122::-;11440:24;11458:5;11440:24;:::i;:::-;11433:5;11430:35;11420:2;;11479:1;11476;11469:12;11420:2;11410:79;:::o

Swarm Source

ipfs://716a20fb0d965fe96427ac6dc64260a3b7feaae550a0308ef65e56a676ceb477

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
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.