Contract 0x75B01902D9297fD381bcF3B155a8cEAC78F5A35E 1

Txn Hash Method
Block
From
To
Value [Txn Fee]
0x626617f456a7b513948ae5072d199f31c0fdc421e43d17536e363d1d6c25e63fSet Ref154942222022-06-02 7:46:16489 days 18 hrs ago0x11bdf2377ce99d5dbb3b1fb92d147f63d0fc4fe1 IN 0x75b01902d9297fd381bcf3b155a8ceac78f5a35e0 AVAX0.000761332 26
0x8353984e1d5ac09e94f57eed60679591c314afcd620a1ee486dfc17d4895390d0x6080604052836652021-10-06 10:18:34728 days 15 hrs ago0x11bdf2377ce99d5dbb3b1fb92d147f63d0fc4fe1 IN  Create: StdReferenceProxy0 AVAX0.026570674 26
[ Download CSV Export 
Parent Txn Hash Block From To Value
Index Block
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
StdReferenceProxy

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at snowtrace.io on 2021-12-02
*/

pragma solidity 0.8.3;
pragma abicoder v2;

/*
 * @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 GSN meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

interface IStdReference {
    /// A structure returned whenever someone requests for standard reference data.
    struct ReferenceData {
        uint256 rate; // base/quote exchange rate, multiplied by 1e18.
        uint256 lastUpdatedBase; // UNIX epoch of the last time when base price gets updated.
        uint256 lastUpdatedQuote; // UNIX epoch of the last time when quote price gets updated.
    }

    /// Returns the price data for the given base/quote pair. Revert if not available.
    function getReferenceData(string memory _base, string memory _quote)
        external
        view
        returns (ReferenceData memory);

    /// Similar to getReferenceData, but with multiple base/quote pairs at once.
    function getReferenceDataBulk(
        string[] memory _bases,
        string[] memory _quotes
    ) external view returns (ReferenceData[] memory);
}

abstract contract StdReferenceBase is IStdReference {
    function getReferenceData(string memory _base, string memory _quote)
        public
        view
        virtual
        override
        returns (ReferenceData memory);

    function getReferenceDataBulk(
        string[] memory _bases,
        string[] memory _quotes
    ) public view override returns (ReferenceData[] memory) {
        require(_bases.length == _quotes.length, "BAD_INPUT_LENGTH");
        uint256 len = _bases.length;
        ReferenceData[] memory results = new ReferenceData[](len);
        for (uint256 idx = 0; idx < len; idx++) {
            results[idx] = getReferenceData(_bases[idx], _quotes[idx]);
        }
        return results;
    }
}

contract StdReferenceProxy is Ownable, StdReferenceBase {
    IStdReference public ref;

    constructor(IStdReference _ref) {
        ref = _ref;
    }

    /// @notice Updates standard reference implementation. Only callable by the owner.
    /// @param _ref Address of the new standard reference contract
    function setRef(IStdReference _ref) public onlyOwner {
        ref = _ref;
    }

    /// @notice Returns the price data for the given base/quote pair. Revert if not available.
    /// @param base The base symbol of the token pair
    /// @param quote The quote symbol of the token pair
    function getReferenceData(string memory base, string memory quote)
        public
        view
        override
        returns (ReferenceData memory)
    {
        return ref.getReferenceData(base, quote);
    }
}

Contract ABI

[{"inputs":[{"internalType":"contract IStdReference","name":"_ref","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"inputs":[{"internalType":"string","name":"base","type":"string"},{"internalType":"string","name":"quote","type":"string"}],"name":"getReferenceData","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string[]","name":"_bases","type":"string[]"},{"internalType":"string[]","name":"_quotes","type":"string[]"}],"name":"getReferenceDataBulk","outputs":[{"components":[{"internalType":"uint256","name":"rate","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedBase","type":"uint256"},{"internalType":"uint256","name":"lastUpdatedQuote","type":"uint256"}],"internalType":"struct IStdReference.ReferenceData[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ref","outputs":[{"internalType":"contract IStdReference","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IStdReference","name":"_ref","type":"address"}],"name":"setRef","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620012bf380380620012bf833981810160405281019062000037919062000182565b620000576200004b6200009f60201b60201c565b620000a760201b60201c565b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000210565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000815190506200017c81620001f6565b92915050565b6000602082840312156200019557600080fd5b6000620001a5848285016200016b565b91505092915050565b6000620001bb82620001d6565b9050919050565b6000620001cf82620001ae565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6200020181620001c2565b81146200020d57600080fd5b50565b61109f80620002206000396000f3fe608060405234801561001057600080fd5b506004361061007d5760003560e01c8063715018a61161005b578063715018a6146100ec5780638da5cb5b146100f6578063e42a071b14610114578063f2fde38b146101445761007d565b806321a78f681461008257806365555bcc146100a05780636bc855cc146100d0575b600080fd5b61008a610160565b6040516100979190610c42565b60405180910390f35b6100ba60048036038101906100b591906109a7565b610186565b6040516100c79190610cf4565b60405180910390f35b6100ea60048036038101906100e5919061097e565b610243565b005b6100f4610303565b005b6100fe61038b565b60405161010b9190610c05565b60405180910390f35b61012e60048036038101906101299190610912565b6103b4565b60405161013b9190610c20565b60405180910390f35b61015e600480360381019061015991906108e9565b610576565b005b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61018e61073a565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166365555bcc84846040518363ffffffff1660e01b81526004016101eb929190610c5d565b60606040518083038186803b15801561020357600080fd5b505afa158015610217573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023b9190610a13565b905092915050565b61024b61066e565b73ffffffffffffffffffffffffffffffffffffffff1661026961038b565b73ffffffffffffffffffffffffffffffffffffffff16146102bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016102b690610cd4565b60405180910390fd5b80600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61030b61066e565b73ffffffffffffffffffffffffffffffffffffffff1661032961038b565b73ffffffffffffffffffffffffffffffffffffffff161461037f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161037690610cd4565b60405180910390fd5b6103896000610676565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606081518351146103fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016103f190610c94565b60405180910390fd5b60008351905060008167ffffffffffffffff811115610442577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561047b57816020015b61046861073a565b8152602001906001900390816104605790505b50905060005b8281101561056a576105138682815181106104c5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151868381518110610506577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610186565b82828151811061054c577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181905250808061056290610ecb565b915050610481565b50809250505092915050565b61057e61066e565b73ffffffffffffffffffffffffffffffffffffffff1661059c61038b565b73ffffffffffffffffffffffffffffffffffffffff16146105f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e990610cd4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610662576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161065990610cb4565b60405180910390fd5b61066b81610676565b50565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60405180606001604052806000815260200160008152602001600081525090565b600061076e61076984610d34565b610d0f565b9050808382526020820190508260005b858110156107ae5781358501610794888261084a565b84526020840193506020830192505060018101905061077e565b5050509392505050565b60006107cb6107c684610d60565b610d0f565b9050828152602081018484840111156107e357600080fd5b6107ee848285610e58565b509392505050565b60008135905061080581611024565b92915050565b600082601f83011261081c57600080fd5b813561082c84826020860161075b565b91505092915050565b6000813590506108448161103b565b92915050565b600082601f83011261085b57600080fd5b813561086b8482602086016107b8565b91505092915050565b60006060828403121561088657600080fd5b6108906060610d0f565b905060006108a0848285016108d4565b60008301525060206108b4848285016108d4565b60208301525060406108c8848285016108d4565b60408301525092915050565b6000815190506108e381611052565b92915050565b6000602082840312156108fb57600080fd5b6000610909848285016107f6565b91505092915050565b6000806040838503121561092557600080fd5b600083013567ffffffffffffffff81111561093f57600080fd5b61094b8582860161080b565b925050602083013567ffffffffffffffff81111561096857600080fd5b6109748582860161080b565b9150509250929050565b60006020828403121561099057600080fd5b600061099e84828501610835565b91505092915050565b600080604083850312156109ba57600080fd5b600083013567ffffffffffffffff8111156109d457600080fd5b6109e08582860161084a565b925050602083013567ffffffffffffffff8111156109fd57600080fd5b610a098582860161084a565b9150509250929050565b600060608284031215610a2557600080fd5b6000610a3384828501610874565b91505092915050565b6000610a488383610b72565b60608301905092915050565b610a5d81610de6565b82525050565b6000610a6e82610da1565b610a788185610dc4565b9350610a8383610d91565b8060005b83811015610ab4578151610a9b8882610a3c565b9750610aa683610db7565b925050600181019050610a87565b5085935050505092915050565b610aca81610e34565b82525050565b6000610adb82610dac565b610ae58185610dd5565b9350610af5818560208601610e67565b610afe81610f72565b840191505092915050565b6000610b16601083610dd5565b9150610b2182610f83565b602082019050919050565b6000610b39602683610dd5565b9150610b4482610fac565b604082019050919050565b6000610b5c602083610dd5565b9150610b6782610ffb565b602082019050919050565b606082016000820151610b886000850182610bf6565b506020820151610b9b6020850182610bf6565b506040820151610bae6040850182610bf6565b50505050565b606082016000820151610bca6000850182610bf6565b506020820151610bdd6020850182610bf6565b506040820151610bf06040850182610bf6565b50505050565b610bff81610e2a565b82525050565b6000602082019050610c1a6000830184610a54565b92915050565b60006020820190508181036000830152610c3a8184610a63565b905092915050565b6000602082019050610c576000830184610ac1565b92915050565b60006040820190508181036000830152610c778185610ad0565b90508181036020830152610c8b8184610ad0565b90509392505050565b60006020820190508181036000830152610cad81610b09565b9050919050565b60006020820190508181036000830152610ccd81610b2c565b9050919050565b60006020820190508181036000830152610ced81610b4f565b9050919050565b6000606082019050610d096000830184610bb4565b92915050565b6000610d19610d2a565b9050610d258282610e9a565b919050565b6000604051905090565b600067ffffffffffffffff821115610d4f57610d4e610f43565b5b602082029050602081019050919050565b600067ffffffffffffffff821115610d7b57610d7a610f43565b5b610d8482610f72565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000610df182610e0a565b9050919050565b6000610e0382610de6565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000610e3f82610e46565b9050919050565b6000610e5182610e0a565b9050919050565b82818337600083830152505050565b60005b83811015610e85578082015181840152602081019050610e6a565b83811115610e94576000848401525b50505050565b610ea382610f72565b810181811067ffffffffffffffff82111715610ec257610ec1610f43565b5b80604052505050565b6000610ed682610e2a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415610f0957610f08610f14565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4241445f494e5055545f4c454e47544800000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b61102d81610de6565b811461103857600080fd5b50565b61104481610df8565b811461104f57600080fd5b50565b61105b81610e2a565b811461106657600080fd5b5056fea2646970667358221220f032e662868136b0c971e92953b33d75f80a96ae6339ea58b569e6d5051f130964736f6c63430008030033000000000000000000000000e89ea92aca177b487f9c3502a7cb9d76dc5f5d84

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

000000000000000000000000e89ea92aca177b487f9c3502a7cb9d76dc5f5d84

-----Decoded View---------------
Arg [0] : _ref (address): 0xe89ea92aca177b487f9c3502a7cb9d76dc5f5d84

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000e89ea92aca177b487f9c3502a7cb9d76dc5f5d84


Deployed ByteCode Sourcemap

4639:841:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4702:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5258:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4960:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2365:94;;;:::i;:::-;;1714:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4129:503;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2614:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4702:24;;;;;;;;;;;;;:::o;5258:219::-;5391:20;;:::i;:::-;5436:3;;;;;;;;;;;:20;;;5457:4;5463:5;5436:33;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;5429:40;;5258:219;;;;:::o;4960:82::-;1945:12;:10;:12::i;:::-;1934:23;;:7;:5;:7::i;:::-;:23;;;1926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5030:4:::1;5024:3;;:10;;;;;;;;;;;;;;;;;;4960:82:::0;:::o;2365:94::-;1945:12;:10;:12::i;:::-;1934:23;;:7;:5;:7::i;:::-;:23;;;1926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2430:21:::1;2448:1;2430:9;:21::i;:::-;2365:94::o:0;1714:87::-;1760:7;1787:6;;;;;;;;;;;1780:13;;1714:87;:::o;4129:503::-;4263:22;4323:7;:14;4306:6;:13;:31;4298:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;4369:11;4383:6;:13;4369:27;;4407:30;4460:3;4440:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;4407:57;;4480:11;4475:125;4503:3;4497;:9;4475:125;;;4545:43;4562:6;4569:3;4562:11;;;;;;;;;;;;;;;;;;;;;;4575:7;4583:3;4575:12;;;;;;;;;;;;;;;;;;;;;;4545:16;:43::i;:::-;4530:7;4538:3;4530:12;;;;;;;;;;;;;;;;;;;;;:58;;;;4508:5;;;;;:::i;:::-;;;;4475:125;;;;4617:7;4610:14;;;;4129:503;;;;:::o;2614:192::-;1945:12;:10;:12::i;:::-;1934:23;;:7;:5;:7::i;:::-;:23;;;1926:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2723:1:::1;2703:22;;:8;:22;;;;2695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2779:19;2789:8;2779:9;:19::i;:::-;2614:192:::0;:::o;590:98::-;643:7;670:10;663:17;;590:98;:::o;2814:173::-;2870:16;2889:6;;;;;;;;;;;2870:25;;2915:8;2906:6;;:17;;;;;;;;;;;;;;;;;;2970:8;2939:40;;2960:8;2939:40;;;;;;;;;;;;2814:173;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;23:616:1:-;;154:91;170:74;237:6;170:74;:::i;:::-;154:91;:::i;:::-;145:100;;265:5;293:6;286:5;279:21;319:4;312:5;308:16;301:23;;344:6;375:1;360:273;385:6;382:1;379:13;360:273;;;477:3;464:17;456:6;452:30;507:47;550:3;538:10;507:47;:::i;:::-;502:3;495:60;584:4;579:3;575:14;568:21;;618:4;613:3;609:14;602:21;;420:213;407:1;404;400:9;395:14;;360:273;;;364:14;135:504;;;;;;;:::o;645:345::-;;748:66;764:49;806:6;764:49;:::i;:::-;748:66;:::i;:::-;739:75;;837:6;830:5;823:21;875:4;868:5;864:16;913:3;904:6;899:3;895:16;892:25;889:2;;;930:1;927;920:12;889:2;943:41;977:6;972:3;967;943:41;:::i;:::-;729:261;;;;;;:::o;996:139::-;;1080:6;1067:20;1058:29;;1096:33;1123:5;1096:33;:::i;:::-;1048:87;;;;:::o;1157:323::-;;1287:3;1280:4;1272:6;1268:17;1264:27;1254:2;;1305:1;1302;1295:12;1254:2;1345:6;1332:20;1370:104;1470:3;1462:6;1455:4;1447:6;1443:17;1370:104;:::i;:::-;1361:113;;1244:236;;;;;:::o;1486:181::-;;1591:6;1578:20;1569:29;;1607:54;1655:5;1607:54;:::i;:::-;1559:108;;;;:::o;1687:273::-;;1792:3;1785:4;1777:6;1773:17;1769:27;1759:2;;1810:1;1807;1800:12;1759:2;1850:6;1837:20;1875:79;1950:3;1942:6;1935:4;1927:6;1923:17;1875:79;:::i;:::-;1866:88;;1749:211;;;;;:::o;2008:740::-;;2142:4;2130:9;2125:3;2121:19;2117:30;2114:2;;;2160:1;2157;2150:12;2114:2;2182:21;2198:4;2182:21;:::i;:::-;2173:30;;2262:1;2302:60;2358:3;2349:6;2338:9;2334:22;2302:60;:::i;:::-;2295:4;2288:5;2284:16;2277:86;2213:161;2444:2;2485:60;2541:3;2532:6;2521:9;2517:22;2485:60;:::i;:::-;2478:4;2471:5;2467:16;2460:86;2384:173;2628:2;2669:60;2725:3;2716:6;2705:9;2701:22;2669:60;:::i;:::-;2662:4;2655:5;2651:16;2644:86;2567:174;2104:644;;;;:::o;2754:143::-;;2842:6;2836:13;2827:22;;2858:33;2885:5;2858:33;:::i;:::-;2817:80;;;;:::o;2903:262::-;;3011:2;2999:9;2990:7;2986:23;2982:32;2979:2;;;3027:1;3024;3017:12;2979:2;3070:1;3095:53;3140:7;3131:6;3120:9;3116:22;3095:53;:::i;:::-;3085:63;;3041:117;2969:196;;;;:::o;3171:733::-;;;3366:2;3354:9;3345:7;3341:23;3337:32;3334:2;;;3382:1;3379;3372:12;3334:2;3453:1;3442:9;3438:17;3425:31;3483:18;3475:6;3472:30;3469:2;;;3515:1;3512;3505:12;3469:2;3543:88;3623:7;3614:6;3603:9;3599:22;3543:88;:::i;:::-;3533:98;;3396:245;3708:2;3697:9;3693:18;3680:32;3739:18;3731:6;3728:30;3725:2;;;3771:1;3768;3761:12;3725:2;3799:88;3879:7;3870:6;3859:9;3855:22;3799:88;:::i;:::-;3789:98;;3651:246;3324:580;;;;;:::o;3910:304::-;;4039:2;4027:9;4018:7;4014:23;4010:32;4007:2;;;4055:1;4052;4045:12;4007:2;4098:1;4123:74;4189:7;4180:6;4169:9;4165:22;4123:74;:::i;:::-;4113:84;;4069:138;3997:217;;;;:::o;4220:633::-;;;4365:2;4353:9;4344:7;4340:23;4336:32;4333:2;;;4381:1;4378;4371:12;4333:2;4452:1;4441:9;4437:17;4424:31;4482:18;4474:6;4471:30;4468:2;;;4514:1;4511;4504:12;4468:2;4542:63;4597:7;4588:6;4577:9;4573:22;4542:63;:::i;:::-;4532:73;;4395:220;4682:2;4671:9;4667:18;4654:32;4713:18;4705:6;4702:30;4699:2;;;4745:1;4742;4735:12;4699:2;4773:63;4828:7;4819:6;4808:9;4804:22;4773:63;:::i;:::-;4763:73;;4625:221;4323:530;;;;;:::o;4859:344::-;;5008:2;4996:9;4987:7;4983:23;4979:32;4976:2;;;5024:1;5021;5014:12;4976:2;5067:1;5092:94;5178:7;5169:6;5158:9;5154:22;5092:94;:::i;:::-;5082:104;;5038:158;4966:237;;;;:::o;5209:299::-;;5359:106;5461:3;5453:6;5359:106;:::i;:::-;5497:4;5492:3;5488:14;5474:28;;5349:159;;;;:::o;5514:118::-;5601:24;5619:5;5601:24;:::i;:::-;5596:3;5589:37;5579:53;;:::o;5722:972::-;;5930:84;6008:5;5930:84;:::i;:::-;6030:116;6139:6;6134:3;6030:116;:::i;:::-;6023:123;;6170:86;6250:5;6170:86;:::i;:::-;6279:7;6310:1;6295:374;6320:6;6317:1;6314:13;6295:374;;;6396:6;6390:13;6423:123;6542:3;6527:13;6423:123;:::i;:::-;6416:130;;6569:90;6652:6;6569:90;:::i;:::-;6559:100;;6355:314;6342:1;6339;6335:9;6330:14;;6295:374;;;6299:14;6685:3;6678:10;;5906:788;;;;;;;:::o;6700:173::-;6808:58;6860:5;6808:58;:::i;:::-;6803:3;6796:71;6786:87;;:::o;6879:364::-;;6995:39;7028:5;6995:39;:::i;:::-;7050:71;7114:6;7109:3;7050:71;:::i;:::-;7043:78;;7130:52;7175:6;7170:3;7163:4;7156:5;7152:16;7130:52;:::i;:::-;7207:29;7229:6;7207:29;:::i;:::-;7202:3;7198:39;7191:46;;6971:272;;;;;:::o;7249:366::-;;7412:67;7476:2;7471:3;7412:67;:::i;:::-;7405:74;;7488:93;7577:3;7488:93;:::i;:::-;7606:2;7601:3;7597:12;7590:19;;7395:220;;;:::o;7621:366::-;;7784:67;7848:2;7843:3;7784:67;:::i;:::-;7777:74;;7860:93;7949:3;7860:93;:::i;:::-;7978:2;7973:3;7969:12;7962:19;;7767:220;;;:::o;7993:366::-;;8156:67;8220:2;8215:3;8156:67;:::i;:::-;8149:74;;8232:93;8321:3;8232:93;:::i;:::-;8350:2;8345:3;8341:12;8334:19;;8139:220;;;:::o;8445:704::-;8592:4;8587:3;8583:14;8679:4;8672:5;8668:16;8662:23;8698:63;8755:4;8750:3;8746:14;8732:12;8698:63;:::i;:::-;8607:164;8864:4;8857:5;8853:16;8847:23;8883:63;8940:4;8935:3;8931:14;8917:12;8883:63;:::i;:::-;8781:175;9050:4;9043:5;9039:16;9033:23;9069:63;9126:4;9121:3;9117:14;9103:12;9069:63;:::i;:::-;8966:176;8561:588;;;:::o;9235:714::-;9392:4;9387:3;9383:14;9479:4;9472:5;9468:16;9462:23;9498:63;9555:4;9550:3;9546:14;9532:12;9498:63;:::i;:::-;9407:164;9664:4;9657:5;9653:16;9647:23;9683:63;9740:4;9735:3;9731:14;9717:12;9683:63;:::i;:::-;9581:175;9850:4;9843:5;9839:16;9833:23;9869:63;9926:4;9921:3;9917:14;9903:12;9869:63;:::i;:::-;9766:176;9361:588;;;:::o;9955:108::-;10032:24;10050:5;10032:24;:::i;:::-;10027:3;10020:37;10010:53;;:::o;10069:222::-;;10200:2;10189:9;10185:18;10177:26;;10213:71;10281:1;10270:9;10266:17;10257:6;10213:71;:::i;:::-;10167:124;;;;:::o;10297:493::-;;10538:2;10527:9;10523:18;10515:26;;10587:9;10581:4;10577:20;10573:1;10562:9;10558:17;10551:47;10615:168;10778:4;10769:6;10615:168;:::i;:::-;10607:176;;10505:285;;;;:::o;10796:264::-;;10948:2;10937:9;10933:18;10925:26;;10961:92;11050:1;11039:9;11035:17;11026:6;10961:92;:::i;:::-;10915:145;;;;:::o;11066:514::-;;11265:2;11254:9;11250:18;11242:26;;11314:9;11308:4;11304:20;11300:1;11289:9;11285:17;11278:47;11342:78;11415:4;11406:6;11342:78;:::i;:::-;11334:86;;11467:9;11461:4;11457:20;11452:2;11441:9;11437:18;11430:48;11495:78;11568:4;11559:6;11495:78;:::i;:::-;11487:86;;11232:348;;;;;:::o;11586:419::-;;11790:2;11779:9;11775:18;11767:26;;11839:9;11833:4;11829:20;11825:1;11814:9;11810:17;11803:47;11867:131;11993:4;11867:131;:::i;:::-;11859:139;;11757:248;;;:::o;12011:419::-;;12215:2;12204:9;12200:18;12192:26;;12264:9;12258:4;12254:20;12250:1;12239:9;12235:17;12228:47;12292:131;12418:4;12292:131;:::i;:::-;12284:139;;12182:248;;;:::o;12436:419::-;;12640:2;12629:9;12625:18;12617:26;;12689:9;12683:4;12679:20;12675:1;12664:9;12660:17;12653:47;12717:131;12843:4;12717:131;:::i;:::-;12709:139;;12607:248;;;:::o;12861:342::-;;13052:2;13041:9;13037:18;13029:26;;13065:131;13193:1;13182:9;13178:17;13169:6;13065:131;:::i;:::-;13019:184;;;;:::o;13209:129::-;;13270:20;;:::i;:::-;13260:30;;13299:33;13327:4;13319:6;13299:33;:::i;:::-;13250:88;;;:::o;13344:75::-;;13410:2;13404:9;13394:19;;13384:35;:::o;13425:321::-;;13602:18;13594:6;13591:30;13588:2;;;13624:18;;:::i;:::-;13588:2;13674:4;13666:6;13662:17;13654:25;;13734:4;13728;13724:15;13716:23;;13517:229;;;:::o;13752:308::-;;13904:18;13896:6;13893:30;13890:2;;;13926:18;;:::i;:::-;13890:2;13964:29;13986:6;13964:29;:::i;:::-;13956:37;;14048:4;14042;14038:15;14030:23;;13819:241;;;:::o;14066:162::-;;14186:3;14178:11;;14216:4;14211:3;14207:14;14199:22;;14168:60;;;:::o;14234:144::-;;14365:5;14359:12;14349:22;;14338:40;;;:::o;14384:99::-;;14470:5;14464:12;14454:22;;14443:40;;;:::o;14489:143::-;;14621:4;14616:3;14612:14;14604:22;;14594:38;;;:::o;14638:214::-;;14801:6;14796:3;14789:19;14841:4;14836:3;14832:14;14817:29;;14779:73;;;;:::o;14858:169::-;;14976:6;14971:3;14964:19;15016:4;15011:3;15007:14;14992:29;;14954:73;;;;:::o;15033:96::-;;15099:24;15117:5;15099:24;:::i;:::-;15088:35;;15078:51;;;:::o;15135:117::-;;15222:24;15240:5;15222:24;:::i;:::-;15211:35;;15201:51;;;:::o;15258:126::-;;15335:42;15328:5;15324:54;15313:65;;15303:81;;;:::o;15390:77::-;;15456:5;15445:16;;15435:32;;;:::o;15473:168::-;;15577:58;15629:5;15577:58;:::i;:::-;15564:71;;15554:87;;;:::o;15647:134::-;;15751:24;15769:5;15751:24;:::i;:::-;15738:37;;15728:53;;;:::o;15787:154::-;15871:6;15866:3;15861;15848:30;15933:1;15924:6;15919:3;15915:16;15908:27;15838:103;;;:::o;15947:307::-;16015:1;16025:113;16039:6;16036:1;16033:13;16025:113;;;16124:1;16119:3;16115:11;16109:18;16105:1;16100:3;16096:11;16089:39;16061:2;16058:1;16054:10;16049:15;;16025:113;;;16156:6;16153:1;16150:13;16147:2;;;16236:1;16227:6;16222:3;16218:16;16211:27;16147:2;15996:258;;;;:::o;16260:281::-;16343:27;16365:4;16343:27;:::i;:::-;16335:6;16331:40;16473:6;16461:10;16458:22;16437:18;16425:10;16422:34;16419:62;16416:2;;;16484:18;;:::i;:::-;16416:2;16524:10;16520:2;16513:22;16303:238;;;:::o;16547:233::-;;16609:24;16627:5;16609:24;:::i;:::-;16600:33;;16655:66;16648:5;16645:77;16642:2;;;16725:18;;:::i;:::-;16642:2;16772:1;16765:5;16761:13;16754:20;;16590:190;;;:::o;16786:180::-;16834:77;16831:1;16824:88;16931:4;16928:1;16921:15;16955:4;16952:1;16945:15;16972:180;17020:77;17017:1;17010:88;17117:4;17114:1;17107:15;17141:4;17138:1;17131:15;17158:102;;17250:2;17246:7;17241:2;17234:5;17230:14;17226:28;17216:38;;17206:54;;;:::o;17266:166::-;17406:18;17402:1;17394:6;17390:14;17383:42;17372:60;:::o;17438:225::-;17578:34;17574:1;17566:6;17562:14;17555:58;17647:8;17642:2;17634:6;17630:15;17623:33;17544:119;:::o;17669:182::-;17809:34;17805:1;17797:6;17793:14;17786:58;17775:76;:::o;17857:122::-;17930:24;17948:5;17930:24;:::i;:::-;17923:5;17920:35;17910:2;;17969:1;17966;17959:12;17910:2;17900:79;:::o;17985:164::-;18079:45;18118:5;18079:45;:::i;:::-;18072:5;18069:56;18059:2;;18139:1;18136;18129:12;18059:2;18049:100;:::o;18155:122::-;18228:24;18246:5;18228:24;:::i;:::-;18221:5;18218:35;18208:2;;18267:1;18264;18257:12;18208:2;18198:79;:::o

Swarm Source

ipfs://f032e662868136b0c971e92953b33d75f80a96ae6339ea58b569e6d5051f1309
Block Transaction Gas Used Reward
Age Block Fee Address BC Fee Address Voting Power Jailed Incoming
Block Uncle Number Difficulty Gas Used Reward
Loading
Loading
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.