ETH Price: $2,410.23 (-0.62%)

Contract

0xFe7a2aC0B945f12089aEEB6eCebf4F384D9f043F
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Deny134493272021-10-19 16:46:101082 days ago1634661970IN
Sky: PIP wstETH
0 ETH0.0017707966.88562717
Deny134493272021-10-19 16:46:101082 days ago1634661970IN
Sky: PIP wstETH
0 ETH0.0019112566.88562717
Rely132677692021-09-21 7:31:341110 days ago1632209494IN
Sky: PIP wstETH
0 ETH0.0017650835
Rely132677692021-09-21 7:31:341110 days ago1632209494IN
Sky: PIP wstETH
0 ETH0.0017646635
Kiss132677692021-09-21 7:31:341110 days ago1632209494IN
Sky: PIP wstETH
0 ETH0.0017913335
Rely132575012021-09-19 17:23:221112 days ago1632072202IN
Sky: PIP wstETH
0 ETH0.0008947934.79251583
0x60806040132575012021-09-19 17:23:221112 days ago1632072202IN
 Contract Creation
0 ETH0.0641564534.79251583

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

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

Contract Name:
OSM_STETHUSD

Compiler Version
v0.5.12+commit.7709ece9

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-11
*/

// SPDX-License-Identifier: GNU-3
// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

pragma solidity >=0.4.23;

interface DSAuthority {
    function canCall(
        address src, address dst, bytes4 sig
    ) external view returns (bool);
}

contract DSAuthEvents {
    event LogSetAuthority (address indexed authority);
    event LogSetOwner     (address indexed owner);
}

contract DSAuth is DSAuthEvents {
    DSAuthority  public  authority;
    address      public  owner;

    constructor() public {
        owner = msg.sender;
        emit LogSetOwner(msg.sender);
    }

    function setOwner(address owner_)
        public
        auth
    {
        owner = owner_;
        emit LogSetOwner(owner);
    }

    function setAuthority(DSAuthority authority_)
        public
        auth
    {
        authority = authority_;
        emit LogSetAuthority(address(authority));
    }

    modifier auth {
        require(isAuthorized(msg.sender, msg.sig), "ds-auth-unauthorized");
        _;
    }

    function isAuthorized(address src, bytes4 sig) internal view returns (bool) {
        if (src == address(this)) {
            return true;
        } else if (src == owner) {
            return true;
        } else if (authority == DSAuthority(address(0))) {
            return false;
        } else {
            return authority.canCall(src, address(this), sig);
        }
    }
}
/// note.sol -- the `note' modifier, for logging calls as events

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

//pragma solidity >=0.4.23;

contract DSNote {
    event LogNote(
        bytes4   indexed  sig,
        address  indexed  guy,
        bytes32  indexed  foo,
        bytes32  indexed  bar,
        uint256           wad,
        bytes             fax
    ) anonymous;

    modifier note {
        bytes32 foo;
        bytes32 bar;
        uint256 wad;

        assembly {
            foo := calldataload(4)
            bar := calldataload(36)
            wad := callvalue()
        }

        _;

        emit LogNote(msg.sig, msg.sender, foo, bar, wad, msg.data);
    }
}
/// math.sol -- mixin for inline numerical wizardry

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

//pragma solidity >0.4.13;

