ETH Price: $3,002.40 (+5.31%)
Gas: 2 Gwei

Token

Onyx PAXG (oPAXG)
 

Overview

Max Total Supply

6,013.00702894 oPAXG

Holders

14

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 8 Decimals)

Balance
8.06131454 oPAXG

Value
$0.00
0xf4e607c9b0d20e8cb4823ff66d54ab0f7ac21067
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

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

Contract Name:
OErc20Delegator

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-03-01
*/

// File: contracts/ComptrollerInterface.sol

pragma solidity ^0.5.16;


contract ComptrollerInterface {
    /// @notice Indicator that this is a Comptroller contract (for inspection)
    bool public constant isComptroller = true;

    /*** Assets You Are In ***/

    function enterMarkets(address[] calldata oTokens) external returns (uint[] memory);
    function exitMarket(address oToken) external returns (uint);

    /*** Policy Hooks ***/

    function mintAllowed(address oToken, address minter, uint mintAmount) external returns (uint);
    function mintVerify(address oToken, address minter, uint mintAmount, uint mintTokens) external;

    function redeemAllowed(address oToken, address redeemer, uint redeemTokens) external returns (uint);
    function redeemVerify(address oToken, address redeemer, uint redeemAmount, uint redeemTokens) external;

    function borrowAllowed(address oToken, address borrower, uint borrowAmount) external returns (uint);
    function borrowVerify(address oToken, address borrower, uint borrowAmount) external;

    function repayBorrowAllowed(
        address oToken,
        address payer,
        address borrower,
        uint repayAmount) external returns (uint);
    function repayBorrowVerify(
        address oToken,
        address payer,
        address borrower,
        uint repayAmount,
        uint borrowerIndex) external;

    function liquidateBorrowAllowed(
        address oTokenBorrowed,
        address oTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount) external returns (uint);
    function liquidateBorrowVerify(
        address oTokenBorrowed,
        address oTokenCollateral,
        address liquidator,
        address borrower,
        uint repayAmount,
        uint seizeTokens) external;

    function seizeAllowed(
        address oTokenCollateral,
        address oTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external returns (uint);
    function seizeVerify(
        address oTokenCollateral,
        address oTokenBorrowed,
        address liquidator,
        address borrower,
        uint seizeTokens) external;

    function transferAllowed(address oToken, address src, address dst, uint transferTokens) external returns (uint);
    function transferVerify(address oToken, address src, address dst, uint transferTokens) external;

    /*** Liquidity/Liquidation Calculations ***/

    function liquidateCalculateSeizeTokens(
        address oTokenBorrowed,
        address oTokenCollateral,
        uint repayAmount) external view returns (uint, uint);

}

// File: contracts/InterestRateModel.sol

pragma solidity ^0.5.16;

/**
  * @title Onyx's InterestRateModel Interface
  * @author Onyx
  */
contract InterestRateModel {
    /// @notice Indicator that this is an InterestRateModel contract (for inspection)
    bool public constant isInterestRateModel = true;

    /**
      * @notice Calculates the current borrow interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @return The borrow rate per block (as a percentage, and scaled by 1e18)
      */
    function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint);

    /**
      * @notice Calculates the current supply interest rate per block
      * @param cash The total amount of cash the market has
      * @param borrows The total amount of borrows the market has outstanding
      * @param reserves The total amount of reserves the market has
      * @param reserveFactorMantissa The current reserve factor the market has
      * @return The supply rate per block (as a percentage, and scaled by 1e18)
      */
    function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint);

}

// File: contracts/EIP20NonStandardInterface.sol

pragma solidity ^0.5.16;

/**
 * @title EIP20NonStandardInterface
 * @dev Version of ERC20 with no return values for `transfer` and `transferFrom`
 *  See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca
 */
interface EIP20NonStandardInterface {

    /**
     * @notice Get the total number of tokens in circulation
     * @return The supply of tokens
     */
    function totalSupply() external view returns (uint256);

    /**
     * @notice Gets the balance of the specified address
     * @param owner The address from which the balance will be retrieved
     * @return The balance
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @notice Transfer `amount` tokens from `msg.sender` to `dst`
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      */
    function transfer(address dst, uint256 amount) external;

    ///
    /// !!!!!!!!!!!!!!
    /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification
    /// !!!!!!!!!!!!!!
    ///

    /**
      * @notice Transfer `amount` tokens from `src` to `dst`
      * @param src The address of the source account
      * @param dst The address of the destination account
      * @param amount The number of tokens to transfer
      */
    function transferFrom(address src, address dst, uint256 amount) external;

    /**
      * @notice Approve `spender` to transfer up to `amount` from `src`
      * @dev This will overwrite the approval amount for `spender`
      *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
      * @param spender The address of the account which may transfer tokens
      * @param amount The number of tokens that are approved
      * @return Whether or not the approval succeeded
      */
    function approve(address spender, uint256 amount) external returns (bool success);

    /**
      * @notice Get the current allowance from `owner` for `spender`
      * @param owner The address of the account which owns the tokens to be spent
      * @param spender The address of the account which may transfer tokens
      * @return The number of tokens allowed to be spent
      */
    function allowance(address owner, address spender) external view returns (uint256 remaining);

    event Transfer(address indexed from, address indexed to, uint256 amount);
    event Approval(address indexed owner, address indexed spender, uint256 amount);
}

// File: contracts/OTokenInterfaces.sol

pragma solidity ^0.5.16;



contract OTokenStorage {
    /**
     * @dev Guard variable for re-entrancy checks
     */
    bool internal _notEntered;

    /**
     * @notice EIP-20 token name for this token
     */
    string public name;

    /**
     * @notice EIP-20 token symbol for this token
     */
    string public symbol;

    /**
     * @notice EIP-20 token decimals for this token
     */
    uint8 public decimals;

    /**
     * @notice Maximum borrow rate that can ever be applied (.0005% / block)
     */

    uint internal constant borrowRateMaxMantissa = 0.0005e16;

    /**
     * @notice Maximum fraction of interest that can be set aside for reserves
     */
    uint internal constant reserveFactorMaxMantissa = 1e18;

    /**
     * @notice Administrator for this contract
     */
    address payable public admin;

    /**
     * @notice Pending administrator for this contract
     */
    address payable public pendingAdmin;

    /**
     * @notice Contract which oversees inter-oToken operations
     */
    ComptrollerInterface public comptroller;

    /**
     * @notice Model which tells what the current interest rate should be
     */
    InterestRateModel public interestRateModel;

    /**
     * @notice Initial exchange rate used when minting the first OTokens (used when totalSupply = 0)
     */
    uint internal initialExchangeRateMantissa;

    /**
     * @notice Fraction of interest currently set aside for reserves
     */
    uint public reserveFactorMantissa;

    /**
     * @notice Block number that interest was last accrued at
     */
    uint public accrualBlockNumber;

    /**
     * @notice Accumulator of the total earned interest rate since the opening of the market
     */
    uint public borrowIndex;

    /**
     * @notice Total amount of outstanding borrows of the underlying in this market
     */
    uint public totalBorrows;

    /**
     * @notice Total amount of reserves of the underlying held in this market
     */
    uint public totalReserves;

    /**
     * @notice Total number of tokens in circulation
     */
    uint public totalSupply;

    /**
     * @notice Official record of token balances for each account
     */
    mapping (address => uint) internal accountTokens;

    /**
     * @notice Approved token transfer amounts on behalf of others
     */
    mapping (address => mapping (address => uint)) internal transferAllowances;

    /**
     * @notice Container for borrow balance information
     * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action
     * @member interestIndex Global borrowIndex as of the most recent balance-changing action
     */
    struct BorrowSnapshot {
        uint principal;
        uint interestIndex;
    }

    /**
     * @notice Mapping of account addresses to outstanding borrow balances
     */
    mapping(address => BorrowSnapshot) internal accountBorrows;

    /**
     * @notice Share of seized collateral that is added to reserves
     */
    uint public constant protocolSeizeShareMantissa = 2.8e16; //2.8%

}

