Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 8 from a total of 8 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Poke | 17943025 | 467 days ago | IN | 0 ETH | 0.00208143 | ||||
Poke | 17942968 | 467 days ago | IN | 0 ETH | 0.00154483 | ||||
Deny | 16134867 | 721 days ago | IN | 0 ETH | 0.00057355 | ||||
Poke | 16100799 | 726 days ago | IN | 0 ETH | 0.00076065 | ||||
Poke | 16100260 | 726 days ago | IN | 0 ETH | 0.00074402 | ||||
Kiss | 15984134 | 742 days ago | IN | 0 ETH | 0.00121897 | ||||
Rely | 15984133 | 742 days ago | IN | 0 ETH | 0.00121141 | ||||
0x60806040 | 15984128 | 742 days ago | IN | 0 ETH | 0.04614555 |
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 0xeE7F0b35...1972f7D47 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
OSM
Compiler Version
v0.5.12+commit.7709ece9
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-09-28 */ /** *Submitted for verification at Etherscan.io on 2019-11-13 */ // osm.sol - Oracle Security Module // Copyright (C) 2019 Maker Foundation // 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/>. contract DSAuthority { function canCall( address src, address dst, bytes4 sig ) public 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(0)) { return false; } else { return authority.canCall(src, address(this), sig); } } } ////// lib/ds-stop/lib/ds-note/src/note.sol /// 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); _; } } ////// lib/ds-value/lib/ds-thing/lib/ds-math/src/math.sol /// 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; function wmul(uint x, uint y) internal pure returns (uint z) { z = add(mul(x, y), WAD / 2) / WAD; } function rmul(uint x, uint y) internal pure returns (uint z) { z = add(mul(x, y), RAY / 2) / RAY; } function wdiv(uint x, uint y) internal pure returns (uint z) { z = add(mul(x, WAD), y / 2) / y; } 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); } } } } ////// lib/ds-value/lib/ds-thing/src/thing.sol // 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))); } } ////// lib/ds-value/src/value.sol /// 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; } } ////// src/osm.sol /* 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 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
- No Contract Security Audit Submitted- Submit Audit Here
[{"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
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806365fae35e116100b8578063ac4c25b21161007c578063ac4c25b2146104e1578063b0b8579b146104eb578063be9a655514610511578063bf353dbb1461051b578063e38e2cfb14610573578063f29c29c4146105a557610142565b806365fae35e146103e757806375f12b211461042b5780639c52a7f114610449578063a4dff0a21461048d578063a7a1ed72146104bf57610142565b80632e7dc6af1161010a5780632e7dc6af1461024157806346d4577d1461028b5780634fce7a2a1461030457806357de26a41461035c57806359e02dd71461037a57806365c4ce7a146103a357610142565b806307da68f5146101475780630e5a6c7014610151578063181783581461017a5780631b25b65f146101845780631e77933e146101fd575b600080fd5b61014f6105e9565b005b6101596106d9565b60405180838152602001821515151581526020019250505060405180910390f35b610182610807565b005b6101fb6004803603602081101561019a57600080fd5b81019080803590602001906401000000008111156101b757600080fd5b8201836020820111156101c957600080fd5b803590602001918460208302840111640100000000831117156101eb57600080fd5b9091929391929390505050610c0c565b005b61023f6004803603602081101561021357600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610e4e565b005b610249610f79565b604051808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b610302600480360360208110156102a157600080fd5b81019080803590602001906401000000008111156102be57600080fd5b8201836020820111156102d057600080fd5b803590602001918460208302840111640100000000831117156102f257600080fd5b9091929391929390505050610f9f565b005b6103466004803603602081101561031a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611116565b6040518082815260200191505060405180910390f35b61036461112e565b6040518082815260200191505060405180910390f35b6103826112ca565b60405180838152602001821515151581526020019250505060405180910390f35b6103e5600480360360208110156103b957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506113f8565b005b610429600480360360208110156103fd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611527565b005b610433611655565b6040518082815260200191505060405180910390f35b61048b6004803603602081101561045f57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061165b565b005b610495611789565b604051808267ffffffffffffffff1667ffffffffffffffff16815260200191505060405180910390f35b6104c76117a3565b604051808215151515815260200191505060405180910390f35b6104e96117f2565b005b6104f3611a5a565b604051808261ffff1661ffff16815260200191505060405180910390f35b610519611a6e565b005b61055d6004803603602081101561053157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611b5f565b6040518082815260200191505060405180910390f35b6105a36004803603602081101561058957600080fd5b81019080803561ffff169060200190929190505050611b77565b005b6105e7600480360360208110156105bb57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611cc5565b005b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461069d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b600180819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b6000806001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610791576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b600460000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6001600460000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1614915091509091565b60006001541461087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f69732d73746f7070656400000000000000000000000000000000000081525060200191505060405180910390fd5b6108876117a3565b6108f9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f6e6f742d70617373656400000000000000000000000000000000000081525060200191505060405180910390fd5b600080600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166359e02dd76040518163ffffffff1660e01b8152600401604080518083038186803b15801561096357600080fd5b505afa158015610977573d6000803e3d6000fd5b505050506040513d604081101561098d57600080fd5b810190808051906020019092919080519060200190929190505050915091508015610bd557600460036000820160009054906101000a90046fffffffffffffffffffffffffffffffff168160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506000820160109054906101000a90046fffffffffffffffffffffffffffffffff168160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808360001c6fffffffffffffffffffffffffffffffff16815260200160016fffffffffffffffffffffffffffffffff16815250600460008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905050610b3f610b3a611e97565b611e9f565b600260166101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055507f296ba4ca62c6c21c95e828080cb8aec7481b71390585605300a8a76f9e95b527600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6040518082815260200191505060405180910390a15b50505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610cc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008090505b82829050811015610e1657600073ffffffffffffffffffffffffffffffffffffffff16838383818110610cf557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415610d9c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f534d2f6e6f2d636f6e74726163742d3000000000000000000000000000000081525060200191505060405180910390fd5b600160056000858585818110610dae57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050610cc6565b505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414610f02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b80600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611053576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008090505b828290508110156110de5760006005600085858581811061107657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080600101915050611059565b505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a4505050565b60056020528060005260406000206000915090505481565b60006001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146111e5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b6001600360000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff161461128e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260148152602001807f4f534d2f6e6f2d63757272656e742d76616c756500000000000000000000000081525060200191505060405180910390fd5b600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b905090565b6000806001600560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611382576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f4f534d2f636f6e74726163742d6e6f742d77686974656c69737465640000000081525060200191505060405180910390fd5b600360000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1660001b6001600360000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1614915091509091565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146114ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b60015481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541461170f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600260169054906101000a900467ffffffffffffffff1681565b60006117d9600260169054906101000a900467ffffffffffffffff16600260149054906101000a900461ffff1661ffff16611f52565b67ffffffffffffffff166117eb611e97565b1015905090565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054146118a6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b604051806040016040528060006fffffffffffffffffffffffffffffffff16815260200160006fffffffffffffffffffffffffffffffff16815250600460008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905060036000820160009054906101000a90046fffffffffffffffffffffffffffffffff168160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506000820160109054906101000a90046fffffffffffffffffffffffffffffffff168160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550905050600180819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b600260149054906101000a900461ffff1681565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611b22576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60006001819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a450565b60006020528060005260406000206000915090505481565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611c2b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b60008161ffff1611611ca5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600e8152602001807f4f534d2f74732d69732d7a65726f00000000000000000000000000000000000081525060200191505060405180910390fd5b80600260146101000a81548161ffff021916908361ffff16021790555050565b60016000803373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205414611d79576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260128152602001807f4f534d2f6e6f742d617574686f72697a6564000000000000000000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611e1c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260118152602001807f4f534d2f6e6f2d636f6e74726163742d3000000000000000000000000000000081525060200191505060405180910390fd5b6001600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505961012081016040526020815260e0602082015260e0600060408301376024356004353360003560e01c60e01b61012085a45050565b600042905090565b600080600260149054906101000a900461ffff1661ffff161415611f2b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252600f8152602001807f4f534d2f686f702d69732d7a65726f000000000000000000000000000000000081525060200191505060405180910390fd5b600260149054906101000a900461ffff1661ffff168281611f4857fe5b0682039050919050565b600081830190508267ffffffffffffffff168167ffffffffffffffff161015611f7a57600080fd5b9291505056fea265627a7a723158208c9dab88fa98fce349e830dfc93a5bb07806d26e0e565e243cbfbb5126e02cc864736f6c634300050c0032
Deployed Bytecode Sourcemap
10388:3351:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10388:3351:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11571:65;;;:::i;:::-;;12850:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12379:333;;;:::i;:::-;;13369:211;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13369:211:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13369:211:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13369: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;13369:211:0;;;;;;;;;;;;:::i;:::-;;11716:78;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11716:78:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11008:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;13588:148;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13588:148:0;;;;;;;;;;21:11:-1;8;5:28;2:2;;;46:1;43;36:12;2:2;13588:148:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;13588: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;13588:148:0;;;;;;;;;;;;:::i;:::-;;11293:39;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;11293:39:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12980:159;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12720:122;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13288:73;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13288:73:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;10487:65;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10487:65:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;10756:22;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10558:65;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10558:65:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11116:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12277:94;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;12171:98;;;:::i;:::-;;11080:29;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;11642:66;;;:::i;:::-;;10442:38;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;10442:38:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;12053:110;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12053:110:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;13151:129;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;13151:129:0;;;;;;;;;;;;;;;;;;;:::i;:::-;;11571:65;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11627:1;11617:7;:11;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;:::o;12850:122::-;12894:7;12902:4;11384:1;11365:3;:15;11369:10;11365:15;;;;;;;;;;;;;;;;:20;11357:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12940:3;:7;;;;;;;;;;;;12935:13;;12927:22;;12962:1;12951:3;:7;;;;;;;;;;;;:12;;;12919:45;;;;12850:122;;:::o;12379:333::-;10825:1;10814:7;;:12;10806:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12438:6;:4;:6::i;:::-;12430:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12475:11;12488:7;12507:3;;;;;;;;;;;12499:17;;;:19;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12499:19:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;12499:19:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;12499:19:0;;;;;;;;;;;;;;;;;;;;;;;;;12474:44;;;;12533:2;12529:176;;;12558:3;12552;:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12582:27;;;;;;;;12600:3;12595:9;;12582:27;;;;;;12607:1;12582:27;;;;;12576:3;:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12630:11;12635:5;:3;:5::i;:::-;12630:4;:11::i;:::-;12624:3;;:17;;;;;;;;;;;;;;;;;;12661:32;12683:3;:7;;;;;;;;;;;;12678:13;;12670:22;;12661:32;;;;;;;;;;;;;;;;;;12529:176;10847:1;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;:::o;13369:211::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13439:6;13448:1;13439:10;;13435:138;13455:1;;:8;;13451:1;:12;13435:138;;;13509:1;13493:18;;:1;;13495;13493:4;;;;;;;;;;;;;;;:18;;;;13485:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13560:1;13548:3;:9;13552:1;;13554;13552:4;;;;;;;;;;;;;;;13548:9;;;;;;;;;;;;;;;:13;;;;13465:3;;;;;;;13435:138;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;;:::o;11716:78::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11782:4;11776:3;;:10;;;;;;;;;;;;;;;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;:::o;11008:18::-;;;;;;;;;;;;;:::o;13588:148::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13658:6;13667:1;13658:10;;13654:75;13674:1;;:8;;13670:1;:12;13654:75;;;13716:1;13704:3;:9;13708:1;;13710;13708:4;;;;;;;;;;;;;;;13704:9;;;;;;;;;;;;;;;:13;;;;13684:3;;;;;;;13654:75;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;;:::o;11293:39::-;;;;;;;;;;;;;;;;;:::o;12980:159::-;13024:7;11384:1;11365:3;:15;11369:10;11365:15;;;;;;;;;;;;;;;;:20;11357:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13063:1;13052:3;:7;;;;;;;;;;;;:12;;;13044:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13121:3;:7;;;;;;;;;;;;13116:13;;13108:22;;13100:31;;12980:159;:::o;12720:122::-;12764:7;12772:4;11384:1;11365:3;:15;11369:10;11365:15;;;;;;;;;;;;;;;;:20;11357:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12810:3;:7;;;;;;;;;;;;12805:13;;12797:22;;12832:1;12821:3;:7;;;;;;;;;;;;:12;;;12789:45;;;;12720:122;;:::o;13288:73::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13352:1;13343:3;:6;13347:1;13343:6;;;;;;;;;;;;;;;:10;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;:::o;10487:65::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10548:1;10535:5;:10;10541:3;10535:10;;;;;;;;;;;;;;;:14;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;:::o;10756:22::-;;;;:::o;10558:65::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10619:1;10606:5;:10;10612:3;10606:10;;;;;;;;;;;;;;;:14;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;:::o;11116:18::-;;;;;;;;;;;;;:::o;12277:94::-;12314:7;12350:13;12354:3;;;;;;;;;;;12359;;;;;;;;;;;12350:13;;:3;:13::i;:::-;12341:22;;:5;:3;:5::i;:::-;:22;;12334:29;;12277:94;:::o;12171:98::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12229:10;;;;;;;;12234:1;12229:10;;;;;;12237:1;12229:10;;;;;12223:3;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12217:3;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12260:1;12250:7;:11;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;:::o;11080:29::-;;;;;;;;;;;;;:::o;11642:66::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11699:1;11689:7;:11;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;:::o;10442:38::-;;;;;;;;;;;;;;;;;:::o;12053:110::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12116:1;12111:2;:6;;;12103:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12153:2;12147:3;;:8;;;;;;;;;;;;;;;;;;12053:110;:::o;13151:129::-;10683:1;10662:5;:17;10668:10;10662:17;;;;;;;;;;;;;;;;:22;10654:53;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13227:1;13214:15;;:1;:15;;;;13206:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13271:1;13262:3;:6;13266:1;13262:6;;;;;;;;;;;;;;;:10;;;;9641:5;9737:3;9731:4;9727:14;9721:4;9714:28;9812:4;9806;9799:18;9904:3;9897:4;9891;9887:15;9880:28;9991:3;9988:1;9981:4;9975;9971:15;9958:37;10313:2;10300:16;10250:1;10237:15;10168:6;10133:1;10120:15;10115:3;10111:25;10106:3;10102:35;10041:3;10035:4;10030:333;9464:910;;:::o;11802:85::-;11840:4;11864:15;11857:22;;11802:85;:::o;11895:150::-;11941:6;11975:1;11968:3;;;;;;;;;;;:8;;;;11960:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12032:3;;;;;;;;;;;12027:8;;:2;:8;;;;;;12021:2;:15;12007:30;;11895:150;;;:::o;10880:120::-;10936:8;10965:1;10961;:5;10957:9;;10990:1;10985:6;;:1;:6;;;;10977:15;;;;;;10880:120;;;;:::o
Swarm Source
bzzr://8c9dab88fa98fce349e830dfc93a5bb07806d26e0e565e243cbfbb5126e02cc8
Loading...
Loading
Loading...
Loading
OVERVIEW
Sky (formerly Maker) enables users to get rewarded for non-custodial savings.Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
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.