contract DSMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, "ds-math-add-overflow");
    }
    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, "ds-math-sub-underflow");
    }
    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, "ds-math-mul-overflow");
    }

    function min(uint x, uint y) internal pure returns (uint z) {
        return x <= y ? x : y;
    }
    function max(uint x, uint y) internal pure returns (uint z) {
        return x >= y ? x : y;
    }
    function imin(int x, int y) internal pure returns (int z) {
        return x <= y ? x : y;
    }
    function imax(int x, int y) internal pure returns (int z) {
        return x >= y ? x : y;
    }

    uint constant WAD = 10 ** 18;
    uint constant RAY = 10 ** 27;

    //rounds to zero if x*y < WAD / 2
    function wmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), WAD / 2) / WAD;
    }
    //rounds to zero if x*y < WAD / 2
    function rmul(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, y), RAY / 2) / RAY;
    }
    //rounds to zero if x*y < WAD / 2
    function wdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, WAD), y / 2) / y;
    }
    //rounds to zero if x*y < RAY / 2
    function rdiv(uint x, uint y) internal pure returns (uint z) {
        z = add(mul(x, RAY), y / 2) / y;
    }

    // This famous algorithm is called "exponentiation by squaring"
    // and calculates x^n with x as fixed-point and n as regular unsigned.
    //
    // It's O(log n), instead of O(n) for naive repeated multiplication.
    //
    // These facts are why it works:
    //
    //  If n is even, then x^n = (x^2)^(n/2).
    //  If n is odd,  then x^n = x * x^(n-1),
    //   and applying the equation for even x gives
    //    x^n = x * (x^2)^((n-1) / 2).
    //
    //  Also, EVM division is flooring and
    //    floor[(n-1) / 2] = floor[n / 2].
    //
    function rpow(uint x, uint n) internal pure returns (uint z) {
        z = n % 2 != 0 ? x : RAY;

        for (n /= 2; n != 0; n /= 2) {
            x = rmul(x, x);

            if (n % 2 != 0) {
                z = rmul(z, x);
            }
        }
    }
}
// thing.sol - `auth` with handy mixins. your things should be DSThings

// Copyright (C) 2017  DappHub, LLC

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

//pragma solidity >=0.4.23;

//import 'ds-auth/auth.sol';
//import 'ds-note/note.sol';
//import 'ds-math/math.sol';

contract DSThing is DSAuth, DSNote, DSMath {
    function S(string memory s) internal pure returns (bytes4) {
        return bytes4(keccak256(abi.encodePacked(s)));
    }

}
/// value.sol - a value is a simple thing, it can be get and set

// Copyright (C) 2017  DappHub, LLC

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

//pragma solidity >=0.4.23;

//import 'ds-thing/thing.sol';

contract DSValue is DSThing {
    bool    has;
    bytes32 val;
    function peek() public view returns (bytes32, bool) {
        return (val,has);
    }
    function read() public view returns (bytes32) {
        bytes32 wut; bool haz;
        (wut, haz) = peek();
        require(haz, "haz-not");
        return wut;
    }
    function poke(bytes32 wut) public note auth {
        val = wut;
        has = true;
    }
    function void() public note auth {  // unset the value
        has = false;
    }
}
/// osm.sol

// Copyright (C) 2018-2020 Maker Ecosystem Growth Holdings, INC.

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with this program.  If not, see <https://www.gnu.org/licenses/>.

//pragma solidity >=0.5.10;

//import "ds-value/value.sol";

contract LibNote {
    event LogNote(
        bytes4   indexed  sig,
        address  indexed  usr,
        bytes32  indexed  arg1,
        bytes32  indexed  arg2,
        bytes             data
    ) anonymous;

    modifier note {
        _;
        assembly {
            // log an 'anonymous' event with a constant 6 words of calldata
            // and four indexed topics: selector, caller, arg1 and arg2
            let mark := msize()                       // end of memory ensures zero
            mstore(0x40, add(mark, 288))              // update free memory pointer
            mstore(mark, 0x20)                        // bytes type data offset
            mstore(add(mark, 0x20), 224)              // bytes size (padded)
            calldatacopy(add(mark, 0x40), 0, 224)     // bytes payload
            log4(mark, 288,                           // calldata
                 shl(224, shr(224, calldataload(0))), // msg.sig
                 caller(),                            // msg.sender
                 calldataload(4),                     // arg1
                 calldataload(36)                     // arg2
                )
        }
    }
}