contract OTokenInterface is OTokenStorage {
    /**
     * @notice Indicator that this is a OToken contract (for inspection)
     */
    bool public constant isOToken = true;


    /*** Market Events ***/

    /**
     * @notice Event emitted when interest is accrued
     */
    event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows);

    /**
     * @notice Event emitted when tokens are minted
     */
    event Mint(address minter, uint mintAmount, uint mintTokens);

    /**
     * @notice Event emitted when tokens are redeemed
     */
    event Redeem(address redeemer, uint redeemAmount, uint redeemTokens);

    /**
     * @notice Event emitted when underlying is borrowed
     */
    event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows);

    /**
     * @notice Event emitted when a borrow is repaid
     */
    event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows);

    /**
     * @notice Event emitted when a borrow is liquidated
     */
    event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address oTokenCollateral, uint seizeTokens);


    /*** Admin Events ***/

    /**
     * @notice Event emitted when pendingAdmin is changed
     */
    event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin);

    /**
     * @notice Event emitted when pendingAdmin is accepted, which means admin is updated
     */
    event NewAdmin(address oldAdmin, address newAdmin);

    /**
     * @notice Event emitted when comptroller is changed
     */
    event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller);

    /**
     * @notice Event emitted when interestRateModel is changed
     */
    event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel);

    /**
     * @notice Event emitted when the reserve factor is changed
     */
    event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa);

    /**
     * @notice Event emitted when the reserves are added
     */
    event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves);

    /**
     * @notice Event emitted when the reserves are reduced
     */
    event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves);

    /**
     * @notice EIP20 Transfer event
     */
    event Transfer(address indexed from, address indexed to, uint amount);

    /**
     * @notice EIP20 Approval event
     */
    event Approval(address indexed owner, address indexed spender, uint amount);

    /**
     * @notice Failure event
     */
    event Failure(uint error, uint info, uint detail);


    /*** User Interface ***/

    function transfer(address dst, uint amount) external returns (bool);
    function transferFrom(address src, address dst, uint amount) external returns (bool);
    function approve(address spender, uint amount) external returns (bool);
    function allowance(address owner, address spender) external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function balanceOfUnderlying(address owner) external returns (uint);
    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint);
    function borrowRatePerBlock() external view returns (uint);
    function supplyRatePerBlock() external view returns (uint);
    function totalBorrowsCurrent() external returns (uint);
    function borrowBalanceCurrent(address account) external returns (uint);
    function borrowBalanceStored(address account) public view returns (uint);
    function exchangeRateCurrent() public returns (uint);
    function exchangeRateStored() public view returns (uint);
    function getCash() external view returns (uint);
    function accrueInterest() public returns (uint);
    function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint);


    /*** Admin Functions ***/

    function _setPendingAdmin(address payable newPendingAdmin) external returns (uint);
    function _acceptAdmin() external returns (uint);
    function _setComptroller(ComptrollerInterface newComptroller) public returns (uint);
    function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint);
    function _reduceReserves(uint reduceAmount) external returns (uint);
    function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint);
}

contract OErc20Storage {
    /**
     * @notice Underlying asset for this OToken
     */
    address public underlying;
}

contract OErc20Interface is OErc20Storage {

    /*** User Interface ***/

    function mint(uint mintAmount) external returns (uint);
    function redeem(uint redeemTokens) external returns (uint);
    function redeemUnderlying(uint redeemAmount) external returns (uint);
    function borrow(uint borrowAmount) external returns (uint);
    function repayBorrow(uint repayAmount) external returns (uint);
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint);
    function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint);
    function sweepToken(EIP20NonStandardInterface token) external;


    /*** Admin Functions ***/

    function _addReserves(uint addAmount) external returns (uint);
}

contract OErc721Storage {
    /**
     * @notice Underlying asset for this OToken
     */
    address public underlying;

    /**
     * @dev User deposit tokens map
     */
    mapping (address => uint256[]) public userTokens;
}

contract OErc721Interface is OErc721Storage {

    /*** User Interface ***/

    function mint(uint tokenId) external returns (uint);
    function redeem(uint redeemTokens) external returns (uint);
    function mints(uint[] calldata tokenIds) external returns (uint[] memory);
    function redeems(uint[] calldata redeemTokenIds) external returns (uint[] memory);
    function redeemUnderlying(uint redeemAmount) external returns (uint);
    function borrow(uint borrowAmount) external returns (uint);
    function repayBorrow(uint repayAmount) external returns (uint);
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint);
    function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint);
    function sweepToken(EIP20NonStandardInterface token) external;
}

contract ODelegationStorage {
    /**
     * @notice Implementation address for this contract
     */
    address public implementation;
}

contract ODelegatorInterface is ODelegationStorage {
    /**
     * @notice Emitted when implementation is changed
     */
    event NewImplementation(address oldImplementation, address newImplementation);

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public;
}

contract ODelegateInterface is ODelegationStorage {
    /**
     * @notice Called by the delegator on a delegate to initialize it for duty
     * @dev Should revert if any issues arise which make it unfit for delegation
     * @param data The encoded bytes data for any initialization
     */
    function _becomeImplementation(bytes memory data) public;

    /**
     * @notice Called by the delegator on a delegate to forfeit its responsibility
     */
    function _resignImplementation() public;
}

// File: contracts/OErc20Delegator.sol

pragma solidity ^0.5.16;

/**
 * @title Onyx's OErc20Delegator Contract
 * @notice OTokens which wrap an EIP-20 underlying and delegate to an implementation
 * @author Onyx
 */
