More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 7,535 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 426881497 | 13 hrs ago | IN | 0 ETH | 0.00000062 | ||||
| Redeem | 420537845 | 18 days ago | IN | 0 ETH | 0.00000353 | ||||
| Approve | 418263416 | 25 days ago | IN | 0 ETH | 0.0000003 | ||||
| Redeem | 418146746 | 25 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417799739 | 26 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417530524 | 27 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417438853 | 27 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417284542 | 28 days ago | IN | 0 ETH | 0.00000158 | ||||
| Redeem | 417271564 | 28 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417226655 | 28 days ago | IN | 0 ETH | 0.00000158 | ||||
| Redeem | 417192764 | 28 days ago | IN | 0 ETH | 0.00000175 | ||||
| Redeem | 417142161 | 28 days ago | IN | 0 ETH | 0.00000175 | ||||
| Approve | 410528364 | 47 days ago | IN | 0 ETH | 0.0000003 | ||||
| Approve | 409869167 | 49 days ago | IN | 0 ETH | 0.0000003 | ||||
| Redeem | 383692538 | 125 days ago | IN | 0 ETH | 0.00000171 | ||||
| Redeem | 383688803 | 125 days ago | IN | 0 ETH | 0.00000164 | ||||
| Balance Of Under... | 383687875 | 125 days ago | IN | 0 ETH | 0.00000094 | ||||
| Approve | 372950554 | 156 days ago | IN | 0 ETH | 0.00000489 | ||||
| Redeem | 360933065 | 191 days ago | IN | 0 ETH | 0.00000176 | ||||
| Approve | 360670508 | 191 days ago | IN | 0 ETH | 0.00000031 | ||||
| Approve | 339883766 | 252 days ago | IN | 0 ETH | 0.00000033 | ||||
| Approve | 304327707 | 355 days ago | IN | 0 ETH | 0.00000036 | ||||
| Approve | 287469155 | 404 days ago | IN | 0 ETH | 0.0000009 | ||||
| Approve | 276424483 | 436 days ago | IN | 0 ETH | 0.00000191 | ||||
| Approve | 269594361 | 456 days ago | IN | 0 ETH | 0.00000585 |
Latest 25 internal transactions (View All)
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 71902707 | 1047 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH | ||||
| 71109849 | 1049 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
CErc20Delegator
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16;
import "./CTokenInterfaces.sol";
/**
* @title Compound's CErc20Delegator Contract
* @notice CTokens which wrap an EIP-20 underlying and delegate to an implementation
* @author Compound
*/
contract CErc20Delegator is CTokenInterface, CErc20Interface, CDelegatorInterface {
/**
* @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 {
// 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(msg.sender == admin, "CErc20Delegator::_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 cTokens 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 cTokens in exchange for the underlying asset
* @dev Accrues interest whether or not the operation succeeds, unless reverted
* @param redeemTokens The number of cTokens 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 cTokens 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 cToken to be liquidated
* @param cTokenCollateral 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, CTokenInterface cTokenCollateral) external returns (uint) {
bytes memory data = delegateToImplementation(abi.encodeWithSignature("liquidateBorrow(address,uint256,address)", borrower, repayAmount, cTokenCollateral));
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 cToken
* @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 cToken
* @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 CToken
* @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 cToken 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 cToken during the process of liquidation.
* Its absolutely critical to use msg.sender as the borrowed cToken and not a parameter.
* @param liquidator The account receiving seized collateral
* @param borrower The account having collateral seized
* @param seizeTokens The number of cTokens 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,"CErc20Delegator: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) }
}
}
}pragma solidity ^0.5.16;
import "./ComptrollerInterface.sol";
import "./InterestRateModel.sol";
import "./EIP20NonStandardInterface.sol";
contract CTokenStorage {
/**
* @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-cToken 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 CTokens (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;
}
contract CTokenInterface is CTokenStorage {
/**
* @notice Indicator that this is a CToken contract (for inspection)
*/
bool public constant isCToken = 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 cTokenCollateral, 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 CErc20Storage {
/**
* @notice Underlying asset for this CToken
*/
address public underlying;
}
contract CErc20Interface is CErc20Storage {
/*** 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, CTokenInterface cTokenCollateral) external returns (uint);
function sweepToken(EIP20NonStandardInterface token) external;
/*** Admin Functions ***/
function _addReserves(uint addAmount) external returns (uint);
}
contract CDelegationStorage {
/**
* @notice Implementation address for this contract
*/
address public implementation;
}
contract CDelegatorInterface is CDelegationStorage {
/**
* @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 CDelegateInterface is CDelegationStorage {
/**
* @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;
}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 cTokens) external returns (uint[] memory);
function exitMarket(address cToken) external returns (uint);
/*** Policy Hooks ***/
function mintAllowed(address cToken, address minter, uint mintAmount) external returns (uint);
function mintVerify(address cToken, address minter, uint mintAmount, uint mintTokens) external;
function redeemAllowed(address cToken, address redeemer, uint redeemTokens) external returns (uint);
function redeemVerify(address cToken, address redeemer, uint redeemAmount, uint redeemTokens) external;
function borrowAllowed(address cToken, address borrower, uint borrowAmount) external returns (uint);
function borrowVerify(address cToken, address borrower, uint borrowAmount) external;
function repayBorrowAllowed(
address cToken,
address payer,
address borrower,
uint repayAmount) external returns (uint);
function repayBorrowVerify(
address cToken,
address payer,
address borrower,
uint repayAmount,
uint borrowerIndex) external;
function liquidateBorrowAllowed(
address cTokenBorrowed,
address cTokenCollateral,
address liquidator,
address borrower,
uint repayAmount) external returns (uint);
function liquidateBorrowVerify(
address cTokenBorrowed,
address cTokenCollateral,
address liquidator,
address borrower,
uint repayAmount,
uint seizeTokens) external;
function seizeAllowed(
address cTokenCollateral,
address cTokenBorrowed,
address liquidator,
address borrower,
uint seizeTokens) external returns (uint);
function seizeVerify(
address cTokenCollateral,
address cTokenBorrowed,
address liquidator,
address borrower,
uint seizeTokens) external;
function transferAllowed(address cToken, address src, address dst, uint transferTokens) external returns (uint);
function transferVerify(address cToken, address src, address dst, uint transferTokens) external;
/*** Liquidity/Liquidation Calculations ***/
function liquidateCalculateSeizeTokens(
address cTokenBorrowed,
address cTokenCollateral,
uint repayAmount) external view returns (uint, uint);
}pragma solidity ^0.5.16;
/**
* @title Compound's InterestRateModel Interface
* @author Compound
*/
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);
}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);
}{
"metadata": {
"useLiteralContent": true
},
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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":"cTokenCollateral","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":"isCToken","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 CTokenInterface","name":"cTokenCollateral","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":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"}]Contract Creation Code
60806040523480156200001157600080fd5b50604051620025b8380380620025b883398181016040526101408110156200003857600080fd5b81516020830151604080850151606086015160808701805193519597949692959194919392820192846401000000008211156200007457600080fd5b9083019060208201858111156200008a57600080fd5b8251640100000000811182820188101715620000a557600080fd5b82525081516020918201929091019080838360005b83811015620000d4578181015183820152602001620000ba565b50505050905090810190601f168015620001025780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200012657600080fd5b9083019060208201858111156200013c57600080fd5b82516401000000008111828201881017156200015757600080fd5b82525081516020918201929091019080838360005b83811015620001865781810151838201526020016200016c565b50505050905090810190601f168015620001b45780820380516001836020036101000a031916815260200191505b50604081815260208301519083015160608401516080909401805192969195919284640100000000821115620001e957600080fd5b908301906020820185811115620001ff57600080fd5b82516401000000008111828201881017156200021a57600080fd5b82525081516020918201929091019080838360005b83811015620002495781810151838201526020016200022f565b50505050905090810190601f168015620002775780820380516001836020036101000a031916815260200191505b5060405250505033600360016101000a8154816001600160a01b0302191690836001600160a01b0316021790555062000424828b8b8b8b8b8b8b60405160240180886001600160a01b03166001600160a01b03168152602001876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b0316815260200185815260200180602001806020018460ff1660ff168152602001838103835286818151815260200191508051906020019080838360005b838110156200035157818101518382015260200162000337565b50505050905090810190601f1680156200037f5780820380516001836020036101000a031916815260200191505b50838103825285518152855160209182019187019080838360005b83811015620003b45781810151838201526020016200039a565b50505050905090810190601f168015620003e25780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116631a31d46560e01b17909152909a50620004721698505050505050505050565b506200043c826000836001600160e01b036200053916565b5050600380546001600160a01b0390921661010002610100600160a81b0319909216919091179055506200071a95505050505050565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310620004b45780518252601f19909201916020918201910162000493565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d806000811462000516576040519150601f19603f3d011682016040523d82523d6000602084013e6200051b565b606091505b5091509150600082141562000531573d60208201fd5b949350505050565b60035461010090046001600160a01b03163314620005895760405162461bcd60e51b81526004018080602001828103825260398152602001806200257f6039913960400191505060405180910390fd5b8115620005cb576040805160048152602481019091526020810180516001600160e01b0390811663153ab50560e01b17909152620005c99190620006f016565b505b601280546001600160a01b038581166001600160a01b03198316179092556040516020602482018181528551604484015285519490931693620006a1938693909283926064909201919085019080838360005b83811015620006385781810151838201526020016200061e565b50505050905090810190601f168015620006665780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b03908116630adccee560e31b17909152909350620006f016915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b60125460609062000714906001600160a01b0316836001600160e01b036200047216565b92915050565b611e55806200072a6000396000f3fe6080604052600436106102e45760003560e01c806370a0823111610190578063bd6d894d116100dc578063f2b3abbd11610095578063f851a4401161006f578063f851a44014610d1c578063f8f9da2814610d31578063fca7820b14610d46578063fe9c44ae14610d70576102e4565b8063f2b3abbd14610c91578063f3fdb15a14610cc4578063f5e3c46214610cd9576102e4565b8063bd6d894d14610b7f578063c37f68e214610b94578063c5ebeaec14610bed578063db006a7514610c17578063dd62ed3e14610c41578063e9c714f214610c7c576102e4565b8063a0712d6811610149578063aa5af0fd11610123578063aa5af0fd14610adf578063ae9d70b014610af4578063b2a02ff114610b09578063b71d1a0c14610b4c576102e4565b8063a0712d6814610a67578063a6afed9514610a91578063a9059cbb14610aa6576102e4565b806370a082311461099857806373acee98146109cb578063852a12e3146109e05780638f840ddd14610a0a57806395d89b4114610a1f57806395dd919314610a34576102e4565b8063313ce5671161024f57806347bd3718116102085780635fe3b567116101e25780635fe3b5671461092f578063601a0bf1146109445780636c540baf1461096e5780636f307dc314610983576102e4565b806347bd37181461083d578063555bcc40146108525780635c60da1b1461091a576102e4565b8063313ce567146106bc5780633af9e669146106e75780633b1d21a21461071a5780633e9410101461072f5780634487152f146107595780634576b5db1461080a576102e4565b806318160ddd116102a157806318160ddd146105b0578063182df0f5146105c55780631be19560146105da57806323b872dd1461060f5780632608f81814610652578063267822471461068b576102e4565b806306fdde03146103a45780630933c1ed1461042e578063095ea7b3146104df5780630e7527021461052c578063173b99041461056857806317bfdfbc1461057d575b34156103215760405162461bcd60e51b8152600401808060200182810382526037815260200180611db16037913960400191505060405180910390fd5b6012546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610384576040519150601f19603f3d011682016040523d82523d6000602084013e610389565b606091505b505090506040513d6000823e8180156103a0573d82f35b3d82fd5b3480156103b057600080fd5b506103b9610d85565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f35781810151838201526020016103db565b50505050905090810190601f1680156104205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043a57600080fd5b506103b96004803603602081101561045157600080fd5b810190602081018135600160201b81111561046b57600080fd5b82018360208201111561047d57600080fd5b803590602001918460018302840111600160201b8311171561049e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e12945050505050565b3480156104eb57600080fd5b506105186004803603604081101561050257600080fd5b506001600160a01b038135169060200135610e31565b604080519115158252519081900360200190f35b34801561053857600080fd5b506105566004803603602081101561054f57600080fd5b5035610ea8565b60408051918252519081900360200190f35b34801561057457600080fd5b50610556610f0f565b34801561058957600080fd5b50610556600480360360208110156105a057600080fd5b50356001600160a01b0316610f15565b3480156105bc57600080fd5b50610556610f67565b3480156105d157600080fd5b50610556610f6d565b3480156105e657600080fd5b5061060d600480360360208110156105fd57600080fd5b50356001600160a01b0316610fc4565b005b34801561061b57600080fd5b506105186004803603606081101561063257600080fd5b506001600160a01b03813581169160208101359091169060400135611013565b34801561065e57600080fd5b506105566004803603604081101561067557600080fd5b506001600160a01b038135169060200135611093565b34801561069757600080fd5b506106a06110e9565b604080516001600160a01b039092168252519081900360200190f35b3480156106c857600080fd5b506106d16110f8565b6040805160ff9092168252519081900360200190f35b3480156106f357600080fd5b506105566004803603602081101561070a57600080fd5b50356001600160a01b0316611101565b34801561072657600080fd5b50610556611153565b34801561073b57600080fd5b506105566004803603602081101561075257600080fd5b503561118b565b34801561076557600080fd5b506103b96004803603602081101561077c57600080fd5b810190602081018135600160201b81111561079657600080fd5b8201836020820111156107a857600080fd5b803590602001918460018302840111600160201b831117156107c957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111d2945050505050565b34801561081657600080fd5b506105566004803603602081101561082d57600080fd5b50356001600160a01b03166113f1565b34801561084957600080fd5b50610556611443565b34801561085e57600080fd5b5061060d6004803603606081101561087557600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156108a657600080fd5b8201836020820111156108b857600080fd5b803590602001918460018302840111600160201b831117156108d957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611449945050505050565b34801561092657600080fd5b506106a06115ec565b34801561093b57600080fd5b506106a06115fb565b34801561095057600080fd5b506105566004803603602081101561096757600080fd5b503561160a565b34801561097a57600080fd5b50610556611651565b34801561098f57600080fd5b506106a0611657565b3480156109a457600080fd5b50610556600480360360208110156109bb57600080fd5b50356001600160a01b0316611666565b3480156109d757600080fd5b506105566116b8565b3480156109ec57600080fd5b5061055660048036036020811015610a0357600080fd5b50356116f0565b348015610a1657600080fd5b50610556611737565b348015610a2b57600080fd5b506103b961173d565b348015610a4057600080fd5b5061055660048036036020811015610a5757600080fd5b50356001600160a01b0316611795565b348015610a7357600080fd5b5061055660048036036020811015610a8a57600080fd5b50356117e7565b348015610a9d57600080fd5b5061055661182e565b348015610ab257600080fd5b5061051860048036036040811015610ac957600080fd5b506001600160a01b038135169060200135611866565b348015610aeb57600080fd5b506105566118bc565b348015610b0057600080fd5b506105566118c2565b348015610b1557600080fd5b5061055660048036036060811015610b2c57600080fd5b506001600160a01b038135811691602081013590911690604001356118fa565b348015610b5857600080fd5b5061055660048036036020811015610b6f57600080fd5b50356001600160a01b0316611958565b348015610b8b57600080fd5b506105566119aa565b348015610ba057600080fd5b50610bc760048036036020811015610bb757600080fd5b50356001600160a01b03166119e2565b604080519485526020850193909352838301919091526060830152519081900360800190f35b348015610bf957600080fd5b5061055660048036036020811015610c1057600080fd5b5035611a74565b348015610c2357600080fd5b5061055660048036036020811015610c3a57600080fd5b5035611abb565b348015610c4d57600080fd5b5061055660048036036040811015610c6457600080fd5b506001600160a01b0381358116916020013516611b02565b348015610c8857600080fd5b50610556611b5c565b348015610c9d57600080fd5b5061055660048036036020811015610cb457600080fd5b50356001600160a01b0316611b94565b348015610cd057600080fd5b506106a0611be6565b348015610ce557600080fd5b5061055660048036036060811015610cfc57600080fd5b506001600160a01b03813581169160208101359160409091013516611bf5565b348015610d2857600080fd5b506106a0611c56565b348015610d3d57600080fd5b50610556611c6a565b348015610d5257600080fd5b5061055660048036036020811015610d6957600080fd5b5035611ca2565b348015610d7c57600080fd5b50610518611ce9565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b505050505081565b601254606090610e2b906001600160a01b031683611cee565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052600090606090610e8790610e12565b9050808060200190516020811015610e9e57600080fd5b5051949350505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663073a938160e11b179052600090606090610eef90610e12565b9050808060200190516020811015610f0657600080fd5b50519392505050565b60085481565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166305eff7ef60e21b179052600090606090610eef90610e12565b600d5481565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b179052600090606090610fa5906111d2565b9050808060200190516020811015610fbc57600080fd5b505191505090565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031662df0cab60e51b17905261100f90610e12565b5050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905260009060609061107190610e12565b905080806020019051602081101561108857600080fd5b505195945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03166304c11f0360e31b179052600090606090610e8790610e12565b6004546001600160a01b031681565b60035460ff1681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316633af9e66960e01b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b179052600090606090610fa5906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b03166303e9410160e41b179052600090606090610eef90610e12565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b8381101561122357818101518382015260200161120b565b50505050905090810190601f1680156112505780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b602083106112ab5780518252601f19909201916020918201910161128c565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d806000811461130b576040519150601f19603f3d011682016040523d82523d6000602084013e611310565b606091505b50915091506000821415611325573d60208201fd5b80806020019051602081101561133a57600080fd5b8101908080516040519392919084600160201b82111561135957600080fd5b90830190602082018581111561136e57600080fd5b8251600160201b81118282018810171561138757600080fd5b82525081516020918201929091019080838360005b838110156113b457818101518382015260200161139c565b50505050905090810190601f1680156113e15780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316634576b5db60e01b179052600090606090610eef90610e12565b600b5481565b60035461010090046001600160a01b031633146114975760405162461bcd60e51b8152600401808060200182810382526039815260200180611de86039913960400191505060405180910390fd5b81156114d1576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b1790526114cf90610e12565b505b601280546001600160a01b038581166001600160a01b0319831617909255604051602060248201818152855160448401528551949093169361159d938693909283926064909201919085019080838360005b8381101561153b578181015183820152602001611523565b50505050905090810190601f1680156115685780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610e12915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6012546001600160a01b031681565b6005546001600160a01b031681565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663601a0bf160e01b179052600090606090610eef90610e12565b60095481565b6011546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610eef906111d2565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b179052600090606090610fa590610e12565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663852a12e360e01b179052600090606090610eef90610e12565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166395dd919360e01b179052600090606090610eef906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663140e25ad60e31b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b179052600090606090610fa590610e12565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052600090606090610e8790610e12565b600a5481565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b179052600090606090610fa5906111d2565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b031663b2a02ff160e01b17905260009060609061107190610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316632dc7468360e21b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b179052600090606090610fa590610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166361bfb47160e11b179052600090819081908190606090611a3a906111d2565b9050808060200190516080811015611a5157600080fd5b508051602082015160408301516060909301519199909850919650945092505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663317afabb60e21b179052600090606090610eef90610e12565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663db006a7560e01b179052600090606090610eef90610e12565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b179052600090606090610e87906111d2565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b179052600090606090610fa590610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031663f2b3abbd60e01b179052600090606090610eef90610e12565b6006546001600160a01b031681565b604080516001600160a01b0380861660248301526044820185905283166064808301919091528251808303909101815260849091019091526020810180516001600160e01b0316637af1e23160e11b17905260009060609061107190610e12565b60035461010090046001600160a01b031681565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b179052600090606090610fa5906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663fca7820b60e01b179052600090606090610eef90610e12565b600181565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310611d2e5780518252601f199092019160209182019101611d0f565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611d8e576040519150601f19603f3d011682016040523d82523d6000602084013e611d93565b606091505b50915091506000821415611da8573d60208201fd5b94935050505056fe43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b43457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696ea265627a7a72315820d41208f4346cc443222868b255754684294382a6e5faf79df25c49a89b411d7064736f6c6343000510003243457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696e000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc80000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace200000000000000000000000028707252fdea41b72cf321d153a6c01fa9f6fb790000000000000000000000000000000000000000000000000000b5e620f480000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012000000000000000000000000bb93c7f378b9b531216f9ad7b5748be189a5580700000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000c48756e64726564205553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005685553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102e45760003560e01c806370a0823111610190578063bd6d894d116100dc578063f2b3abbd11610095578063f851a4401161006f578063f851a44014610d1c578063f8f9da2814610d31578063fca7820b14610d46578063fe9c44ae14610d70576102e4565b8063f2b3abbd14610c91578063f3fdb15a14610cc4578063f5e3c46214610cd9576102e4565b8063bd6d894d14610b7f578063c37f68e214610b94578063c5ebeaec14610bed578063db006a7514610c17578063dd62ed3e14610c41578063e9c714f214610c7c576102e4565b8063a0712d6811610149578063aa5af0fd11610123578063aa5af0fd14610adf578063ae9d70b014610af4578063b2a02ff114610b09578063b71d1a0c14610b4c576102e4565b8063a0712d6814610a67578063a6afed9514610a91578063a9059cbb14610aa6576102e4565b806370a082311461099857806373acee98146109cb578063852a12e3146109e05780638f840ddd14610a0a57806395d89b4114610a1f57806395dd919314610a34576102e4565b8063313ce5671161024f57806347bd3718116102085780635fe3b567116101e25780635fe3b5671461092f578063601a0bf1146109445780636c540baf1461096e5780636f307dc314610983576102e4565b806347bd37181461083d578063555bcc40146108525780635c60da1b1461091a576102e4565b8063313ce567146106bc5780633af9e669146106e75780633b1d21a21461071a5780633e9410101461072f5780634487152f146107595780634576b5db1461080a576102e4565b806318160ddd116102a157806318160ddd146105b0578063182df0f5146105c55780631be19560146105da57806323b872dd1461060f5780632608f81814610652578063267822471461068b576102e4565b806306fdde03146103a45780630933c1ed1461042e578063095ea7b3146104df5780630e7527021461052c578063173b99041461056857806317bfdfbc1461057d575b34156103215760405162461bcd60e51b8152600401808060200182810382526037815260200180611db16037913960400191505060405180910390fd5b6012546040516000916001600160a01b031690829036908083838082843760405192019450600093509091505080830381855af49150503d8060008114610384576040519150601f19603f3d011682016040523d82523d6000602084013e610389565b606091505b505090506040513d6000823e8180156103a0573d82f35b3d82fd5b3480156103b057600080fd5b506103b9610d85565b6040805160208082528351818301528351919283929083019185019080838360005b838110156103f35781810151838201526020016103db565b50505050905090810190601f1680156104205780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561043a57600080fd5b506103b96004803603602081101561045157600080fd5b810190602081018135600160201b81111561046b57600080fd5b82018360208201111561047d57600080fd5b803590602001918460018302840111600160201b8311171561049e57600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550610e12945050505050565b3480156104eb57600080fd5b506105186004803603604081101561050257600080fd5b506001600160a01b038135169060200135610e31565b604080519115158252519081900360200190f35b34801561053857600080fd5b506105566004803603602081101561054f57600080fd5b5035610ea8565b60408051918252519081900360200190f35b34801561057457600080fd5b50610556610f0f565b34801561058957600080fd5b50610556600480360360208110156105a057600080fd5b50356001600160a01b0316610f15565b3480156105bc57600080fd5b50610556610f67565b3480156105d157600080fd5b50610556610f6d565b3480156105e657600080fd5b5061060d600480360360208110156105fd57600080fd5b50356001600160a01b0316610fc4565b005b34801561061b57600080fd5b506105186004803603606081101561063257600080fd5b506001600160a01b03813581169160208101359091169060400135611013565b34801561065e57600080fd5b506105566004803603604081101561067557600080fd5b506001600160a01b038135169060200135611093565b34801561069757600080fd5b506106a06110e9565b604080516001600160a01b039092168252519081900360200190f35b3480156106c857600080fd5b506106d16110f8565b6040805160ff9092168252519081900360200190f35b3480156106f357600080fd5b506105566004803603602081101561070a57600080fd5b50356001600160a01b0316611101565b34801561072657600080fd5b50610556611153565b34801561073b57600080fd5b506105566004803603602081101561075257600080fd5b503561118b565b34801561076557600080fd5b506103b96004803603602081101561077c57600080fd5b810190602081018135600160201b81111561079657600080fd5b8201836020820111156107a857600080fd5b803590602001918460018302840111600160201b831117156107c957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295506111d2945050505050565b34801561081657600080fd5b506105566004803603602081101561082d57600080fd5b50356001600160a01b03166113f1565b34801561084957600080fd5b50610556611443565b34801561085e57600080fd5b5061060d6004803603606081101561087557600080fd5b6001600160a01b03823516916020810135151591810190606081016040820135600160201b8111156108a657600080fd5b8201836020820111156108b857600080fd5b803590602001918460018302840111600160201b831117156108d957600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611449945050505050565b34801561092657600080fd5b506106a06115ec565b34801561093b57600080fd5b506106a06115fb565b34801561095057600080fd5b506105566004803603602081101561096757600080fd5b503561160a565b34801561097a57600080fd5b50610556611651565b34801561098f57600080fd5b506106a0611657565b3480156109a457600080fd5b50610556600480360360208110156109bb57600080fd5b50356001600160a01b0316611666565b3480156109d757600080fd5b506105566116b8565b3480156109ec57600080fd5b5061055660048036036020811015610a0357600080fd5b50356116f0565b348015610a1657600080fd5b50610556611737565b348015610a2b57600080fd5b506103b961173d565b348015610a4057600080fd5b5061055660048036036020811015610a5757600080fd5b50356001600160a01b0316611795565b348015610a7357600080fd5b5061055660048036036020811015610a8a57600080fd5b50356117e7565b348015610a9d57600080fd5b5061055661182e565b348015610ab257600080fd5b5061051860048036036040811015610ac957600080fd5b506001600160a01b038135169060200135611866565b348015610aeb57600080fd5b506105566118bc565b348015610b0057600080fd5b506105566118c2565b348015610b1557600080fd5b5061055660048036036060811015610b2c57600080fd5b506001600160a01b038135811691602081013590911690604001356118fa565b348015610b5857600080fd5b5061055660048036036020811015610b6f57600080fd5b50356001600160a01b0316611958565b348015610b8b57600080fd5b506105566119aa565b348015610ba057600080fd5b50610bc760048036036020811015610bb757600080fd5b50356001600160a01b03166119e2565b604080519485526020850193909352838301919091526060830152519081900360800190f35b348015610bf957600080fd5b5061055660048036036020811015610c1057600080fd5b5035611a74565b348015610c2357600080fd5b5061055660048036036020811015610c3a57600080fd5b5035611abb565b348015610c4d57600080fd5b5061055660048036036040811015610c6457600080fd5b506001600160a01b0381358116916020013516611b02565b348015610c8857600080fd5b50610556611b5c565b348015610c9d57600080fd5b5061055660048036036020811015610cb457600080fd5b50356001600160a01b0316611b94565b348015610cd057600080fd5b506106a0611be6565b348015610ce557600080fd5b5061055660048036036060811015610cfc57600080fd5b506001600160a01b03813581169160208101359160409091013516611bf5565b348015610d2857600080fd5b506106a0611c56565b348015610d3d57600080fd5b50610556611c6a565b348015610d5257600080fd5b5061055660048036036020811015610d6957600080fd5b5035611ca2565b348015610d7c57600080fd5b50610518611ce9565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b820191906000526020600020905b815481529060010190602001808311610ded57829003601f168201915b505050505081565b601254606090610e2b906001600160a01b031683611cee565b92915050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052600090606090610e8790610e12565b9050808060200190516020811015610e9e57600080fd5b5051949350505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663073a938160e11b179052600090606090610eef90610e12565b9050808060200190516020811015610f0657600080fd5b50519392505050565b60085481565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166305eff7ef60e21b179052600090606090610eef90610e12565b600d5481565b6040805160048152602481019091526020810180516001600160e01b031663182df0f560e01b179052600090606090610fa5906111d2565b9050808060200190516020811015610fbc57600080fd5b505191505090565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031662df0cab60e51b17905261100f90610e12565b5050565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905260009060609061107190610e12565b905080806020019051602081101561108857600080fd5b505195945050505050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b03166304c11f0360e31b179052600090606090610e8790610e12565b6004546001600160a01b031681565b60035460ff1681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316633af9e66960e01b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b0316631d8e90d160e11b179052600090606090610fa5906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b03166303e9410160e41b179052600090606090610eef90610e12565b606060006060306001600160a01b0316846040516024018080602001828103825283818151815260200191508051906020019080838360005b8381101561122357818101518382015260200161120b565b50505050905090810190601f1680156112505780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529181526020820180516001600160e01b0316630933c1ed60e01b178152905182519295509350839250908083835b602083106112ab5780518252601f19909201916020918201910161128c565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855afa9150503d806000811461130b576040519150601f19603f3d011682016040523d82523d6000602084013e611310565b606091505b50915091506000821415611325573d60208201fd5b80806020019051602081101561133a57600080fd5b8101908080516040519392919084600160201b82111561135957600080fd5b90830190602082018581111561136e57600080fd5b8251600160201b81118282018810171561138757600080fd5b82525081516020918201929091019080838360005b838110156113b457818101518382015260200161139c565b50505050905090810190601f1680156113e15780820380516001836020036101000a031916815260200191505b5060405250505092505050919050565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316634576b5db60e01b179052600090606090610eef90610e12565b600b5481565b60035461010090046001600160a01b031633146114975760405162461bcd60e51b8152600401808060200182810382526039815260200180611de86039913960400191505060405180910390fd5b81156114d1576040805160048152602481019091526020810180516001600160e01b031663153ab50560e01b1790526114cf90610e12565b505b601280546001600160a01b038581166001600160a01b0319831617909255604051602060248201818152855160448401528551949093169361159d938693909283926064909201919085019080838360005b8381101561153b578181015183820152602001611523565b50505050905090810190601f1680156115685780820380516001836020036101000a031916815260200191505b5060408051601f198184030181529190526020810180516001600160e01b0316630adccee560e31b1790529250610e12915050565b50601254604080516001600160a01b038085168252909216602083015280517fd604de94d45953f9138079ec1b82d533cb2160c906d1076d1f7ed54befbca97a9281900390910190a150505050565b6012546001600160a01b031681565b6005546001600160a01b031681565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663601a0bf160e01b179052600090606090610eef90610e12565b60095481565b6011546001600160a01b031681565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166370a0823160e01b179052600090606090610eef906111d2565b6040805160048152602481019091526020810180516001600160e01b0316630e759dd360e31b179052600090606090610fa590610e12565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663852a12e360e01b179052600090606090610eef90610e12565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e0a5780601f10610ddf57610100808354040283529160200191610e0a565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166395dd919360e01b179052600090606090610eef906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663140e25ad60e31b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b031663a6afed9560e01b179052600090606090610fa590610e12565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052600090606090610e8790610e12565b600a5481565b6040805160048152602481019091526020810180516001600160e01b0316630ae9d70b60e41b179052600090606090610fa5906111d2565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b031663b2a02ff160e01b17905260009060609061107190610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b0316632dc7468360e21b179052600090606090610eef90610e12565b6040805160048152602481019091526020810180516001600160e01b031663bd6d894d60e01b179052600090606090610fa590610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b03166361bfb47160e11b179052600090819081908190606090611a3a906111d2565b9050808060200190516080811015611a5157600080fd5b508051602082015160408301516060909301519199909850919650945092505050565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663317afabb60e21b179052600090606090610eef90610e12565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663db006a7560e01b179052600090606090610eef90610e12565b604080516001600160a01b03808516602483015283166044808301919091528251808303909101815260649091019091526020810180516001600160e01b0316636eb1769f60e11b179052600090606090610e87906111d2565b6040805160048152602481019091526020810180516001600160e01b03166374e38a7960e11b179052600090606090610fa590610e12565b604080516001600160a01b0383166024808301919091528251808303909101815260449091019091526020810180516001600160e01b031663f2b3abbd60e01b179052600090606090610eef90610e12565b6006546001600160a01b031681565b604080516001600160a01b0380861660248301526044820185905283166064808301919091528251808303909101815260849091019091526020810180516001600160e01b0316637af1e23160e11b17905260009060609061107190610e12565b60035461010090046001600160a01b031681565b6040805160048152602481019091526020810180516001600160e01b0316631f1f3b4560e31b179052600090606090610fa5906111d2565b6040805160248082018490528251808303909101815260449091019091526020810180516001600160e01b031663fca7820b60e01b179052600090606090610eef90610e12565b600181565b606060006060846001600160a01b0316846040518082805190602001908083835b60208310611d2e5780518252601f199092019160209182019101611d0f565b6001836020036101000a038019825116818451168082178552505050505050905001915050600060405180830381855af49150503d8060008114611d8e576040519150601f19603f3d011682016040523d82523d6000602084013e611d93565b606091505b50915091506000821415611da8573d60208201fd5b94935050505056fe43457263323044656c656761746f723a66616c6c6261636b3a2063616e6e6f742073656e642076616c756520746f2066616c6c6261636b43457263323044656c656761746f723a3a5f736574496d706c656d656e746174696f6e3a2043616c6c6572206d7573742062652061646d696ea265627a7a72315820d41208f4346cc443222868b255754684294382a6e5faf79df25c49a89b411d7064736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc80000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace200000000000000000000000028707252fdea41b72cf321d153a6c01fa9f6fb790000000000000000000000000000000000000000000000000000b5e620f480000000000000000000000000000000000000000000000000000000000000000140000000000000000000000000000000000000000000000000000000000000018000000000000000000000000000000000000000000000000000000000000000080000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012000000000000000000000000bb93c7f378b9b531216f9ad7b5748be189a5580700000000000000000000000000000000000000000000000000000000000001c0000000000000000000000000000000000000000000000000000000000000000c48756e64726564205553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005685553444300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : underlying_ (address): 0xFF970A61A04b1cA14834A43f5dE4533eBDDB5CC8
Arg [1] : comptroller_ (address): 0x0F390559F258eB8591C8e31Cf0905E97cf36ACE2
Arg [2] : interestRateModel_ (address): 0x28707252fDea41B72cF321D153A6c01FA9f6fb79
Arg [3] : initialExchangeRateMantissa_ (uint256): 200000000000000
Arg [4] : name_ (string): Hundred USDC
Arg [5] : symbol_ (string): hUSDC
Arg [6] : decimals_ (uint8): 8
Arg [7] : admin_ (address): 0x1001009911e3FE1d5B45FF8Efea7732C33a6C012
Arg [8] : implementation_ (address): 0xbb93C7F378B9b531216f9aD7b5748be189A55807
Arg [9] : becomeImplementationData (bytes): 0x00
-----Encoded View---------------
16 Constructor Arguments found :
Arg [0] : 000000000000000000000000ff970a61a04b1ca14834a43f5de4533ebddb5cc8
Arg [1] : 0000000000000000000000000f390559f258eb8591c8e31cf0905e97cf36ace2
Arg [2] : 00000000000000000000000028707252fdea41b72cf321d153a6c01fa9f6fb79
Arg [3] : 0000000000000000000000000000000000000000000000000000b5e620f48000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [7] : 0000000000000000000000001001009911e3fe1d5b45ff8efea7732c33a6c012
Arg [8] : 000000000000000000000000bb93c7f378b9b531216f9ad7b5748be189a55807
Arg [9] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [10] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [11] : 48756e6472656420555344430000000000000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [13] : 6855534443000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [15] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
219:22565:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22286:9;:14;22278:81;;;;-1:-1:-1;;;22278:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22455:14;;:37;;22437:12;;-1:-1:-1;;;;;22455:14:0;;22437:12;;22483:8;;22455:37;22437:12;22483:8;;22437:12;22455:37;1:33:-1;22455:37:0;;45:16:-1;;;-1:-1;22455:37:0;;-1:-1:-1;22455:37:0;;-1:-1:-1;;22455: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;;22436:56:0;;;22552:4;22546:11;22602:14;22599:1;22585:12;22570:47;22638:7;22658:47;;;;22749:14;22735:12;22728:36;22658:47;22688:14;22674:12;22667:36;331:18:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;331:18:1;;;:::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;331:18:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21072:139:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21072:139:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21072:139:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;21072:139:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21072:139: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;21072:139:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21072:139:0;;-1:-1:-1;21072:139:0;;-1:-1:-1;;;;;21072:139:0:i;9087:246::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9087:246:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9087:246:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;5980:227;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5980:227:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5980:227:0;;:::i;:::-;;;;;;;;;;;;;;;;1583:33:1;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1583:33:1;;;:::i;12818:240:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12818:240:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12818:240:0;-1:-1:-1;;;;;12818:240:0;;:::i;2203:23:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2203:23:1;;;:::i;14101:212:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14101:212:0;;;:::i;16161:158::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16161:158:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16161:158:0;-1:-1:-1;;;;;16161:158:0;;:::i;:::-;;8353:274;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8353:274:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;8353:274:0;;;;;;;;;;;;;;;;;:::i;6487:275::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6487:275:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;6487:275:0;;;;;;;;:::i;1027:35:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1027:35:1;;;:::i;:::-;;;;-1:-1:-1;;;;;1027:35:1;;;;;;;;;;;;;;517:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;517:21:1;;;:::i;:::-;;;;;;;;;;;;;;;;;;;10566:234:0;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10566:234:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10566:234:0;-1:-1:-1;;;;;10566:234:0;;:::i;14477:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14477:192:0;;;:::i;18747:225::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18747:225:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;18747:225:0;;:::i;21624:426::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;21624:426:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;21624:426:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;21624:426:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;21624:426: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;21624:426:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;21624:426:0;;-1:-1:-1;21624:426:0;;-1:-1:-1;;;;;21624:426:0:i;17231:255::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17231:255:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17231:255:0;-1:-1:-1;;;;;17231:255:0;;:::i;1977:24:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1977:24:1;;;:::i;2957:632:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2957:632:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;2957:632:0;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;2957:632:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;2957:632: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;2957:632:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;2957:632:0;;-1:-1:-1;2957:632:0;;-1:-1:-1;;;;;2957:632:0:i;8648:29:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8648:29:1;;;:::i;1148:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1148:39:1;;;:::i;19218:237:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19218:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19218:237:0;;:::i;1701:30:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1701:30:1;;;:::i;7721:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7721:25:1;;;:::i;10095:223:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10095:223:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;10095:223:0;-1:-1:-1;;;;;10095:223:0;;:::i;12327:207::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;12327:207:0;;;:::i;5060:239::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5060:239:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5060:239:0;;:::i;2102:25:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2102:25:1;;;:::i;422:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;422:20:1;;;:::i;13260:245:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13260:245:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13260:245:0;-1:-1:-1;;;;;13260:245:0;;:::i;3939:211::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3939:211:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3939:211:0;;:::i;14918:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;14918:195:0;;;:::i;7818:237::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7818:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7818:237:0;;;;;;;;:::i;1847:23:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1847:23:1;;;:::i;11973:214:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11973:214:0;;;:::i;15663:291::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;15663:291:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;15663:291:0;;;;;;;;;;;;;;;;;:::i;16757:256::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;16757:256:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;16757:256:0;-1:-1:-1;;;;;16757:256:0;;:::i;13653:205::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;13653:205:0;;;:::i;11138:281::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11138:281:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11138:281:0;-1:-1:-1;;;;;11138:281:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5560:219;;8:9:-1;5:2;;;30:1;27;20:12;5:2;5560:219:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;5560:219:0;;:::i;4493:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;4493:219:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;4493:219:0;;:::i;9655:257::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9655:257:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;9655:257:0;;;;;;;;;;:::i;18318:193::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;18318:193:0;;;:::i;19816:276::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;19816:276:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19816:276:0;-1:-1:-1;;;;;19816:276:0;;:::i;1284:42:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;1284:42:1;;;:::i;7234:331:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7234:331:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;7234:331:0;;;;;;;;;;;;;;;;;:::i;921:28:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;921:28:1;;;:::i;11589:214:0:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;11589:214:0;;;:::i;17782:265::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;17782:265:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;17782:265:0;;:::i;3197:36:1:-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3197:36:1;;;:::i;331:18::-;;;;;;;;;;;;;;;-1:-1:-1;;331:18:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;21072:139:0:-;21183:14;;21141:12;;21172:32;;-1:-1:-1;;;;;21183:14:0;21199:4;21172:10;:32::i;:::-;21165:39;21072:139;-1:-1:-1;;21072:139:0:o;9087:246::-;9216:68;;;-1:-1:-1;;;;;9216:68:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;9216:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;9155:4:0;;9171:17;;9191:94;;:24;:94::i;:::-;9171:114;;9313:4;9302:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;9302:24:0;;9087:246;-1:-1:-1;;;;9087:246:0:o;5980:227::-;6098:60;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6098:60:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;6037:4:0;;6053:17;;6073:86;;:24;:86::i;:::-;6053:106;;6187:4;6176:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;6176:24:0;;5980:227;-1:-1:-1;;;5980:227:0:o;1583:33:1:-;;;;:::o;12818:240:0:-;12944:65;;;-1:-1:-1;;;;;12944:65:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;12944:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12883:4:0;;12899:17;;12919:91;;:24;:91::i;2203:23:1:-;;;;:::o;14101:212:0:-;14217:47;;;22:32:-1;6:49;;14217:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14152:4:0;;14168:17;;14188:77;;:28;:77::i;:::-;14168:97;;14293:4;14282:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14282:24:0;;-1:-1:-1;;14101:212:0;:::o;16161:158::-;16258:53;;;-1:-1:-1;;;;;16258:53:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16258:53:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;16233:79:0;;:24;:79::i;:::-;;16161:158;:::o;8353:274::-;8496:82;;;-1:-1:-1;;;;;8496:82:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;8496:82:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;8435:4:0;;8451:17;;8471:108;;:24;:108::i;:::-;8451:128;;8607:4;8596:24;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;8596:24:0;;8353:274;-1:-1:-1;;;;;8353:274:0:o;6487:275::-;6629:84;;;-1:-1:-1;;;;;6629:84:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;6629:84:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;6568:4:0;;6584:17;;6604:110;;:24;:110::i;1027:35:1:-;;;-1:-1:-1;;;;;1027:35:1;;:::o;517:21::-;;;;;;:::o;10566:234:0:-;10689:62;;;-1:-1:-1;;;;;10689:62:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10689:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;10628:4:0;;10644:17;;10664:88;;:24;:88::i;14477:192::-;14584:36;;;22:32:-1;6:49;;14584:36:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14519:4:0;;14535:17;;14555:66;;:28;:66::i;18747:225::-;18864:59;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18864:59:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18803:4:0;;18819:17;;18839:85;;:24;:85::i;21624:426::-;21702:12;21727;21741:23;21776:4;-1:-1:-1;;;;;21768:24:0;21852:4;21793: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;21793:64:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;21793:64:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;21793:64:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;21768:90:0;;;;21793:64;;-1:-1:-1;21768:90:0;-1:-1:-1;21768:90:0;;-1:-1:-1;25:18;21768: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;;;21768: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;;21726:132:0;;;;21906:1;21897:7;21894:14;21891:2;;;21957:14;21950:4;21938:10;21934:21;21927:45;21891:2;22023:10;22012:31;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;22012: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;22012:31:0;;420:4:-1;411:14;;;;22012:31:0;;;;;411:14:-1;22012: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;22012:31:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22005:38;;;;21624:426;;;:::o;17231:255::-;17370:67;;;-1:-1:-1;;;;;17370:67:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17370:67:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;17309:4:0;;17325:17;;17345:93;;:24;:93::i;1977:24:1:-;;;;:::o;2957:632:0:-;3106:5;;;;;-1:-1:-1;;;;;3106:5:0;3092:10;:19;3084:89;;;;-1:-1:-1;;;3084:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3188:11;3184:118;;;3240:50;;;22:32:-1;6:49;;3240:50:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3215:76:0;;:24;:76::i;:::-;;3184:118;3340:14;;;-1:-1:-1;;;;;3364:32:0;;;-1:-1:-1;;;;;;3364:32:0;;;;;;3432:81;;;;;;;;;;;;;;;;;3340:14;;;;;3407:107;;3488:24;;3432:81;;;;;;;;;;;;;;;;3312: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;3432:81:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3432:81:0;;;-1:-1:-1;;26:21;;;22:32;6:49;;3432:81:0;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3432:81:0;-1:-1:-1;3407:24:0;;-1:-1:-1;;3407:107:0:i;:::-;-1:-1:-1;3567:14:0;;3530:52;;;-1:-1:-1;;;;;3530:52:0;;;;;3567:14;;;3530:52;;;;;;;;;;;;;;;;2957:632;;;;:::o;8648:29:1:-;;;-1:-1:-1;;;;;8648:29:1;;:::o;1148:39::-;;;-1:-1:-1;;;;;1148:39:1;;:::o;19218:237:0:-;19341:65;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;19341:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;19280:4:0;;19296:17;;19316:91;;:24;:91::i;1701:30:1:-;;;;:::o;7721:25::-;;;-1:-1:-1;;;;;7721:25:1;;:::o;10095:223:0:-;10217:52;;;-1:-1:-1;;;;;10217:52:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;10217:52:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;10152:4:0;;10168:17;;10188:82;;:28;:82::i;12327:207::-;12437:48;;;22:32:-1;6:49;;12437:48:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12376:4:0;;12392:17;;12412:74;;:24;:74::i;5060:239::-;5184:66;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;5184:66:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;5123:4:0;;5139:17;;5159:92;;:24;:92::i;2102:25:1:-;;;;:::o;422:20::-;;;;;;;;;;;;;;-1:-1:-1;;422:20:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13260:245:0;13392:64;;;-1:-1:-1;;;;;13392:64:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;13392:64:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;13327:4:0;;13343:17;;13363:94;;:28;:94::i;3939:211::-;4049:52;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;4049:52:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;3988:4:0;;4004:17;;4024:78;;:24;:78::i;14918:195::-;15021:43;;;22:32:-1;6:49;;15021:43:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;14960:4:0;;14976:17;;14996:69;;:24;:69::i;7818:237::-;7941:65;;;-1:-1:-1;;;;;7941:65:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7941:65:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7880:4:0;;7896:17;;7916:91;;:24;:91::i;1847:23:1:-;;;;:::o;11973:214:0:-;12091:47;;;22:32:-1;6:49;;12091:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;12026:4:0;;12042:17;;12062:77;;:28;:77::i;15663:291::-;15813:92;;;-1:-1:-1;;;;;15813:92:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;15813:92:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;15752:4:0;;15768:17;;15788:118;;:24;:118::i;16757:256::-;16895:69;;;-1:-1:-1;;;;;16895:69:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;16895:69:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;16834:4:0;;16850:17;;16870:95;;:24;:95::i;13653:205::-;13761:48;;;22:32:-1;6:49;;13761:48:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;13700:4:0;;13716:17;;13736:74;;:24;:74::i;11138:281::-;11289:63;;;-1:-1:-1;;;;;11289:63:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;11289:63:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;11206:4:0;;;;;;;;11240:17;;11260:93;;:28;:93::i;:::-;11240:113;;11381:4;11370:42;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;11370:42:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;11370:42:0;;-1:-1:-1;11370:42:0;-1:-1:-1;11138:281:0;-1:-1:-1;;;11138:281:0:o;5560:219::-;5674:56;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;5674:56:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;5613:4:0;;5629:17;;5649:82;;:24;:82::i;4493:219::-;4607:56;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;4607:56:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;4546:4:0;;4562:17;;4582:82;;:24;:82::i;9655:257::-;9794:69;;;-1:-1:-1;;;;;9794:69:0;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;9794:69:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;9729:4:0;;9745:17;;9765:99;;:28;:99::i;18318:193::-;18421:41;;;22:32:-1;6:49;;18421:41:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18360:4:0;;18376:17;;18396:67;;:24;:67::i;19816:276::-;19964:79;;;-1:-1:-1;;;;;19964:79:0;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;19964:79:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;19903:4:0;;19919:17;;19939:105;;:24;:105::i;1284:42:1:-;;;-1:-1:-1;;;;;1284:42:1;;:::o;7234:331:0:-;7408:108;;;-1:-1:-1;;;;;7408:108:0;;;;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;7408:108:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;7347:4:0;;7363:17;;7383:134;;:24;:134::i;921:28:1:-;;;;;;-1:-1:-1;;;;;921:28:1;;:::o;11589:214:0:-;11707:47;;;22:32:-1;6:49;;11707:47:0;;;;;;49:4:-1;25:18;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;11642:4:0;;11658:17;;11678:77;;:28;:77::i;17782:265::-;17919:79;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;17919:79:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;17858:4:0;;17874:17;;17894:105;;:24;:105::i;3197:36:1:-;3229:4;3197:36;:::o;20443:335:0:-;20516:12;20541;20555:23;20582:6;-1:-1:-1;;;;;20582:19:0;20602:4;20582: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;;;20582: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;;20540:67:0;;;;20655:1;20646:7;20643:14;20640:2;;;20706:14;20699:4;20687:10;20683:21;20676:45;20640:2;20761:10;20443:335;-1:-1:-1;;;;20443:335:0:o
Swarm Source
bzzr://d41208f4346cc443222868b255754684294382a6e5faf79df25c49a89b411d70
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$18,107.86
Net Worth in ETH
6.747075
Token Allocations
USDC.E
100.00%
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ARB | 100.00% | $0.999782 | 18,111.812 | $18,107.86 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.