contract OSM_STETHUSD is LibNote {

    // --- Auth ---
    mapping (address => uint) public wards;
    function rely(address usr) external note auth { wards[usr] = 1; }
    function deny(address usr) external note auth { wards[usr] = 0; }
    modifier auth {
        require(wards[msg.sender] == 1, "OSM/not-authorized");
        _;
    }

    // --- Stop ---
    uint256 public stopped;
    modifier stoppable { require(stopped == 0, "OSM/is-stopped"); _; }

    // --- Math ---
    function add(uint64 x, uint64 y) internal pure returns (uint64 z) {
        z = x + y;
        require(z >= x);
    }

    address public src;
    uint16  constant ONE_HOUR = uint16(3600);
    uint16  public hop = ONE_HOUR;
    uint64  public zzz;

    struct Feed {
        uint128 val;
        uint128 has;
    }

    Feed cur;
    Feed nxt;

    // Whitelisted contracts, set by an auth
    mapping (address => uint256) public bud;

    modifier toll { require(bud[msg.sender] == 1, "OSM/contract-not-whitelisted"); _; }

    event LogValue(bytes32 val);

    constructor (address src_) public {
        wards[msg.sender] = 1;
        src = src_;
    }

    function stop() external note auth {
        stopped = 1;
    }
    function start() external note auth {
        stopped = 0;
    }

    function change(address src_) external note auth {
        src = src_;
    }

    function era() internal view returns (uint) {
        return block.timestamp;
    }

    function prev(uint ts) internal view returns (uint64) {
        require(hop != 0, "OSM/hop-is-zero");
        return uint64(ts - (ts % hop));
    }

    function step(uint16 ts) external auth {
        require(ts > 0, "OSM/ts-is-zero");
        hop = ts;
    }

    function void() external note auth {
        cur = nxt = Feed(0, 0);
        stopped = 1;
    }

    function pass() public view returns (bool ok) {
        return era() >= add(zzz, hop);
    }

    function poke() external note stoppable {
        require(pass(), "OSM/not-passed");
        (bytes32 wut, bool ok) = DSValue(src).peek();
        if (ok) {
            cur = nxt;
            nxt = Feed(uint128(uint(wut)), 1);
            zzz = prev(era());
            emit LogValue(bytes32(uint(cur.val)));
        }
    }

    function peek() external view toll returns (bytes32,bool) {
        return (bytes32(uint(cur.val)), cur.has == 1);
    }

    function peep() external view toll returns (bytes32,bool) {
        return (bytes32(uint(nxt.val)), nxt.has == 1);
    }

    function read() external view toll returns (bytes32) {
        require(cur.has == 1, "OSM/no-current-value");
        return (bytes32(uint(cur.val)));
    }



    function kiss(address a) external note auth {
        require(a != address(0), "OSM/no-contract-0");
        bud[a] = 1;
    }

    function diss(address a) external note auth {
        bud[a] = 0;
    }

    function kiss(address[] calldata a) external note auth {
        for(uint i = 0; i < a.length; i++) {
            require(a[i] != address(0), "OSM/no-contract-0");
            bud[a[i]] = 1;
        }
    }

    function diss(address[] calldata a) external note auth {
        for(uint i = 0; i < a.length; i++) {
            bud[a[i]] = 0;
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"src_","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":true,"inputs":[{"indexed":true,"internalType":"bytes4","name":"sig","type":"bytes4"},{"indexed":true,"internalType":"address","name":"usr","type":"address"},{"indexed":true,"internalType":"bytes32","name":"arg1","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"arg2","type":"bytes32"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"LogNote","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"val","type":"bytes32"}],"name":"LogValue","type":"event"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bud","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src_","type":"address"}],"name":"change","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"deny","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"a","type":"address[]"}],"name":"diss","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"diss","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"hop","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address[]","name":"a","type":"address[]"}],"name":"kiss","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"kiss","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"pass","outputs":[{"internalType":"bool","name":"ok","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"peek","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"peep","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"},{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"poke","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"read","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"usr","type":"address"}],"name":"rely","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"src","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"start","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint16","name":"ts","type":"uint16"}],"name":"step","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"stop","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"stopped","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"void","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"wards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"zzz","outputs":[{"internalType":"uint64","name":"","type":"uint64"}],"payable":false,"stateMutability":"view","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101425760003560e01c806365fae35e116100b8578063ac4c25b21161007c578063ac4c25b2146104e1578063b0b8579b146104eb578063be9a655514610511578063bf353dbb1461051b578063e38e2cfb14610573578063f29c29c4146105a557610142565b806365fae35e146103e757806375f12b211461042b5780639c52a7f114610449578063a4dff0a21461048d578063a7a1ed72146104bf57610142565b80632e7dc6af1161010a5780632e7dc6af1461024157806346d4577d1461028b5780634fce7a2a1461030457806357de26a41461035c57806359e02dd71461037a57806365c4ce7a146103a357610142565b806307da68f5146101475780630e5a6c7014610151578063181783581461017a5780631b25b65f146101845780631e77933e146101fd575b600080fd5b61014f6105e9565b005b6101596106d9565b60405180838152602001821515151581526020019250505060405180910390f35b610182610807565b005b6101fb6004803603602081101561019a57600080fd5b81019080803590602001906401000000008111156101b757600080fd5b8201836020820111156101c957600080fd5b803590602001918460208302840111640100000000831117156101eb57600080fd5b9091929391929390505050610c0c565b005b61023f6004803603602081101561021357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e4e565b005b610249610f79565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610302600480360360208110156102a157600080fd5b81019080803590602001906401000000008111156102be57600080fd5b8201836020820111156102d057600080fd5b803590602001918460208302840111640100000000831117156102f257600080fd5b9091929391929390505050610f9f565b005b6103466004803603602081101561031a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611116565b6040518082815260200191505060405180910390f35b61036461112e565b6040518082815260200191505060405180910390f35b6103826112ca565b60405180838152602001821515151581526020019250505060405180910390f35b6103e5600480360360208110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f8565b005b610429600480360360208110156103fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611527565b005b610433611655565b6040518082815260200191505060405180910390f35b61048b6004803603602081101561045f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165b565b005b610495611789565b604051808267ffffffffffffffff1667ffffffffffffffff16815260200191505060405180910390f35b6104c76117a3565b604051808215151515815260200191505060405180910390f35b6104e96117f2565b005b6104f3611a5a565b604051808261ffff1661ffff16815260200191505060405180910390f35b610519611a6e565b005b61055d6004803603602081101561053157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5f565b6040518082815260200191505060405180910390f35b6105a36004803603602081101561058957600080fd5b81019080803561ffff169060200190929190505050611b77565b005b6105e7600480360360208110156105bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b005b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461069d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b600180819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b6000806001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b600460000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6001600460000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1614915091509091565b60006001541461087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f69732d73746f7070656400000000000000000000000000000000000081525060200191505060405180910390fd5b6108876117a3565b6108f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f6e6f742d70617373656400000000000000000000000000000000000081525060200191505060405180910390fd5b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166359e02dd76040518163ffffffff1660e01b8152600401604080518083038186803b15801561096357600080fd5b505afa158015610977573d6000803e3d6000fd5b505050506040513d604081101561098d57600080fd5b810190808051906020019092919080519060200190929190505050915091508015610bd557600460036000820160009054906101000a90046fffffffffffffffffffffffffffffffff168160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506000820160109054906101000a90046fffffffffffffffffffffffffffffffff168160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808360001c6fffffffffffffffffffffffffffffffff16815260200160016fffffffffffffffffffffffffffffffff16815250600460008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905050610b3f610b3a611e97565b611e9f565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f296ba4ca62c6c21c95e828080cb8aec7481b71390585605300a8a76f9e95b527600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6040518082815260200191505060405180910390a15b50505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610cc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008090505b82829050811015610e1657600073ffffffffffffffffffffffffffffffffffffffff16838383818110610cf557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f534d2f6e6f2d636f6e74726163742d3000000000000000000000000000000081525060200191505060405180910390fd5b600160056000858585818110610dae57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050610cc6565b505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610f02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611053576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008090505b828290508110156110de5760006005600085858581811061107657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611059565b505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b60056020528060005260406000206000915090505481565b60006001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b6001600360000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161461128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4f534d2f6e6f2d63757272656e742d76616c756500000000000000000000000081525060200191505060405180910390fd5b600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b905090565b6000806001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6001600360000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1614915091509091565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60015481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600260169054906101000a900467ffffffffffffffff1681565b60006117d9600260169054906101000a900467ffffffffffffffff16600260149054906101000a900461ffff1661ffff16611f52565b67ffffffffffffffff166117eb611e97565b1015905090565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146118a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b604051806040016040528060006fffffffffffffffffffffffffffffffff16815260200160006fffffffffffffffffffffffffffffffff16815250600460008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905060036000820160009054906101000a90046fffffffffffffffffffffffffffffffff168160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506000820160109054906101000a90046fffffffffffffffffffffffffffffffff168160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905050600180819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b600260149054906101000a900461ffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611b22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60006001819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b60006020528060005260406000206000915090505481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611c2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008161ffff1611611ca5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f74732d69732d7a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b80600260146101000a81548161ffff021916908361ffff16021790555050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f534d2f6e6f2d636f6e74726163742d3000000000000000000000000000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600042905090565b600080600260149054906101000a900461ffff1661ffff161415611f2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f534d2f686f702d69732d7a65726f000000000000000000000000000000000081525060200191505060405180910390fd5b600260149054906101000a900461ffff1661ffff168281611f4857fe5b0682039050919050565b600081830190508267ffffffffffffffff168167ffffffffffffffff161015611f7a57600080fd5b9291505056fea265627a7a72315820889d954dc1f6c43b567fbd2797c91c5a07ebfb1433c4039dba0942ce6123f55964736f6c634300050c0032

Deployed Bytecode Sourcemap

10979:3360:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10979:3360:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12171:65;;;:::i;:::-;;13450:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12979:333;;;:::i;:::-;;13969:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13969:211:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13969:211:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13969:211:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;13969:211:0;;;;;;;;;;;;:::i;:::-;;12316:78;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12316:78:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11608:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;14188:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;14188:148:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;14188:148:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;14188:148:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;14188:148:0;;;;;;;;;;;;:::i;:::-;;11893:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11893:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13580:159;;;:::i;:::-;;;;;;;;;;;;;;;;;;;13320:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13888:73;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13888:73:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11087:65;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11087:65:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11356:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;11158:65;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11158:65:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11716:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12877:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12771:98;;;:::i;:::-;;11680:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12242:66;;;:::i;:::-;;11042:38;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11042:38:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12653:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12653:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13751:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13751:129:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;12171:65;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12227:1;12217:7;:11;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;:::o;13450:122::-;13494:7;13502:4;11984:1;11965:3;:15;11969:10;11965:15;;;;;;;;;;;;;;;;:20;11957:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13540:3;:7;;;;;;;;;;;;13535:13;;13527:22;;13562:1;13551:3;:7;;;;;;;;;;;;:12;;;13519:45;;;;13450:122;;:::o;12979:333::-;11425:1;11414:7;;:12;11406:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13038:6;:4;:6::i;:::-;13030:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13075:11;13088:7;13107:3;;;;;;;;;;;13099:17;;;:19;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13099:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;13099:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13099:19:0;;;;;;;;;;;;;;;;;;;;;;;;;13074:44;;;;13133:2;13129:176;;;13158:3;13152;:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13182:27;;;;;;;;13200:3;13195:9;;13182:27;;;;;;13207:1;13182:27;;;;;13176:3;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13230:11;13235:5;:3;:5::i;:::-;13230:4;:11::i;:::-;13224:3;;:17;;;;;;;;;;;;;;;;;;13261:32;13283:3;:7;;;;;;;;;;;;13278:13;;13270:22;;13261:32;;;;;;;;;;;;;;;;;;13129:176;11447:1;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;:::o;13969:211::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14039:6;14048:1;14039:10;;14035:138;14055:1;;:8;;14051:1;:12;14035:138;;;14109:1;14093:18;;:1;;14095;14093:4;;;;;;;;;;;;;;;:18;;;;14085:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14160:1;14148:3;:9;14152:1;;14154;14152:4;;;;;;;;;;;;;;;14148:9;;;;;;;;;;;;;;;:13;;;;14065:3;;;;;;;14035:138;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;;:::o;12316:78::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12382:4;12376:3;;:10;;;;;;;;;;;;;;;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;:::o;11608:18::-;;;;;;;;;;;;;:::o;14188:148::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14258:6;14267:1;14258:10;;14254:75;14274:1;;:8;;14270:1;:12;14254:75;;;14316:1;14304:3;:9;14308:1;;14310;14308:4;;;;;;;;;;;;;;;14304:9;;;;;;;;;;;;;;;:13;;;;14284:3;;;;;;;14254:75;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;;:::o;11893:39::-;;;;;;;;;;;;;;;;;:::o;13580:159::-;13624:7;11984:1;11965:3;:15;11969:10;11965:15;;;;;;;;;;;;;;;;:20;11957:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13663:1;13652:3;:7;;;;;;;;;;;;:12;;;13644:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13721:3;:7;;;;;;;;;;;;13716:13;;13708:22;;13700:31;;13580:159;:::o;13320:122::-;13364:7;13372:4;11984:1;11965:3;:15;11969:10;11965:15;;;;;;;;;;;;;;;;:20;11957:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13410:3;:7;;;;;;;;;;;;13405:13;;13397:22;;13432:1;13421:3;:7;;;;;;;;;;;;:12;;;13389:45;;;;13320:122;;:::o;13888:73::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13952:1;13943:3;:6;13947:1;13943:6;;;;;;;;;;;;;;;:10;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;:::o;11087:65::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11148:1;11135:5;:10;11141:3;11135:10;;;;;;;;;;;;;;;:14;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;:::o;11356:22::-;;;;:::o;11158:65::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11219:1;11206:5;:10;11212:3;11206:10;;;;;;;;;;;;;;;:14;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;:::o;11716:18::-;;;;;;;;;;;;;:::o;12877:94::-;12914:7;12950:13;12954:3;;;;;;;;;;;12959;;;;;;;;;;;12950:13;;:3;:13::i;:::-;12941:22;;:5;:3;:5::i;:::-;:22;;12934:29;;12877:94;:::o;12771:98::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12829:10;;;;;;;;12834:1;12829:10;;;;;;12837:1;12829:10;;;;;12823:3;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12817:3;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12860:1;12850:7;:11;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;:::o;11680:29::-;;;;;;;;;;;;;:::o;12242:66::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12299:1;12289:7;:11;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;:::o;11042:38::-;;;;;;;;;;;;;;;;;:::o;12653:110::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12716:1;12711:2;:6;;;12703:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12753:2;12747:3;;:8;;;;;;;;;;;;;;;;;;12653:110;:::o;13751:129::-;11283:1;11262:5;:17;11268:10;11262:17;;;;;;;;;;;;;;;;:22;11254:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13827:1;13814:15;;:1;:15;;;;13806:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13871:1;13862:3;:6;13866:1;13862:6;;;;;;;;;;;;;;;:10;;;;10232:7;10328:3;10322:4;10318:14;10312:4;10305:28;10403:4;10397;10390:18;10495:3;10488:4;10482;10478:15;10471:28;10582:3;10579:1;10572:4;10566;10562:15;10549:37;10904:2;10891:16;10841:1;10828:15;10759:8;10724:1;10711:15;10706:3;10702:25;10697:3;10693:35;10632:3;10626:4;10621:333;10055:910;;:::o;12402:85::-;12440:4;12464:15;12457:22;;12402:85;:::o;12495:150::-;12541:6;12575:1;12568:3;;;;;;;;;;;:8;;;;12560:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12632:3;;;;;;;;;;;12627:8;;:2;:8;;;;;;12621:2;:15;12607:30;;12495:150;;;:::o;11480:120::-;11536:8;11565:1;11561;:5;11557:9;;11590:1;11585:6;;:1;:6;;;;11577:15;;;;;;11480:120;;;;:::o

Swarm Source

bzzr://889d954dc1f6c43b567fbd2797c91c5a07ebfb1433c4039dba0942ce6123f559

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

OVERVIEW

Sky (formerly Maker) enables users to get rewarded for non-custodial savings.

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.