contract OErc20Delegator is OTokenInterface, OErc20Interface, ODelegatorInterface {
    /**
     * @notice Construct a new money market
     * @param underlying_ The address of the underlying asset
     * @param comptroller_ The address of the Comptroller
     * @param interestRateModel_ The address of the interest rate model
     * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18
     * @param name_ ERC-20 name of this token
     * @param symbol_ ERC-20 symbol of this token
     * @param decimals_ ERC-20 decimal precision of this token
     * @param admin_ Address of the administrator of this token
     * @param implementation_ The address of the implementation the contract delegates to
     * @param becomeImplementationData The encoded args for becomeImplementation
     */
    constructor(address underlying_,
                ComptrollerInterface comptroller_,
                InterestRateModel interestRateModel_,
                uint initialExchangeRateMantissa_,
                string memory name_,
                string memory symbol_,
                uint8 decimals_,
                address payable admin_,
                address implementation_,
                bytes memory becomeImplementationData) public {
        require(admin_ != address(0), "invalid admin address");
        require(implementation_ != address(0), "invalid implementation address");

        // Creator of the contract is admin during initialization
        admin = msg.sender;

        // First delegate gets to initialize the delegator (i.e. storage contract)
        delegateTo(implementation_, abi.encodeWithSignature("initialize(address,address,address,uint256,string,string,uint8)",
                                                            underlying_,
                                                            comptroller_,
                                                            interestRateModel_,
                                                            initialExchangeRateMantissa_,
                                                            name_,
                                                            symbol_,
                                                            decimals_));

        // New implementations always get set via the settor (post-initialize)
        _setImplementation(implementation_, false, becomeImplementationData);

        // Set the proper admin now that initialization is done
        admin = admin_;
    }

    /**
     * @notice Called by the admin to update the implementation of the delegator
     * @param implementation_ The address of the new implementation for delegation
     * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation
     * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation
     */
    function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public {
        require(implementation_ != address(0), "invalid implementation address");

        require(msg.sender == admin, "OErc20Delegator::_setImplementation: Caller must be admin");

        if (allowResign) {
            delegateToImplementation(abi.encodeWithSignature("_resignImplementation()"));
        }

        address oldImplementation = implementation;
        implementation = implementation_;

        delegateToImplementation(abi.encodeWithSignature("_becomeImplementation(bytes)", becomeImplementationData));

        emit NewImplementation(oldImplementation, implementation);
    }

    /**
     * @notice Sender supplies assets into the market and receives oTokens in exchange
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param mintAmount The amount of the underlying asset to supply
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function mint(uint mintAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("mint(uint256)", mintAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems oTokens in exchange for the underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemTokens The number of oTokens to redeem into underlying
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeem(uint redeemTokens) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeem(uint256)", redeemTokens));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender redeems oTokens in exchange for a specified amount of underlying asset
     * @dev Accrues interest whether or not the operation succeeds, unless reverted
     * @param redeemAmount The amount of underlying to redeem
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function redeemUnderlying(uint redeemAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("redeemUnderlying(uint256)", redeemAmount));
        return abi.decode(data, (uint));
    }

    /**
      * @notice Sender borrows assets from the protocol to their own address
      * @param borrowAmount The amount of the underlying asset to borrow
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function borrow(uint borrowAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrow(uint256)", borrowAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender repays their own borrow
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrow(uint repayAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("repayBorrow(uint256)", repayAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Sender repays a borrow belonging to borrower
     * @param borrower the account with the debt being payed off
     * @param repayAmount The amount to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("repayBorrowBehalf(address,uint256)", borrower, repayAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice The sender liquidates the borrowers collateral.
     *  The collateral seized is transferred to the liquidator.
     * @param borrower The borrower of this oToken to be liquidated
     * @param oTokenCollateral The market in which to seize collateral from the borrower
     * @param repayAmount The amount of the underlying borrowed asset to repay
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("liquidateBorrow(address,uint256,address)", borrower, repayAmount, oTokenCollateral));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Transfer `amount` tokens from `msg.sender` to `dst`
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transfer(address dst, uint amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transfer(address,uint256)", dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Transfer `amount` tokens from `src` to `dst`
     * @param src The address of the source account
     * @param dst The address of the destination account
     * @param amount The number of tokens to transfer
     * @return Whether or not the transfer succeeded
     */
    function transferFrom(address src, address dst, uint256 amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("transferFrom(address,address,uint256)", src, dst, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Approve `spender` to transfer up to `amount` from `src`
     * @dev This will overwrite the approval amount for `spender`
     *  and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve)
     * @param spender The address of the account which may transfer tokens
     * @param amount The number of tokens that are approved (-1 means infinite)
     * @return Whether or not the approval succeeded
     */
    function approve(address spender, uint256 amount) external returns (bool) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("approve(address,uint256)", spender, amount));
        return abi.decode(data, (bool));
    }

    /**
     * @notice Get the current allowance from `owner` for `spender`
     * @param owner The address of the account which owns the tokens to be spent
     * @param spender The address of the account which may transfer tokens
     * @return The number of tokens allowed to be spent (-1 means infinite)
     */
    function allowance(address owner, address spender) external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("allowance(address,address)", owner, spender));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get the token balance of the `owner`
     * @param owner The address of the account to query
     * @return The number of tokens owned by `owner`
     */
    function balanceOf(address owner) external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("balanceOf(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get the underlying balance of the `owner`
     * @dev This also accrues interest in a transaction
     * @param owner The address of the account to query
     * @return The amount of underlying owned by `owner`
     */
    function balanceOfUnderlying(address owner) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("balanceOfUnderlying(address)", owner));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get a snapshot of the account's balances, and the cached exchange rate
     * @dev This is used by comptroller to more efficiently perform liquidity checks.
     * @param account Address of the account to snapshot
     * @return (possible error, token balance, borrow balance, exchange rate mantissa)
     */
    function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getAccountSnapshot(address)", account));
        return abi.decode(data, (uint, uint, uint, uint));
    }

    /**
     * @notice Returns the current per-block borrow interest rate for this oToken
     * @return The borrow interest rate per block, scaled by 1e18
     */
    function borrowRatePerBlock() external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Returns the current per-block supply interest rate for this oToken
     * @return The supply interest rate per block, scaled by 1e18
     */
    function supplyRatePerBlock() external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("supplyRatePerBlock()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Returns the current total borrows plus accrued interest
     * @return The total borrows with interest
     */
    function totalBorrowsCurrent() external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("totalBorrowsCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrue interest to updated borrowIndex and then calculate account's borrow balance using the updated borrowIndex
     * @param account The address whose balance should be calculated after updating borrowIndex
     * @return The calculated balance
     */
    function borrowBalanceCurrent(address account) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("borrowBalanceCurrent(address)", account));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Return the borrow balance of account based on stored data
     * @param account The address whose balance should be calculated
     * @return The calculated balance
     */
    function borrowBalanceStored(address account) public view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("borrowBalanceStored(address)", account));
        return abi.decode(data, (uint));
    }

   /**
     * @notice Accrue interest then return the up-to-date exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateCurrent() public returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("exchangeRateCurrent()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Calculates the exchange rate from the underlying to the OToken
     * @dev This function does not accrue interest before calculating the exchange rate
     * @return Calculated exchange rate scaled by 1e18
     */
    function exchangeRateStored() public view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("exchangeRateStored()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Get cash balance of this oToken in the underlying asset
     * @return The quantity of underlying asset owned by this contract
     */
    function getCash() external view returns (uint) {
        bytes memory data = delegateToViewImplementation(abi.encodeWithSignature("getCash()"));
        return abi.decode(data, (uint));
    }

    /**
      * @notice Applies accrued interest to total borrows and reserves.
      * @dev This calculates interest accrued from the last checkpointed block
      *      up to the current block and writes new checkpoint to storage.
      */
    function accrueInterest() public returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("accrueInterest()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Transfers collateral tokens (this market) to the liquidator.
     * @dev Will fail unless called by another oToken during the process of liquidation.
     *  Its absolutely critical to use msg.sender as the borrowed oToken and not a parameter.
     * @param liquidator The account receiving seized collateral
     * @param borrower The account having collateral seized
     * @param seizeTokens The number of oTokens to seize
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("seize(address,address,uint256)", liquidator, borrower, seizeTokens));
        return abi.decode(data, (uint));
    }

    /**
     * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock)
     * @param token The address of the ERC-20 token to sweep
     */
    function sweepToken(EIP20NonStandardInterface token) external {
        delegateToImplementation(abi.encodeWithSignature("sweepToken(address)", token));
    }


    /*** Admin Functions ***/

    /**
      * @notice Begins transfer of admin rights. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
      * @dev Admin function to begin change of admin. The newPendingAdmin must call `_acceptAdmin` to finalize the transfer.
      * @param newPendingAdmin New pending admin.
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setPendingAdmin(address payable newPendingAdmin) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setPendingAdmin(address)", newPendingAdmin));
        return abi.decode(data, (uint));
    }

    /**
      * @notice Sets a new comptroller for the market
      * @dev Admin function to set a new comptroller
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setComptroller(ComptrollerInterface newComptroller) public returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setComptroller(address)", newComptroller));
        return abi.decode(data, (uint));
    }

    /**
      * @notice accrues interest and sets a new reserve factor for the protocol using _setReserveFactorFresh
      * @dev Admin function to accrue interest and set a new reserve factor
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setReserveFactor(uint256)", newReserveFactorMantissa));
        return abi.decode(data, (uint));
    }

    /**
      * @notice Accepts transfer of admin rights. msg.sender must be pendingAdmin
      * @dev Admin function for pending admin to accept role and update admin
      * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
      */
    function _acceptAdmin() external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_acceptAdmin()"));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and adds reserves by transferring from admin
     * @param addAmount Amount of reserves to add
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _addReserves(uint addAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_addReserves(uint256)", addAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and reduces reserves by transferring to admin
     * @param reduceAmount Amount of reduction to reserves
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _reduceReserves(uint reduceAmount) external returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_reduceReserves(uint256)", reduceAmount));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Accrues interest and updates the interest rate model using _setInterestRateModelFresh
     * @dev Admin function to accrue interest and update the interest rate model
     * @param newInterestRateModel the new interest rate model to use
     * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details)
     */
    function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint) {
        bytes memory data = delegateToImplementation(abi.encodeWithSignature("_setInterestRateModel(address)", newInterestRateModel));
        return abi.decode(data, (uint));
    }

    /**
     * @notice Internal method to delegate execution to another contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param callee The contract to delegatecall
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateTo(address callee, bytes memory data) internal returns (bytes memory) {
        (bool success, bytes memory returnData) = callee.delegatecall(data);
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return returnData;
    }

    /**
     * @notice Delegates execution to the implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToImplementation(bytes memory data) public returns (bytes memory) {
        return delegateTo(implementation, data);
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     *  There are an additional 2 prefix uints from the wrapper returndata, which we ignore since we make an extra hop.
     * @param data The raw data to delegatecall
     * @return The returned bytes from the delegatecall
     */
    function delegateToViewImplementation(bytes memory data) public view returns (bytes memory) {
        (bool success, bytes memory returnData) = address(this).staticcall(abi.encodeWithSignature("delegateToImplementation(bytes)", data));
        assembly {
            if eq(success, 0) {
                revert(add(returnData, 0x20), returndatasize)
            }
        }
        return abi.decode(returnData, (bytes));
    }

    /**
     * @notice Delegates execution to an implementation contract
     * @dev It returns to the external caller whatever the implementation returns or forwards reverts
     */
    function () external payable {
        require(msg.value == 0,"OErc20Delegator:fallback: cannot send value to fallback");

        // delegate all other functions to current implementation
        (bool success, ) = implementation.delegatecall(msg.data);

        assembly {
            let free_mem_ptr := mload(0x40)
            returndatacopy(free_mem_ptr, 0, returndatasize)

            switch success
            case 0 { revert(free_mem_ptr, returndatasize) }
            default { return(free_mem_ptr, returndatasize) }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"},{"internalType":"address payable","name":"admin_","type":"address"},{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"oTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldImplementation","type":"address"},{"indexed":false,"internalType":"address","name":"newImplementation","type":"address"}],"name":"NewImplementation","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"implementation_","type":"address"},{"internalType":"bool","name":"allowResign","type":"bool"},{"internalType":"bytes","name":"becomeImplementationData","type":"bytes"}],"name":"_setImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"delegateToViewImplementation","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract OTokenInterface","name":"oTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]

60806040523480156200001157600080fd5b50604051620027343803806200273483398181016040526101408110156200003857600080fd5b81516020830151604080850151606086015160808701805193519597949692959194919392820192846401000000008211156200007457600080fd5b9083019060208201858111156200008a57600080fd5b8251640100000000811182820188101715620000a557600080fd5b82525081516020918201929091019080838360005b83811015620000d4578181015183820152602001620000ba565b50505050905090810190601f168015620001025780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012657600080fd5b9083019060208201858111156200013c57600080fd5b82516401000000008111828201881017156200015757600080fd5b82525081516020918201929091019080838360005b83811015620001865781810151838201526020016200016c565b50505050905090810190601f168015620001b45780820380516001836020036101000a031916815260200191505b50604081815260208301519083015160608401516080909401805192969195919284640100000000821115620001e957600080fd5b908301906020820185811115620001ff57600080fd5b82516401000000008111828201881017156200021a57600080fd5b82525081516020918201929091019080838360005b83811015620002495781810151838201526020016200022f565b50505050905090810190601f168015620002775780820380516001836020036101000a031916815260200191505b506040525050506001600160a01b038316620002da576040805162461bcd60e51b815260206004820152601560248201527f696e76616c69642061646d696e20616464726573730000000000000000000000604482015290519081900360640190fd5b6001600160a01b03821662000336576040805162461bcd60e51b815260206004820152601e60248201527f696e76616c696420696d706c656d656e746174696f6e20616464726573730000604482015290519081900360640190fd5b60038054610100600160a81b03191633610100021790556040516001600160a01b038b8116602483019081528b82166044840152908a1660648301526084820189905260ff861660e483015260e060a4830190815288516101048401528851620004ae9386938f938f938f938f938f938f938f9360c481019161012490910190602088019080838360005b83811015620003db578181015183820152602001620003c1565b50505050905090810190601f168015620004095780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b838110156200043e57818101518382015260200162000424565b50505050905090810190601f1680156200046c5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116631a31d46560e01b17909152909a50620004fc1698505050505050505050565b50620004c6826000836001600160e01b03620005c316565b5050600380546001600160a01b0390921661010002610100600160a81b0319909216919091179055506200080095505050505050565b606060006060846001600160a01b0316846040518082805190602001908083835b602083106200053e5780518252601f1990920191602091820191016200051d565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114620005a0576040519150601f19603f3d011682016040523d82523d6000602084013e620005a5565b606091505b50915091506000821415620005bb573d60208201fd5b949350505050565b6001600160a01b0383166200061f576040805162461bcd60e51b815260206004820152601e60248201527f696e76616c696420696d706c656d656e746174696f6e20616464726573730000604482015290519081900360640190fd5b60035461010090046001600160a01b031633146200066f5760405162461bcd60e51b8152600401808060200182810382526039815260200180620026fb6039913960400191505060405180910390fd5b8115620006b1576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620006af9190620007d616565b505b601280546001600160a01b038581166001600160a01b0319831617909255604051602060248201818152855160448401528551949093169362000787938693909283926064909201919085019080838360005b838110156200071e57818101518382015260200162000704565b50505050905090810190601f1680156200074c5780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b17909152909350620007d616915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b601254606090620007fa906001600160a01b0316836001600160e01b03620004fc16565b92915050565b611eeb80620008106000396000f3fe6080604052600436106102ff5760003560e01c806370a0823111610190578063b71d1a0c116100dc578063e9c714f211610095578063f5e3c4621161006f578063f5e3c46214610d1e578063f851a44014610d61578063f8f9da2814610d76578063fca7820b14610d8b576102ff565b8063e9c714f214610cc1578063f2b3abbd14610cd6578063f3fdb15a14610d09576102ff565b8063b71d1a0c14610b91578063bd6d894d14610bc4578063c37f68e214610bd9578063c5ebeaec14610c32578063db006a7514610c5c578063dd62ed3e14610c86576102ff565b806397de9d1111610149578063a9059cbb11610123578063a9059cbb14610aeb578063aa5af0fd14610b24578063ae9d70b014610b39578063b2a02ff114610b4e576102ff565b806397de9d1114610a97578063a0712d6814610aac578063a6afed9514610ad6576102ff565b806370a08231146109c857806373acee98146109fb578063852a12e314610a105780638f840ddd14610a3a57806395d89b4114610a4f57806395dd919314610a64576102ff565b80633af9e6691161024f578063555bcc4011610208578063601a0bf1116101e2578063601a0bf11461095f5780636752e702146109895780636c540baf1461099e5780636f307dc3146109b3576102ff565b8063555bcc401461086d5780635c60da1b146109355780635fe3b5671461094a576102ff565b80633af9e669146107025780633b1d21a2146107355780633e9410101461074a5780634487152f146107745780634576b5db1461082557806347bd371814610858576102ff565b806318160ddd116102bc57806323b872dd1161029657806323b872dd1461062a5780632608f8181461066d57806326782247146106a6578063313ce567146106d7576102ff565b806318160ddd146105cb578063182df0f5146105e05780631be19560146105f5576102ff565b806306fdde03146103bf5780630933c1ed14610449578063095ea7b3146104fa5780630e75270214610547578063173b99041461058357806317bfdfbc14610598575b341561033c5760405162461bcd60e51b8152600401808060200182810382526037815260200180611e476037913960400191505060405180910390fd5b6012546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d806000811461039f576040519150601f19603f3d011682016040523d82523d6000602084013e6103a4565b606091505b505090506040513d6000823e8180156103bb573d82f35b3d82fd5b3480156103cb57600080fd5b506103d4610db5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040e5781810151838201526020016103f6565b50505050905090810190601f16801561043b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045557600080fd5b506103d46004803603602081101561046c57600080fd5b810190602081018135600160201b81111561048657600080fd5b82018360208201111561049857600080fd5b803590602001918460018302840111600160201b831117156104b957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e42945050505050565b34801561050657600080fd5b506105336004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e61565b604080519115158252519081900360200190f35b34801561055357600080fd5b506105716004803603602081101561056a57600080fd5b5035610ed8565b60408051918252519081900360200190f35b34801561058f57600080fd5b50610571610f3f565b3480156105a457600080fd5b50610571600480360360208110156105bb57600080fd5b50356001600160a01b0316610f45565b3480156105d757600080fd5b50610571610f97565b3480156105ec57600080fd5b50610571610f9d565b34801561060157600080fd5b506106286004803603602081101561061857600080fd5b50356001600160a01b0316610ff4565b005b34801561063657600080fd5b506105336004803603606081101561064d57600080fd5b506001600160a01b03813581169160208101359091169060400135611043565b34801561067957600080fd5b506105716004803603604081101561069057600080fd5b506001600160a01b0381351690602001356110c3565b3480156106b257600080fd5b506106bb611119565b604080516001600160a01b039092168252519081900360200190f35b3480156106e357600080fd5b506106ec611128565b6040805160ff9092168252519081900360200190f35b34801561070e57600080fd5b506105716004803603602081101561072557600080fd5b50356001600160a01b0316611131565b34801561074157600080fd5b50610571611183565b34801561075657600080fd5b506105716004803603602081101561076d57600080fd5b50356111bb565b34801561078057600080fd5b506103d46004803603602081101561079757600080fd5b810190602081018135600160201b8111156107b157600080fd5b8201836020820111156107c357600080fd5b803590602001918460018302840111600160201b831117156107e457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611202945050505050565b34801561083157600080fd5b506105716004803603602081101561084857600080fd5b50356001600160a01b0316611421565b34801561086457600080fd5b50610571611473565b34801561087957600080fd5b506106286004803603606081101561089057600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156108c157600080fd5b8201836020820111156108d357600080fd5b803590602001918460018302840111600160201b831117156108f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611479945050505050565b34801561094157600080fd5b506106bb611677565b34801561095657600080fd5b506106bb611686565b34801561096b57600080fd5b506105716004803603602081101561098257600080fd5b5035611695565b34801561099557600080fd5b506105716116dc565b3480156109aa57600080fd5b506105716116e7565b3480156109bf57600080fd5b506106bb6116ed565b3480156109d457600080fd5b50610571600480360360208110156109eb57600080fd5b50356001600160a01b03166116fc565b348015610a0757600080fd5b5061057161174e565b348015610a1c57600080fd5b5061057160048036036020811015610a3357600080fd5b5035611786565b348015610a4657600080fd5b506105716117cd565b348015610a5b57600080fd5b506103d46117d3565b348015610a7057600080fd5b5061057160048036036020811015610a8757600080fd5b50356001600160a01b031661182b565b348015610aa357600080fd5b5061053361187d565b348015610ab857600080fd5b5061057160048036036020811015610acf57600080fd5b5035611882565b348015610ae257600080fd5b506105716118c9565b348015610af757600080fd5b5061053360048036036040811015610b0e57600080fd5b506001600160a01b038135169060200135611901565b348015610b3057600080fd5b50610571611957565b348015610b4557600080fd5b5061057161195d565b348015610b5a57600080fd5b5061057160048036036060811015610b7157600080fd5b506001600160a01b03813581169160208101359091169060400135611995565b348015610b9d57600080fd5b5061057160048036036020811015610bb457600080fd5b50356001600160a01b03166119f3565b348015610bd057600080fd5b50610571611a45565b348015610be557600080fd5b50610c0c60048036036020811015610bfc57600080fd5b50356001600160a01b0316611a7d565b604080519485526020850193909352838301919091526060830152519081900360800190f35b348015610c3e57600080fd5b5061057160048036036020811015610c5557600080fd5b5035611b0f565b348015610c6857600080fd5b5061057160048036036020811015610c7f57600080fd5b5035611b56565b348015610c9257600080fd5b5061057160048036036040811015610ca957600080fd5b506001600160a01b0381358116916020013516611b9d565b348015610ccd57600080fd5b50610571611bf7565b348015610ce257600080fd5b5061057160048036036020811015610cf957600080fd5b50356001600160a01b0316611c2f565b348015610d1557600080fd5b506106bb611c81565b348015610d2a57600080fd5b5061057160048036036060811015610d4157600080fd5b506001600160a01b03813581169160208101359160409091013516611c90565b348015610d6d57600080fd5b506106bb611cf1565b348015610d8257600080fd5b50610571611d05565b348015610d9757600080fd5b5061057160048036036020811015610dae57600080fd5b5035611d3d565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b820191906000526020600020905b815481529060010190602001808311610e1d57829003601f168201915b505050505081565b601254606090610e5b906001600160a01b031683611d84565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052600090606090610eb790610e42565b9050808060200190516020811015610ece57600080fd5b5051949350505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663073a938160e11b179052600090606090610f1f90610e42565b9050808060200190516020811015610f3657600080fd5b50519392505050565b60085481565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166305eff7ef60e21b179052600090606090610f1f90610e42565b600d5481565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b179052600090606090610fd590611202565b9050808060200190516020811015610fec57600080fd5b505191505090565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031662df0cab60e51b17905261103f90610e42565b5050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526000906060906110a190610e42565b90508080602001905160208110156110b857600080fd5b505195945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03166304c11f0360e31b179052600090606090610eb790610e42565b6004546001600160a01b031681565b60035460ff1681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316633af9e66960e01b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b179052600090606090610fd590611202565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b03166303e9410160e41b179052600090606090610f1f90610e42565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b8381101561125357818101518382015260200161123b565b50505050905090810190601f1680156112805780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b602083106112db5780518252601f1990920191602091820191016112bc565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d806000811461133b576040519150601f19603f3d011682016040523d82523d6000602084013e611340565b606091505b50915091506000821415611355573d60208201fd5b80806020019051602081101561136a57600080fd5b8101908080516040519392919084600160201b82111561138957600080fd5b90830190602082018581111561139e57600080fd5b8251600160201b8111828201881017156113b757600080fd5b82525081516020918201929091019080838360005b838110156113e45781810151838201526020016113cc565b50505050905090810190601f1680156114115780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316634576b5db60e01b179052600090606090610f1f90610e42565b600b5481565b6001600160a01b0383166114d4576040805162461bcd60e51b815260206004820152601e60248201527f696e76616c696420696d706c656d656e746174696f6e20616464726573730000604482015290519081900360640190fd5b60035461010090046001600160a01b031633146115225760405162461bcd60e51b8152600401808060200182810382526039815260200180611e7e6039913960400191505060405180910390fd5b811561155c576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261155a90610e42565b505b601280546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693611628938693909283926064909201919085019080838360005b838110156115c65781810151838201526020016115ae565b50505050905090810190601f1680156115f35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610e42915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6012546001600160a01b031681565b6005546001600160a01b031681565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663601a0bf160e01b179052600090606090610f1f90610e42565b666379da05b6000081565b60095481565b6011546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610f1f90611202565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b179052600090606090610fd590610e42565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663852a12e360e01b179052600090606090610f1f90610e42565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166395dd919360e01b179052600090606090610f1f90611202565b600181565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663140e25ad60e31b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b179052600090606090610fd590610e42565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052600090606090610eb790610e42565b600a5481565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b179052600090606090610fd590611202565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b031663b2a02ff160e01b1790526000906060906110a190610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316632dc7468360e21b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b179052600090606090610fd590610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166361bfb47160e11b179052600090819081908190606090611ad590611202565b9050808060200190516080811015611aec57600080fd5b508051602082015160408301516060909301519199909850919650945092505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663317afabb60e21b179052600090606090610f1f90610e42565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663db006a7560e01b179052600090606090610f1f90610e42565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b179052600090606090610eb790611202565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b179052600090606090610fd590610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031663f2b3abbd60e01b179052600090606090610f1f90610e42565b6006546001600160a01b031681565b604080516001600160a01b0380861660248301526044820185905283166064808301919091528251808303909101815260849091019091526020810180516001600160e01b0316637af1e23160e11b1790526000906060906110a190610e42565b60035461010090046001600160a01b031681565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b179052600090606090610fd590611202565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663fca7820b60e01b179052600090606090610f1f90610e42565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310611dc45780518252601f199092019160209182019101611da5565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b50915091506000821415611e3e573d60208201fd5b94935050505056fe4f457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b4f457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696ea265627a7a72315820ac7f145accf9fc03cc22ab32ac4c0b9bcb4b4024ec4883811eec0bf087e4efa464736f6c634300051100324f457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696e000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000007d61ed92a6778f5abf5c94085739f1edabec2800000000000000000000000000f14ab129f30f939e7e5a7f21d8d15feb8216ff4e0000000000000000000000000000000000000000000000000000b5e620f48000000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001800000000000000000000000000000000000000000000000000000000000000008000000000000000000000000a8738f54c6c31ea559565a468056df233e6f4c120000000000000000000000009dcb6bc351ab416f35aeab1351776e2ad295abc400000000000000000000000000000000000000000000000000000000000001c000000000000000000000000000000000000000000000000000000000000000094f6e79782055534454000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056f5553445400000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102ff5760003560e01c806370a0823111610190578063b71d1a0c116100dc578063e9c714f211610095578063f5e3c4621161006f578063f5e3c46214610d1e578063f851a44014610d61578063f8f9da2814610d76578063fca7820b14610d8b576102ff565b8063e9c714f214610cc1578063f2b3abbd14610cd6578063f3fdb15a14610d09576102ff565b8063b71d1a0c14610b91578063bd6d894d14610bc4578063c37f68e214610bd9578063c5ebeaec14610c32578063db006a7514610c5c578063dd62ed3e14610c86576102ff565b806397de9d1111610149578063a9059cbb11610123578063a9059cbb14610aeb578063aa5af0fd14610b24578063ae9d70b014610b39578063b2a02ff114610b4e576102ff565b806397de9d1114610a97578063a0712d6814610aac578063a6afed9514610ad6576102ff565b806370a08231146109c857806373acee98146109fb578063852a12e314610a105780638f840ddd14610a3a57806395d89b4114610a4f57806395dd919314610a64576102ff565b80633af9e6691161024f578063555bcc4011610208578063601a0bf1116101e2578063601a0bf11461095f5780636752e702146109895780636c540baf1461099e5780636f307dc3146109b3576102ff565b8063555bcc401461086d5780635c60da1b146109355780635fe3b5671461094a576102ff565b80633af9e669146107025780633b1d21a2146107355780633e9410101461074a5780634487152f146107745780634576b5db1461082557806347bd371814610858576102ff565b806318160ddd116102bc57806323b872dd1161029657806323b872dd1461062a5780632608f8181461066d57806326782247146106a6578063313ce567146106d7576102ff565b806318160ddd146105cb578063182df0f5146105e05780631be19560146105f5576102ff565b806306fdde03146103bf5780630933c1ed14610449578063095ea7b3146104fa5780630e75270214610547578063173b99041461058357806317bfdfbc14610598575b341561033c5760405162461bcd60e51b8152600401808060200182810382526037815260200180611e476037913960400191505060405180910390fd5b6012546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d806000811461039f576040519150601f19603f3d011682016040523d82523d6000602084013e6103a4565b606091505b505090506040513d6000823e8180156103bb573d82f35b3d82fd5b3480156103cb57600080fd5b506103d4610db5565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561040e5781810151838201526020016103f6565b50505050905090810190601f16801561043b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561045557600080fd5b506103d46004803603602081101561046c57600080fd5b810190602081018135600160201b81111561048657600080fd5b82018360208201111561049857600080fd5b803590602001918460018302840111600160201b831117156104b957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e42945050505050565b34801561050657600080fd5b506105336004803603604081101561051d57600080fd5b506001600160a01b038135169060200135610e61565b604080519115158252519081900360200190f35b34801561055357600080fd5b506105716004803603602081101561056a57600080fd5b5035610ed8565b60408051918252519081900360200190f35b34801561058f57600080fd5b50610571610f3f565b3480156105a457600080fd5b50610571600480360360208110156105bb57600080fd5b50356001600160a01b0316610f45565b3480156105d757600080fd5b50610571610f97565b3480156105ec57600080fd5b50610571610f9d565b34801561060157600080fd5b506106286004803603602081101561061857600080fd5b50356001600160a01b0316610ff4565b005b34801561063657600080fd5b506105336004803603606081101561064d57600080fd5b506001600160a01b03813581169160208101359091169060400135611043565b34801561067957600080fd5b506105716004803603604081101561069057600080fd5b506001600160a01b0381351690602001356110c3565b3480156106b257600080fd5b506106bb611119565b604080516001600160a01b039092168252519081900360200190f35b3480156106e357600080fd5b506106ec611128565b6040805160ff9092168252519081900360200190f35b34801561070e57600080fd5b506105716004803603602081101561072557600080fd5b50356001600160a01b0316611131565b34801561074157600080fd5b50610571611183565b34801561075657600080fd5b506105716004803603602081101561076d57600080fd5b50356111bb565b34801561078057600080fd5b506103d46004803603602081101561079757600080fd5b810190602081018135600160201b8111156107b157600080fd5b8201836020820111156107c357600080fd5b803590602001918460018302840111600160201b831117156107e457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611202945050505050565b34801561083157600080fd5b506105716004803603602081101561084857600080fd5b50356001600160a01b0316611421565b34801561086457600080fd5b50610571611473565b34801561087957600080fd5b506106286004803603606081101561089057600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156108c157600080fd5b8201836020820111156108d357600080fd5b803590602001918460018302840111600160201b831117156108f457600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611479945050505050565b34801561094157600080fd5b506106bb611677565b34801561095657600080fd5b506106bb611686565b34801561096b57600080fd5b506105716004803603602081101561098257600080fd5b5035611695565b34801561099557600080fd5b506105716116dc565b3480156109aa57600080fd5b506105716116e7565b3480156109bf57600080fd5b506106bb6116ed565b3480156109d457600080fd5b50610571600480360360208110156109eb57600080fd5b50356001600160a01b03166116fc565b348015610a0757600080fd5b5061057161174e565b348015610a1c57600080fd5b5061057160048036036020811015610a3357600080fd5b5035611786565b348015610a4657600080fd5b506105716117cd565b348015610a5b57600080fd5b506103d46117d3565b348015610a7057600080fd5b5061057160048036036020811015610a8757600080fd5b50356001600160a01b031661182b565b348015610aa357600080fd5b5061053361187d565b348015610ab857600080fd5b5061057160048036036020811015610acf57600080fd5b5035611882565b348015610ae257600080fd5b506105716118c9565b348015610af757600080fd5b5061053360048036036040811015610b0e57600080fd5b506001600160a01b038135169060200135611901565b348015610b3057600080fd5b50610571611957565b348015610b4557600080fd5b5061057161195d565b348015610b5a57600080fd5b5061057160048036036060811015610b7157600080fd5b506001600160a01b03813581169160208101359091169060400135611995565b348015610b9d57600080fd5b5061057160048036036020811015610bb457600080fd5b50356001600160a01b03166119f3565b348015610bd057600080fd5b50610571611a45565b348015610be557600080fd5b50610c0c60048036036020811015610bfc57600080fd5b50356001600160a01b0316611a7d565b604080519485526020850193909352838301919091526060830152519081900360800190f35b348015610c3e57600080fd5b5061057160048036036020811015610c5557600080fd5b5035611b0f565b348015610c6857600080fd5b5061057160048036036020811015610c7f57600080fd5b5035611b56565b348015610c9257600080fd5b5061057160048036036040811015610ca957600080fd5b506001600160a01b0381358116916020013516611b9d565b348015610ccd57600080fd5b50610571611bf7565b348015610ce257600080fd5b5061057160048036036020811015610cf957600080fd5b50356001600160a01b0316611c2f565b348015610d1557600080fd5b506106bb611c81565b348015610d2a57600080fd5b5061057160048036036060811015610d4157600080fd5b506001600160a01b03813581169160208101359160409091013516611c90565b348015610d6d57600080fd5b506106bb611cf1565b348015610d8257600080fd5b50610571611d05565b348015610d9757600080fd5b5061057160048036036020811015610dae57600080fd5b5035611d3d565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b820191906000526020600020905b815481529060010190602001808311610e1d57829003601f168201915b505050505081565b601254606090610e5b906001600160a01b031683611d84565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052600090606090610eb790610e42565b9050808060200190516020811015610ece57600080fd5b5051949350505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663073a938160e11b179052600090606090610f1f90610e42565b9050808060200190516020811015610f3657600080fd5b50519392505050565b60085481565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166305eff7ef60e21b179052600090606090610f1f90610e42565b600d5481565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b179052600090606090610fd590611202565b9050808060200190516020811015610fec57600080fd5b505191505090565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031662df0cab60e51b17905261103f90610e42565b5050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526000906060906110a190610e42565b90508080602001905160208110156110b857600080fd5b505195945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03166304c11f0360e31b179052600090606090610eb790610e42565b6004546001600160a01b031681565b60035460ff1681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316633af9e66960e01b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b179052600090606090610fd590611202565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b03166303e9410160e41b179052600090606090610f1f90610e42565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b8381101561125357818101518382015260200161123b565b50505050905090810190601f1680156112805780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b602083106112db5780518252601f1990920191602091820191016112bc565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d806000811461133b576040519150601f19603f3d011682016040523d82523d6000602084013e611340565b606091505b50915091506000821415611355573d60208201fd5b80806020019051602081101561136a57600080fd5b8101908080516040519392919084600160201b82111561138957600080fd5b90830190602082018581111561139e57600080fd5b8251600160201b8111828201881017156113b757600080fd5b82525081516020918201929091019080838360005b838110156113e45781810151838201526020016113cc565b50505050905090810190601f1680156114115780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316634576b5db60e01b179052600090606090610f1f90610e42565b600b5481565b6001600160a01b0383166114d4576040805162461bcd60e51b815260206004820152601e60248201527f696e76616c696420696d706c656d656e746174696f6e20616464726573730000604482015290519081900360640190fd5b60035461010090046001600160a01b031633146115225760405162461bcd60e51b8152600401808060200182810382526039815260200180611e7e6039913960400191505060405180910390fd5b811561155c576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b17905261155a90610e42565b505b601280546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693611628938693909283926064909201919085019080838360005b838110156115c65781810151838201526020016115ae565b50505050905090810190601f1680156115f35780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610e42915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6012546001600160a01b031681565b6005546001600160a01b031681565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663601a0bf160e01b179052600090606090610f1f90610e42565b666379da05b6000081565b60095481565b6011546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610f1f90611202565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b179052600090606090610fd590610e42565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663852a12e360e01b179052600090606090610f1f90610e42565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e3a5780601f10610e0f57610100808354040283529160200191610e3a565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166395dd919360e01b179052600090606090610f1f90611202565b600181565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663140e25ad60e31b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b179052600090606090610fd590610e42565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052600090606090610eb790610e42565b600a5481565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b179052600090606090610fd590611202565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b031663b2a02ff160e01b1790526000906060906110a190610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316632dc7468360e21b179052600090606090610f1f90610e42565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b179052600090606090610fd590610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166361bfb47160e11b179052600090819081908190606090611ad590611202565b9050808060200190516080811015611aec57600080fd5b508051602082015160408301516060909301519199909850919650945092505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663317afabb60e21b179052600090606090610f1f90610e42565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663db006a7560e01b179052600090606090610f1f90610e42565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b179052600090606090610eb790611202565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b179052600090606090610fd590610e42565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031663f2b3abbd60e01b179052600090606090610f1f90610e42565b6006546001600160a01b031681565b604080516001600160a01b0380861660248301526044820185905283166064808301919091528251808303909101815260849091019091526020810180516001600160e01b0316637af1e23160e11b1790526000906060906110a190610e42565b60035461010090046001600160a01b031681565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b179052600090606090610fd590611202565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663fca7820b60e01b179052600090606090610f1f90610e42565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310611dc45780518252601f199092019160209182019101611da5565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611e24576040519150601f19603f3d011682016040523d82523d6000602084013e611e29565b606091505b50915091506000821415611e3e573d60208201fd5b94935050505056fe4f457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b4f457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696ea265627a7a72315820ac7f145accf9fc03cc22ab32ac4c0b9bcb4b4024ec4883811eec0bf087e4efa464736f6c63430005110032

Deployed Bytecode Sourcemap

18596:23266:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41350:9;:14;41342:81;;;;-1:-1:-1;;;41342:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41522:14;;:37;;41504:12;;-1:-1:-1;;;;;41522:14:0;;41504:12;;41550:8;;41522:37;41504:12;41550:8;;41504:12;41522:37;1:33:-1;41522:37:0;;45:16:-1;;;-1:-1;41522:37:0;;-1:-1:-1;41522:37:0;;-1:-1:-1;;41522:37:0;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;41503:56:0;;;41622:4;41616:11;41673:14;41670:1;41656:12;41641:47;41711:7;41732:47;;;;41824:14;41810:12;41803:36;41732:47;41762:14;41748:12;41741:36;7231:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7231:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7231:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40110:141;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40110:141:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40110:141:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40110:141:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40110:141:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40110:141:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40110:141:0;;-1:-1:-1;40110:141:0;;-1:-1:-1;;;;;40110:141:0:i;27872:249::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27872:249:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27872:249:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;24705:230;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24705:230:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24705:230:0;;:::i;:::-;;;;;;;;;;;;;;;;8534:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8534:33:0;;;:::i;31683:243::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31683:243:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;31683:243:0;-1:-1:-1;;;;;31683:243:0;;:::i;9179:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9179:23:0;;;:::i;32995:215::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32995:215:0;;;:::i;35097:160::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35097:160:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35097:160:0;-1:-1:-1;;;;;35097:160:0;;:::i;:::-;;27125:277;;8:9:-1;5:2;;;30:1;27;20:12;5:2;27125:277:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;27125:277:0;;;;;;;;;;;;;;;;;:::i;25223:278::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25223:278:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25223:278:0;;;;;;;;:::i;7958:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7958:35:0;;;:::i;:::-;;;;-1:-1:-1;;;;;7958:35:0;;;;;;;;;;;;;;7427:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7427:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;29383:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29383:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29383:237:0;-1:-1:-1;;;;;29383:237:0;;:::i;33380:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33380:195:0;;;:::i;37736:228::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37736:228:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;37736:228:0;;:::i;40673:434::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;40673:434:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;40673:434:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;40673:434:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;40673:434:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;40673:434:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;40673:434:0;;-1:-1:-1;40673:434:0;;-1:-1:-1;;;;;40673:434:0:i;36190:258::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36190:258:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36190:258:0;-1:-1:-1;;;;;36190:258:0;;:::i;8943:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8943:24:0;;;:::i;21534:730::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21534:730:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;21534:730:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;21534:730:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21534:730:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;21534:730:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21534:730:0;;-1:-1:-1;21534:730:0;;-1:-1:-1;;;;;21534:730:0:i;17082:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17082:29:0;;;:::i;8084:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8084:39:0;;;:::i;38217:240::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38217:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38217:240:0;;:::i;10152:56::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10152:56:0;;;:::i;8657:30::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8657:30:0;;;:::i;15014:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15014:25:0;;;:::i;28901:226::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28901:226:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28901:226:0;-1:-1:-1;;;;;28901:226:0;;:::i;31182:210::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;31182:210:0;;;:::i;23765:242::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23765:242:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23765:242:0;;:::i;9073:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9073:25:0;;;:::i;7327:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7327:20:0;;;:::i;32135:248::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32135:248:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;32135:248:0;-1:-1:-1;;;;;32135:248:0;;:::i;10366:36::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10366:36:0;;;:::i;22622:214::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;22622:214:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22622:214:0;;:::i;33831:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;33831:198:0;;;:::i;26578:240::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26578:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;26578:240:0;;;;;;;;:::i;8808:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8808:23:0;;;:::i;30819:217::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30819:217:0;;;:::i;34590:294::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;34590:294:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;34590:294:0;;;;;;;;;;;;;;;;;:::i;35706:259::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;35706:259:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;35706:259:0;-1:-1:-1;;;;;35706:259:0;;:::i;32537:208::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;32537:208:0;;;:::i;29966:284::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;29966:284:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;29966:284:0;-1:-1:-1;;;;;29966:284:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24275:222;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24275:222:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24275:222:0;;:::i;23187:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23187:222:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23187:222:0;;:::i;28451:260::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;28451:260:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;28451:260:0;;;;;;;;;;:::i;37297:196::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37297:196:0;;;:::i;38826:279::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;38826:279:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;38826:279:0;-1:-1:-1;;;;;38826:279:0;;:::i;8225:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8225:42:0;;;:::i;25983:334::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25983:334:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;25983:334:0;;;;;;;;;;;;;;;;;:::i;7847:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7847:28:0;;;:::i;30426:217::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;30426:217:0;;;:::i;36751:268::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36751:268:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;36751:268:0;;:::i;7231:18::-;;;;;;;;;;;;;;;-1:-1:-1;;7231:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40110:141::-;40222:14;;40179:12;;40211:32;;-1:-1:-1;;;;;40222:14:0;40238:4;40211:10;:32::i;:::-;40204:39;40110:141;-1:-1:-1;;40110:141:0:o;27872:249::-;28002:68;;;-1:-1:-1;;;;;28002:68:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28002:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27940:4:0;;27957:17;;27977:94;;:24;:94::i;:::-;27957:114;;28100:4;28089:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;28089:24:0;;27872:249;-1:-1:-1;;;;27872:249:0:o;24705:230::-;24824:60;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;24824:60:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;24762:4:0;;24779:17;;24799:86;;:24;:86::i;:::-;24779:106;;24914:4;24903:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24903:24:0;;24705:230;-1:-1:-1;;;24705:230:0:o;8534:33::-;;;;:::o;31683:243::-;31810:65;;;-1:-1:-1;;;;;31810:65:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;31810:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;31748:4:0;;31765:17;;31785:91;;:24;:91::i;9179:23::-;;;;:::o;32995:215::-;33112:47;;;22:32:-1;6:49;;33112:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;33046:4:0;;33063:17;;33083:77;;:28;:77::i;:::-;33063:97;;33189:4;33178:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;33178:24:0;;-1:-1:-1;;32995:215:0;:::o;35097:160::-;35195:53;;;-1:-1:-1;;;;;35195:53:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35195:53:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35170:79:0;;:24;:79::i;:::-;;35097:160;:::o;27125:277::-;27269:82;;;-1:-1:-1;;;;;27269:82:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;27269:82:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;27207:4:0;;27224:17;;27244:108;;:24;:108::i;:::-;27224:128;;27381:4;27370:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;27370:24:0;;27125:277;-1:-1:-1;;;;;27125:277:0:o;25223:278::-;25366:84;;;-1:-1:-1;;;;;25366:84:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;25366:84:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;25304:4:0;;25321:17;;25341:110;;:24;:110::i;7958:35::-;;;-1:-1:-1;;;;;7958:35:0;;:::o;7427:21::-;;;;;;:::o;29383:237::-;29507:62;;;-1:-1:-1;;;;;29507:62:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29507:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;29445:4:0;;29462:17;;29482:88;;:24;:88::i;33380:195::-;33488:36;;;22:32:-1;6:49;;33488:36:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;33422:4:0;;33439:17;;33459:66;;:28;:66::i;37736:228::-;37854:59;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;37854:59:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;37792:4:0;;37809:17;;37829:85;;:24;:85::i;40673:434::-;40751:12;40777;40791:23;40826:4;-1:-1:-1;;;;;40818:24:0;40902:4;40843:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;40843:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;40843:64:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;40843:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;40818:90:0;;;;40843:64;;-1:-1:-1;40818:90:0;-1:-1:-1;40818:90:0;;-1:-1:-1;25:18;40818:90:0;;25:18:-1;36:153;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;40818:90:0;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;40776:132:0;;;;40958:1;40949:7;40946:14;40943:2;;;41010:14;41003:4;40991:10;40987:21;40980:45;40943:2;41079:10;41068:31;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;41068:31:0;;;;;;;;;;;;;-1:-1:-1;;;14:3;11:20;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;213:10;;-1:-1;;;244:29;;285:43;;;282:58;-1:-1;233:115;230:2;;;361:1;358;351:12;230:2;372:25;;-1:-1;41068:31:0;;420:4:-1;411:14;;;;41068:31:0;;;;;411:14:-1;41068:31:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;41068:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41061:38;;;;40673:434;;;:::o;36190:258::-;36330:67;;;-1:-1:-1;;;;;36330:67:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;36330:67:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;36268:4:0;;36285:17;;36305:93;;:24;:93::i;8943:24::-;;;;:::o;21534:730::-;-1:-1:-1;;;;;21670:29:0;;21662:72;;;;;-1:-1:-1;;;21662:72:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21769:5;;;;;-1:-1:-1;;;;;21769:5:0;21755:10;:19;21747:89;;;;-1:-1:-1;;;21747:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21853:11;21849:120;;;21906:50;;;22:32:-1;6:49;;21906:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;21881:76:0;;:24;:76::i;:::-;;21849:120;22009:14;;;-1:-1:-1;;;;;22034:32:0;;;-1:-1:-1;;;;;;22034:32:0;;;;;;22104:81;;;;;;;;;;;;;;;;;22009:14;;;;;22079:107;;22160:24;;22104:81;;;;;;;;;;;;;;;;21981:25;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;22104:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;22104:81:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;22104:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;22104:81:0;-1:-1:-1;22079:24:0;;-1:-1:-1;;22079:107:0:i;:::-;-1:-1:-1;22241:14:0;;22204:52;;;-1:-1:-1;;;;;22204:52:0;;;;;22241:14;;;22204:52;;;;;;;;;;;;;;;;21534:730;;;;:::o;17082:29::-;;;-1:-1:-1;;;;;17082:29:0;;:::o;8084:39::-;;;-1:-1:-1;;;;;8084:39:0;;:::o;38217:240::-;38341:65;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;38341:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;38279:4:0;;38296:17;;38316:91;;:24;:91::i;10152:56::-;10202:6;10152:56;:::o;8657:30::-;;;;:::o;15014:25::-;;;-1:-1:-1;;;;;15014:25:0;;:::o;28901:226::-;29024:52;;;-1:-1:-1;;;;;29024:52:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;29024:52:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28958:4:0;;28975:17;;28995:82;;:28;:82::i;31182:210::-;31293:48;;;22:32:-1;6:49;;31293:48:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;31231:4:0;;31248:17;;31268:74;;:24;:74::i;23765:242::-;23890:66;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;23890:66:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;23828:4:0;;23845:17;;23865:92;;:24;:92::i;9073:25::-;;;;:::o;7327:20::-;;;;;;;;;;;;;;-1:-1:-1;;7327:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32135:248;32268:64;;;-1:-1:-1;;;;;32268:64:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;32268:64:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;32202:4:0;;32219:17;;32239:94;;:28;:94::i;10366:36::-;10398:4;10366:36;:::o;22622:214::-;22733:52;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;22733:52:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;22671:4:0;;22688:17;;22708:78;;:24;:78::i;33831:198::-;33935:43;;;22:32:-1;6:49;;33935:43:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;33873:4:0;;33890:17;;33910:69;;:24;:69::i;26578:240::-;26702:65;;;-1:-1:-1;;;;;26702:65:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26702:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;26640:4:0;;26657:17;;26677:91;;:24;:91::i;8808:23::-;;;;:::o;30819:217::-;30938:47;;;22:32:-1;6:49;;30938:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;30872:4:0;;30889:17;;30909:77;;:28;:77::i;34590:294::-;34741:92;;;-1:-1:-1;;;;;34741:92:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;34741:92:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;34679:4:0;;34696:17;;34716:118;;:24;:118::i;35706:259::-;35845:69;;;-1:-1:-1;;;;;35845:69:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;35845:69:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;35783:4:0;;35800:17;;35820:95;;:24;:95::i;32537:208::-;32646:48;;;22:32:-1;6:49;;32646:48:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;32584:4:0;;32601:17;;32621:74;;:24;:74::i;29966:284::-;30118:63;;;-1:-1:-1;;;;;30118:63:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;30118:63:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;30034:4:0;;;;;;;;30069:17;;30089:93;;:28;:93::i;:::-;30069:113;;30211:4;30200:42;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;30200:42:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;30200:42:0;;-1:-1:-1;30200:42:0;-1:-1:-1;29966:284:0;-1:-1:-1;;;29966:284:0:o;24275:222::-;24390:56;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;24390:56:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;24328:4:0;;24345:17;;24365:82;;:24;:82::i;23187:222::-;23302:56;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;23302:56:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;23240:4:0;;23257:17;;23277:82;;:24;:82::i;28451:260::-;28591:69;;;-1:-1:-1;;;;;28591:69:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;28591:69:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;28525:4:0;;28542:17;;28562:99;;:28;:99::i;37297:196::-;37401:41;;;22:32:-1;6:49;;37401:41:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;37339:4:0;;37356:17;;37376:67;;:24;:67::i;38826:279::-;38975:79;;;-1:-1:-1;;;;;38975:79:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;38975:79:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;38913:4:0;;38930:17;;38950:105;;:24;:105::i;8225:42::-;;;-1:-1:-1;;;;;8225:42:0;;:::o;25983:334::-;26158:108;;;-1:-1:-1;;;;;26158:108:0;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;26158:108:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;26096:4:0;;26113:17;;26133:134;;:24;:134::i;7847:28::-;;;;;;-1:-1:-1;;;;;7847:28:0;;:::o;30426:217::-;30545:47;;;22:32:-1;6:49;;30545:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;30479:4:0;;30496:17;;30516:77;;:28;:77::i;36751:268::-;36889:79;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;36889:79:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;36827:4:0;;36844:17;;36864:105;;:24;:105::i;39465:343::-;39538:12;39564;39578:23;39605:6;-1:-1:-1;;;;;39605:19:0;39625:4;39605:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;39605:25:0;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;39563:67:0;;;;39680:1;39671:7;39668:14;39665:2;;;39732:14;39725:4;39713:10;39709:21;39702:45;39665:2;39790:10;39465:343;-1:-1:-1;;;;39465:343:0:o

Swarm Source

bzzr://ac7f145accf9fc03cc22ab32ac4c0b9bcb4b4024ec4883811eec0bf087e4efa4
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.