Contract Overview
Balance:
0 AVAX
AVAX Value:
$0.00
My Name Tag:
Not Available, login to update
Txn Hash | Method |
Block
|
From
|
To
|
Value | [Txn Fee] | |||
---|---|---|---|---|---|---|---|---|---|
0x64e8c5d2e9e19f3cf726d1d150e0923ef5869b1ef9ce1965e14f93d9c5991237 | 0x60806040 | 3046646 | 272 days 1 hr ago | 0x5423819b3b5bb38b0e9e9e59f22f9034e2d8819b | IN | Create: QiErc20Delegate | 0 AVAX | 1.0746909 |
[ Download CSV Export ]
Contract Name:
QiErc20Delegate
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at snowtrace.io on 2021-11-02 */ /** * File: ComptrollerInterface.sol */ pragma solidity 0.5.17; 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 qiTokens) external returns (uint[] memory); function exitMarket(address qiToken) external returns (uint); /*** Policy Hooks ***/ function mintAllowed(address qiToken, address minter, uint mintAmount) external returns (uint); function mintVerify(address qiToken, address minter, uint mintAmount, uint mintTokens) external; function redeemAllowed(address qiToken, address redeemer, uint redeemTokens) external returns (uint); function redeemVerify(address qiToken, address redeemer, uint redeemAmount, uint redeemTokens) external; function borrowAllowed(address qiToken, address borrower, uint borrowAmount) external returns (uint); function borrowVerify(address qiToken, address borrower, uint borrowAmount) external; function repayBorrowAllowed( address qiToken, address payer, address borrower, uint repayAmount) external returns (uint); function repayBorrowVerify( address qiToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external; function liquidateBorrowAllowed( address qiTokenBorrowed, address qiTokenCollateral, address liquidator, address borrower, uint repayAmount) external returns (uint); function liquidateBorrowVerify( address qiTokenBorrowed, address qiTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external; function seizeAllowed( address qiTokenCollateral, address qiTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external returns (uint); function seizeVerify( address qiTokenCollateral, address qiTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external; function transferAllowed(address qiToken, address src, address dst, uint transferTokens) external returns (uint); function transferVerify(address qiToken, address src, address dst, uint transferTokens) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address qiTokenBorrowed, address qiTokenCollateral, uint repayAmount) external view returns (uint, uint); } /** * File: InterestRateModel.sol */ pragma solidity 0.5.17; /** * @title Benqi's InterestRateModel Interface * @author Benqi */ 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 timestmp * @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 timestmp (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 timestmp * @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 timestmp (as a percentage, and scaled by 1e18) */ function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint); } /** * File: EIP20NonStandardInterface.sol */ pragma solidity 0.5.17; /** * @title EIP20NonStandardInterface * @dev Version of ERC20 with no return values for `transfer` and `transferFrom` * See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ interface EIP20NonStandardInterface { /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transfer(address dst, uint256 amount) external; /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transferFrom(address src, address dst, uint256 amount) external; /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } /** * File: QiTokenInterfaces.sol */ pragma solidity 0.5.17; contract QiTokenStorage { /** * @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-qiToken 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 QiTokens (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 accrualBlockTimestamp; /** * @notice Accumulator of the total earned interest rate since the opening of the market */ uint public borrowIndex; /** * @notice Total amount of outstanding borrows of the underlying in this market */ uint public totalBorrows; /** * @notice Total amount of reserves of the underlying held in this market */ uint public totalReserves; /** * @notice Total number of tokens in circulation */ uint public totalSupply; /** * @notice Official record of token balances for each account */ mapping (address => uint) internal accountTokens; /** * @notice Approved token transfer amounts on behalf of others */ mapping (address => mapping (address => uint)) internal transferAllowances; /** * @notice Container for borrow balance information * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action * @member interestIndex Global borrowIndex as of the most recent balance-changing action */ struct BorrowSnapshot { uint principal; uint interestIndex; } /** * @notice Mapping of account addresses to outstanding borrow balances */ mapping(address => BorrowSnapshot) internal accountBorrows; /** * @notice Share of seized collateral that is added to reserves */ uint public protocolSeizeShareMantissa; } contract QiTokenInterface is QiTokenStorage { /** * @notice Indicator that this is a QiToken contract (for inspection) */ bool public constant isQiToken = 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 qiTokenCollateral, 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 protocol seize share is changed */ event NewProtocolSeizeShare(uint oldProtocolSeizeShareMantissa, uint newProtocolSeizeShareMantissa); /** * @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 borrowRatePerTimestamp() external view returns (uint); function supplyRatePerTimestamp() 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); function _setProtocolSeizeShare(uint newProtocolSeizeShareMantissa) external returns (uint); } contract QiErc20Storage { /** * @notice Underlying asset for this QiToken */ address public underlying; } contract QiErc20Interface is QiErc20Storage { /*** 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, QiTokenInterface qiTokenCollateral) external returns (uint); function sweepToken(EIP20NonStandardInterface token) external; /*** Admin Functions ***/ function _addReserves(uint addAmount) external returns (uint); } contract QiDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract QiDelegatorInterface is QiDelegationStorage { /** * @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 QiDelegateInterface is QiDelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; } /** * File: ErrorReporter.sol */ pragma solidity 0.5.17; contract ComptrollerErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, COMPTROLLER_MISMATCH, INSUFFICIENT_SHORTFALL, INSUFFICIENT_LIQUIDITY, INVALID_CLOSE_FACTOR, INVALID_COLLATERAL_FACTOR, INVALID_LIQUIDATION_INCENTIVE, MARKET_NOT_ENTERED, // no longer possible MARKET_NOT_LISTED, MARKET_ALREADY_LISTED, MATH_ERROR, NONZERO_BORROW_BALANCE, PRICE_ERROR, REJECTION, SNAPSHOT_ERROR, TOO_MANY_ASSETS, TOO_MUCH_REPAY } enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCEPT_PENDING_IMPLEMENTATION_ADDRESS_CHECK, EXIT_MARKET_BALANCE_OWED, EXIT_MARKET_REJECTION, SET_CLOSE_FACTOR_OWNER_CHECK, SET_CLOSE_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_NO_EXISTS, SET_COLLATERAL_FACTOR_VALIDATION, SET_COLLATERAL_FACTOR_WITHOUT_PRICE, SET_IMPLEMENTATION_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_OWNER_CHECK, SET_LIQUIDATION_INCENTIVE_VALIDATION, SET_MAX_ASSETS_OWNER_CHECK, SET_PENDING_ADMIN_OWNER_CHECK, SET_PENDING_IMPLEMENTATION_OWNER_CHECK, SET_PRICE_ORACLE_OWNER_CHECK, SUPPORT_MARKET_EXISTS, SUPPORT_MARKET_OWNER_CHECK, SET_PAUSE_GUARDIAN_OWNER_CHECK } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } contract TokenErrorReporter { enum Error { NO_ERROR, UNAUTHORIZED, BAD_INPUT, COMPTROLLER_REJECTION, COMPTROLLER_CALCULATION_ERROR, INTEREST_RATE_MODEL_ERROR, INVALID_ACCOUNT_PAIR, INVALID_CLOSE_AMOUNT_REQUESTED, INVALID_COLLATERAL_FACTOR, MATH_ERROR, MARKET_NOT_FRESH, MARKET_NOT_LISTED, TOKEN_INSUFFICIENT_ALLOWANCE, TOKEN_INSUFFICIENT_BALANCE, TOKEN_INSUFFICIENT_CASH, TOKEN_TRANSFER_IN_FAILED, TOKEN_TRANSFER_OUT_FAILED } /* * Note: FailureInfo (but not Error) is kept in alphabetical order * This is because FailureInfo grows significantly faster, and * the order of Error has some meaning, while the order of FailureInfo * is entirely arbitrary. */ enum FailureInfo { ACCEPT_ADMIN_PENDING_ADMIN_CHECK, ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, ACCRUE_INTEREST_BORROW_RATE_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, BORROW_ACCRUE_INTEREST_FAILED, BORROW_CASH_NOT_AVAILABLE, BORROW_FRESHNESS_CHECK, BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, BORROW_MARKET_NOT_LISTED, BORROW_COMPTROLLER_REJECTION, LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED, LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED, LIQUIDATE_COLLATERAL_FRESHNESS_CHECK, LIQUIDATE_COMPTROLLER_REJECTION, LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED, LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX, LIQUIDATE_CLOSE_AMOUNT_IS_ZERO, LIQUIDATE_FRESHNESS_CHECK, LIQUIDATE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_REPAY_BORROW_FRESH_FAILED, LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER, LIQUIDATE_SEIZE_TOO_MUCH, MINT_ACCRUE_INTEREST_FAILED, MINT_COMPTROLLER_REJECTION, MINT_EXCHANGE_CALCULATION_FAILED, MINT_EXCHANGE_RATE_READ_FAILED, MINT_FRESHNESS_CHECK, MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, MINT_TRANSFER_IN_FAILED, MINT_TRANSFER_IN_NOT_POSSIBLE, REDEEM_ACCRUE_INTEREST_FAILED, REDEEM_COMPTROLLER_REJECTION, REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, REDEEM_EXCHANGE_RATE_READ_FAILED, REDEEM_FRESHNESS_CHECK, REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, REDEEM_TRANSFER_OUT_NOT_POSSIBLE, REDUCE_RESERVES_ACCRUE_INTEREST_FAILED, REDUCE_RESERVES_ADMIN_CHECK, REDUCE_RESERVES_CASH_NOT_AVAILABLE, REDUCE_RESERVES_FRESH_CHECK, REDUCE_RESERVES_VALIDATION, REPAY_BEHALF_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCRUE_INTEREST_FAILED, REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, REPAY_BORROW_COMPTROLLER_REJECTION, REPAY_BORROW_FRESHNESS_CHECK, REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, REPAY_BORROW_TRANSFER_IN_NOT_POSSIBLE, SET_COLLATERAL_FACTOR_OWNER_CHECK, SET_COLLATERAL_FACTOR_VALIDATION, SET_COMPTROLLER_OWNER_CHECK, SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED, SET_INTEREST_RATE_MODEL_FRESH_CHECK, SET_INTEREST_RATE_MODEL_OWNER_CHECK, SET_MAX_ASSETS_OWNER_CHECK, SET_ORACLE_MARKET_NOT_LISTED, SET_PENDING_ADMIN_OWNER_CHECK, SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED, SET_RESERVE_FACTOR_ADMIN_CHECK, SET_RESERVE_FACTOR_FRESH_CHECK, SET_RESERVE_FACTOR_BOUNDS_CHECK, TRANSFER_COMPTROLLER_REJECTION, TRANSFER_NOT_ALLOWED, TRANSFER_NOT_ENOUGH, TRANSFER_TOO_MUCH, ADD_RESERVES_ACCRUE_INTEREST_FAILED, ADD_RESERVES_FRESH_CHECK, ADD_RESERVES_TRANSFER_IN_NOT_POSSIBLE, SET_PROTOCOL_SEIZE_SHARE_ACCRUE_INTEREST_FAILED, SET_PROTOCOL_SEIZE_SHARE_OWNER_CHECK, SET_PROTOCOL_SEIZE_SHARE_FRESH_CHECK } /** * @dev `error` corresponds to enum Error; `info` corresponds to enum FailureInfo, and `detail` is an arbitrary * contract-specific code that enables us to report opaque error codes from upgradeable contracts. **/ event Failure(uint error, uint info, uint detail); /** * @dev use this when reporting a known error from the money market or a non-upgradeable collaborator */ function fail(Error err, FailureInfo info) internal returns (uint) { emit Failure(uint(err), uint(info), 0); return uint(err); } /** * @dev use this when reporting an opaque error from an upgradeable collaborator contract */ function failOpaque(Error err, FailureInfo info, uint opaqueError) internal returns (uint) { emit Failure(uint(err), uint(info), opaqueError); return uint(err); } } /** * File: CarefulMath.sol */ pragma solidity 0.5.17; /** * @title Careful Math * @author Benqi * @notice Derived from OpenZeppelin's SafeMath library * https://github.com/OpenZeppelin/openzeppelin-solidity/blob/master/contracts/math/SafeMath.sol */ contract CarefulMath { /** * @dev Possible error codes that we can return */ enum MathError { NO_ERROR, DIVISION_BY_ZERO, INTEGER_OVERFLOW, INTEGER_UNDERFLOW } /** * @dev Multiplies two numbers, returns an error on overflow. */ function mulUInt(uint a, uint b) internal pure returns (MathError, uint) { if (a == 0) { return (MathError.NO_ERROR, 0); } uint c = a * b; if (c / a != b) { return (MathError.INTEGER_OVERFLOW, 0); } else { return (MathError.NO_ERROR, c); } } /** * @dev Integer division of two numbers, truncating the quotient. */ function divUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b == 0) { return (MathError.DIVISION_BY_ZERO, 0); } return (MathError.NO_ERROR, a / b); } /** * @dev Subtracts two numbers, returns an error on overflow (i.e. if subtrahend is greater than minuend). */ function subUInt(uint a, uint b) internal pure returns (MathError, uint) { if (b <= a) { return (MathError.NO_ERROR, a - b); } else { return (MathError.INTEGER_UNDERFLOW, 0); } } /** * @dev Adds two numbers, returns an error on overflow. */ function addUInt(uint a, uint b) internal pure returns (MathError, uint) { uint c = a + b; if (c >= a) { return (MathError.NO_ERROR, c); } else { return (MathError.INTEGER_OVERFLOW, 0); } } /** * @dev add a and b and then subtract c */ function addThenSubUInt(uint a, uint b, uint c) internal pure returns (MathError, uint) { (MathError err0, uint sum) = addUInt(a, b); if (err0 != MathError.NO_ERROR) { return (err0, 0); } return subUInt(sum, c); } } /** * File: ExponentialNoError.sol */ pragma solidity 0.5.17; /** * @title Exponential module for storing fixed-precision decimals * @author Benqi * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract ExponentialNoError { uint constant expScale = 1e18; uint constant doubleScale = 1e36; uint constant halfExpScale = expScale/2; uint constant mantissaOne = expScale; struct Exp { uint mantissa; } struct Double { uint mantissa; } /** * @dev Truncates the given exp to a whole number value. * For example, truncate(Exp{mantissa: 15 * expScale}) = 15 */ function truncate(Exp memory exp) pure internal returns (uint) { // Note: We are not using careful math here as we're performing a division that cannot fail return exp.mantissa / expScale; } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mul_ScalarTruncate(Exp memory a, uint scalar) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return truncate(product); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mul_ScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (uint) { Exp memory product = mul_(a, scalar); return add_(truncate(product), addend); } /** * @dev Checks if first Exp is less than second Exp. */ function lessThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa < right.mantissa; } /** * @dev Checks if left Exp <= right Exp. */ function lessThanOrEqualExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa <= right.mantissa; } /** * @dev Checks if left Exp > right Exp. */ function greaterThanExp(Exp memory left, Exp memory right) pure internal returns (bool) { return left.mantissa > right.mantissa; } /** * @dev returns true if Exp is exactly zero */ function isZeroExp(Exp memory value) pure internal returns (bool) { return value.mantissa == 0; } function safe224(uint n, string memory errorMessage) pure internal returns (uint224) { require(n < 2**224, errorMessage); return uint224(n); } function safe32(uint n, string memory errorMessage) pure internal returns (uint32) { require(n < 2**32, errorMessage); return uint32(n); } function add_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: add_(a.mantissa, b.mantissa)}); } function add_(uint a, uint b) pure internal returns (uint) { return add_(a, b, "addition overflow"); } function add_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { uint c = a + b; require(c >= a, errorMessage); return c; } function sub_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: sub_(a.mantissa, b.mantissa)}); } function sub_(uint a, uint b) pure internal returns (uint) { return sub_(a, b, "subtraction underflow"); } function sub_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b <= a, errorMessage); return a - b; } function mul_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b.mantissa) / expScale}); } function mul_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Exp memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / expScale; } function mul_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b.mantissa) / doubleScale}); } function mul_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: mul_(a.mantissa, b)}); } function mul_(uint a, Double memory b) pure internal returns (uint) { return mul_(a, b.mantissa) / doubleScale; } function mul_(uint a, uint b) pure internal returns (uint) { return mul_(a, b, "multiplication overflow"); } function mul_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { if (a == 0 || b == 0) { return 0; } uint c = a * b; require(c / a == b, errorMessage); return c; } function div_(Exp memory a, Exp memory b) pure internal returns (Exp memory) { return Exp({mantissa: div_(mul_(a.mantissa, expScale), b.mantissa)}); } function div_(Exp memory a, uint b) pure internal returns (Exp memory) { return Exp({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Exp memory b) pure internal returns (uint) { return div_(mul_(a, expScale), b.mantissa); } function div_(Double memory a, Double memory b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a.mantissa, doubleScale), b.mantissa)}); } function div_(Double memory a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(a.mantissa, b)}); } function div_(uint a, Double memory b) pure internal returns (uint) { return div_(mul_(a, doubleScale), b.mantissa); } function div_(uint a, uint b) pure internal returns (uint) { return div_(a, b, "divide by zero"); } function div_(uint a, uint b, string memory errorMessage) pure internal returns (uint) { require(b > 0, errorMessage); return a / b; } function fraction(uint a, uint b) pure internal returns (Double memory) { return Double({mantissa: div_(mul_(a, doubleScale), b)}); } } /** * File: Exponential.sol */ pragma solidity 0.5.17; /** * @title Exponential module for storing fixed-precision decimals * @author Benqi * @dev Legacy contract for compatibility reasons with existing contracts that still use MathError * @notice Exp is a struct which stores decimals with a fixed precision of 18 decimal places. * Thus, if we wanted to store the 5.1, mantissa would store 5.1e18. That is: * `Exp({mantissa: 5100000000000000000})`. */ contract Exponential is CarefulMath, ExponentialNoError { /** * @dev Creates an exponential from numerator and denominator values. * Note: Returns an error if (`num` * 10e18) > MAX_INT, * or if `denom` is zero. */ function getExp(uint num, uint denom) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledNumerator) = mulUInt(num, expScale); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } (MathError err1, uint rational) = divUInt(scaledNumerator, denom); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: rational})); } /** * @dev Adds two exponentials, returning a new exponential. */ function addExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = addUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Subtracts two exponentials, returning a new exponential. */ function subExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError error, uint result) = subUInt(a.mantissa, b.mantissa); return (error, Exp({mantissa: result})); } /** * @dev Multiply an Exp by a scalar, returning a new Exp. */ function mulScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint scaledMantissa) = mulUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: scaledMantissa})); } /** * @dev Multiply an Exp by a scalar, then truncate to return an unsigned integer. */ function mulScalarTruncate(Exp memory a, uint scalar) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(product)); } /** * @dev Multiply an Exp by a scalar, truncate, then add an to an unsigned integer, returning an unsigned integer. */ function mulScalarTruncateAddUInt(Exp memory a, uint scalar, uint addend) pure internal returns (MathError, uint) { (MathError err, Exp memory product) = mulScalar(a, scalar); if (err != MathError.NO_ERROR) { return (err, 0); } return addUInt(truncate(product), addend); } /** * @dev Divide an Exp by a scalar, returning a new Exp. */ function divScalar(Exp memory a, uint scalar) pure internal returns (MathError, Exp memory) { (MathError err0, uint descaledMantissa) = divUInt(a.mantissa, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return (MathError.NO_ERROR, Exp({mantissa: descaledMantissa})); } /** * @dev Divide a scalar by an Exp, returning a new Exp. */ function divScalarByExp(uint scalar, Exp memory divisor) pure internal returns (MathError, Exp memory) { /* We are doing this as: getExp(mulUInt(expScale, scalar), divisor.mantissa) How it works: Exp = a / b; Scalar = s; `s / (a / b)` = `b * s / a` and since for an Exp `a = mantissa, b = expScale` */ (MathError err0, uint numerator) = mulUInt(expScale, scalar); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } return getExp(numerator, divisor.mantissa); } /** * @dev Divide a scalar by an Exp, then truncate to return an unsigned integer. */ function divScalarByExpTruncate(uint scalar, Exp memory divisor) pure internal returns (MathError, uint) { (MathError err, Exp memory fraction) = divScalarByExp(scalar, divisor); if (err != MathError.NO_ERROR) { return (err, 0); } return (MathError.NO_ERROR, truncate(fraction)); } /** * @dev Multiplies two exponentials, returning a new exponential. */ function mulExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { (MathError err0, uint doubleScaledProduct) = mulUInt(a.mantissa, b.mantissa); if (err0 != MathError.NO_ERROR) { return (err0, Exp({mantissa: 0})); } // We add half the scale before dividing so that we get rounding instead of truncation. // See "Listing 6" and text above it at https://accu.org/index.php/journals/1717 // Without this change, a result like 6.6...e-19 will be truncated to 0 instead of being rounded to 1e-18. (MathError err1, uint doubleScaledProductWithHalfScale) = addUInt(halfExpScale, doubleScaledProduct); if (err1 != MathError.NO_ERROR) { return (err1, Exp({mantissa: 0})); } (MathError err2, uint product) = divUInt(doubleScaledProductWithHalfScale, expScale); // The only error `div` can return is MathError.DIVISION_BY_ZERO but we control `expScale` and it is not zero. assert(err2 == MathError.NO_ERROR); return (MathError.NO_ERROR, Exp({mantissa: product})); } /** * @dev Multiplies two exponentials given their mantissas, returning a new exponential. */ function mulExp(uint a, uint b) pure internal returns (MathError, Exp memory) { return mulExp(Exp({mantissa: a}), Exp({mantissa: b})); } /** * @dev Multiplies three exponentials, returning a new exponential. */ function mulExp3(Exp memory a, Exp memory b, Exp memory c) pure internal returns (MathError, Exp memory) { (MathError err, Exp memory ab) = mulExp(a, b); if (err != MathError.NO_ERROR) { return (err, ab); } return mulExp(ab, c); } /** * @dev Divides two exponentials, returning a new exponential. * (a/scale) / (b/scale) = (a/scale) * (scale/b) = a/b, * which we can scale as an Exp by calling getExp(a.mantissa, b.mantissa) */ function divExp(Exp memory a, Exp memory b) pure internal returns (MathError, Exp memory) { return getExp(a.mantissa, b.mantissa); } } /** * File: EIP20Interface.sol */ pragma solidity 0.5.17; /** * @title ERC 20 Token Standard Interface * https://eips.ethereum.org/EIPS/eip-20 */ interface EIP20Interface { function name() external view returns (string memory); function symbol() external view returns (string memory); function decimals() external view returns (uint8); /** * @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 `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, uint256 amount) external returns (bool success); /** * @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 success); /** * @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 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 (-1 means infinite) */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } /** * File: QiToken.sol */ pragma solidity 0.5.17; /** * @title Benqi's QiToken Contract * @notice Abstract base for QiTokens * @author Benqi */ contract QiToken is QiTokenInterface, Exponential, TokenErrorReporter { /** * @notice Initialize the money market * @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_ EIP-20 name of this token * @param symbol_ EIP-20 symbol of this token * @param decimals_ EIP-20 decimal precision of this token */ function initialize(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { require(msg.sender == admin, "only admin may initialize the market"); require(accrualBlockTimestamp == 0 && borrowIndex == 0, "market may only be initialized once"); // Set initial exchange rate initialExchangeRateMantissa = initialExchangeRateMantissa_; require(initialExchangeRateMantissa > 0, "initial exchange rate must be greater than zero."); // Set the comptroller uint err = _setComptroller(comptroller_); require(err == uint(Error.NO_ERROR), "setting comptroller failed"); // Initialize block timestamp and borrow index (block timestamp mocks depend on comptroller being set) accrualBlockTimestamp = getBlockTimestamp(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block timestamp / borrow index) err = _setInterestRateModelFresh(interestRateModel_); require(err == uint(Error.NO_ERROR), "setting interest rate model failed"); name = name_; symbol = symbol_; decimals = decimals_; // The counter starts true to prevent changing it from zero to non-zero (i.e. smaller cost/refund) _notEntered = true; } /** * @notice Transfer `tokens` tokens from `src` to `dst` by `spender` * @dev Called by both `transfer` and `transferFrom` internally * @param spender The address of the account performing the transfer * @param src The address of the source account * @param dst The address of the destination account * @param tokens The number of tokens to transfer * @return Whether or not the transfer succeeded */ function transferTokens(address spender, address src, address dst, uint tokens) internal returns (uint) { /* Fail if transfer not allowed */ uint allowed = comptroller.transferAllowed(address(this), src, dst, tokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.TRANSFER_COMPTROLLER_REJECTION, allowed); } /* Do not allow self-transfers */ if (src == dst) { return fail(Error.BAD_INPUT, FailureInfo.TRANSFER_NOT_ALLOWED); } /* Get the allowance, infinite for the account owner */ uint startingAllowance = 0; if (spender == src) { startingAllowance = uint(-1); } else { startingAllowance = transferAllowances[src][spender]; } /* Do the calculations, checking for {under,over}flow */ MathError mathErr; uint allowanceNew; uint srqiTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srqiTokensNew) = subUInt(accountTokens[src], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ENOUGH); } (mathErr, dstTokensNew) = addUInt(accountTokens[dst], tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_TOO_MUCH); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) accountTokens[src] = srqiTokensNew; accountTokens[dst] = dstTokensNew; /* Eat some of the allowance (if necessary) */ if (startingAllowance != uint(-1)) { transferAllowances[src][spender] = allowanceNew; } /* We emit a Transfer event */ emit Transfer(src, dst, tokens); // unused function // comptroller.transferVerify(address(this), src, dst, tokens); return uint(Error.NO_ERROR); } /** * @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, uint256 amount) external nonReentrant returns (bool) { return transferTokens(msg.sender, msg.sender, dst, amount) == uint(Error.NO_ERROR); } /** * @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 nonReentrant returns (bool) { return transferTokens(msg.sender, src, dst, amount) == uint(Error.NO_ERROR); } /** * @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) { address src = msg.sender; transferAllowances[src][spender] = amount; emit Approval(src, spender, amount); return true; } /** * @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 (uint256) { return transferAllowances[owner][spender]; } /** * @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 (uint256) { return accountTokens[owner]; } /** * @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) { Exp memory exchangeRate = Exp({mantissa: exchangeRateCurrent()}); (MathError mErr, uint balance) = mulScalarTruncate(exchangeRate, accountTokens[owner]); require(mErr == MathError.NO_ERROR, "balance could not be calculated"); return balance; } /** * @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) { uint qiTokenBalance = accountTokens[account]; uint borrowBalance; uint exchangeRateMantissa; MathError mErr; (mErr, borrowBalance) = borrowBalanceStoredInternal(account); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } (mErr, exchangeRateMantissa) = exchangeRateStoredInternal(); if (mErr != MathError.NO_ERROR) { return (uint(Error.MATH_ERROR), 0, 0, 0); } return (uint(Error.NO_ERROR), qiTokenBalance, borrowBalance, exchangeRateMantissa); } /** * @dev Function to simply retrieve block timestamp * This exists mainly for inheriting test contracts to stub this result. */ function getBlockTimestamp() internal view returns (uint) { return block.timestamp; } /** * @notice Returns the current per-timestamp borrow interest rate for this qiToken * @return The borrow interest rate per timestmp, scaled by 1e18 */ function borrowRatePerTimestamp() external view returns (uint) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @notice Returns the current per-timestamp supply interest rate for this qiToken * @return The supply interest rate per timestmp, scaled by 1e18 */ function supplyRatePerTimestamp() external view returns (uint) { return interestRateModel.getSupplyRate(getCashPrior(), totalBorrows, totalReserves, reserveFactorMantissa); } /** * @notice Returns the current total borrows plus accrued interest * @return The total borrows with interest */ function totalBorrowsCurrent() external nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return totalBorrows; } /** * @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 nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return borrowBalanceStored(account); } /** * @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) { (MathError err, uint result) = borrowBalanceStoredInternal(account); require(err == MathError.NO_ERROR, "borrowBalanceStored: borrowBalanceStoredInternal failed"); return result; } /** * @notice Return the borrow balance of account based on stored data * @param account The address whose balance should be calculated * @return (error code, the calculated balance or 0 if error code is non-zero) */ function borrowBalanceStoredInternal(address account) internal view returns (MathError, uint) { /* Note: we do not assert that the market is up to date */ MathError mathErr; uint principalTimesIndex; uint result; /* Get borrowBalance and borrowIndex */ BorrowSnapshot storage borrowSnapshot = accountBorrows[account]; /* If borrowBalance = 0 then borrowIndex is likely also 0. * Rather than failing the calculation with a division by 0, we immediately return 0 in this case. */ if (borrowSnapshot.principal == 0) { return (MathError.NO_ERROR, 0); } /* Calculate new borrow balance using the interest index: * recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex */ (mathErr, principalTimesIndex) = mulUInt(borrowSnapshot.principal, borrowIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, result) = divUInt(principalTimesIndex, borrowSnapshot.interestIndex); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, result); } /** * @notice Accrue interest then return the up-to-date exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateCurrent() public nonReentrant returns (uint) { require(accrueInterest() == uint(Error.NO_ERROR), "accrue interest failed"); return exchangeRateStored(); } /** * @notice Calculates the exchange rate from the underlying to the QiToken * @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) { (MathError err, uint result) = exchangeRateStoredInternal(); require(err == MathError.NO_ERROR, "exchangeRateStored: exchangeRateStoredInternal failed"); return result; } /** * @notice Calculates the exchange rate from the underlying to the QiToken * @dev This function does not accrue interest before calculating the exchange rate * @return (error code, calculated exchange rate scaled by 1e18) */ function exchangeRateStoredInternal() internal view returns (MathError, uint) { uint _totalSupply = totalSupply; if (_totalSupply == 0) { /* * If there are no tokens minted: * exchangeRate = initialExchangeRate */ return (MathError.NO_ERROR, initialExchangeRateMantissa); } else { /* * Otherwise: * exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply */ uint totalCash = getCashPrior(); uint cashPlusBorrowsMinusReserves; Exp memory exchangeRate; MathError mathErr; (mathErr, cashPlusBorrowsMinusReserves) = addThenSubUInt(totalCash, totalBorrows, totalReserves); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } (mathErr, exchangeRate) = getExp(cashPlusBorrowsMinusReserves, _totalSupply); if (mathErr != MathError.NO_ERROR) { return (mathErr, 0); } return (MathError.NO_ERROR, exchangeRate.mantissa); } } /** * @notice Get cash balance of this qiToken in the underlying asset * @return The quantity of underlying asset owned by this contract */ function getCash() external view returns (uint) { return getCashPrior(); } /** * @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) { /* Remember the initial block timestamp */ uint currentBlockTimestamp = getBlockTimestamp(); uint accrualBlockTimestampPrior = accrualBlockTimestamp; /* Short-circuit accumulating 0 interest */ if (accrualBlockTimestampPrior == currentBlockTimestamp) { return uint(Error.NO_ERROR); } /* Read the previous values out of storage */ uint cashPrior = getCashPrior(); uint borrowsPrior = totalBorrows; uint reservesPrior = totalReserves; uint borrowIndexPrior = borrowIndex; /* Calculate the current borrow interest rate */ uint borrowRateMantissa = interestRateModel.getBorrowRate(cashPrior, borrowsPrior, reservesPrior); require(borrowRateMantissa <= borrowRateMaxMantissa, "borrow rate is absurdly high"); /* Calculate the number of blocks elapsed since the last accrual */ (MathError mathErr, uint blockDelta) = subUInt(currentBlockTimestamp, accrualBlockTimestampPrior); require(mathErr == MathError.NO_ERROR, "could not calculate block delta"); /* * Calculate the interest accumulated into borrows and reserves and the new index: * simpleInterestFactor = borrowRate * blockDelta * interestAccumulated = simpleInterestFactor * totalBorrows * totalBorrowsNew = interestAccumulated + totalBorrows * totalReservesNew = interestAccumulated * reserveFactor + totalReserves * borrowIndexNew = simpleInterestFactor * borrowIndex + borrowIndex */ Exp memory simpleInterestFactor; uint interestAccumulated; uint totalBorrowsNew; uint totalReservesNew; uint borrowIndexNew; (mathErr, simpleInterestFactor) = mulScalar(Exp({mantissa: borrowRateMantissa}), blockDelta); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_SIMPLE_INTEREST_FACTOR_CALCULATION_FAILED, uint(mathErr)); } (mathErr, interestAccumulated) = mulScalarTruncate(simpleInterestFactor, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_ACCUMULATED_INTEREST_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalBorrowsNew) = addUInt(interestAccumulated, borrowsPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_BORROWS_CALCULATION_FAILED, uint(mathErr)); } (mathErr, totalReservesNew) = mulScalarTruncateAddUInt(Exp({mantissa: reserveFactorMantissa}), interestAccumulated, reservesPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_TOTAL_RESERVES_CALCULATION_FAILED, uint(mathErr)); } (mathErr, borrowIndexNew) = mulScalarTruncateAddUInt(simpleInterestFactor, borrowIndexPrior, borrowIndexPrior); if (mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.ACCRUE_INTEREST_NEW_BORROW_INDEX_CALCULATION_FAILED, uint(mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ accrualBlockTimestamp = currentBlockTimestamp; borrowIndex = borrowIndexNew; totalBorrows = totalBorrowsNew; totalReserves = totalReservesNew; /* We emit an AccrueInterest event */ emit AccrueInterest(cashPrior, interestAccumulated, borrowIndexNew, totalBorrowsNew); return uint(Error.NO_ERROR); } /** * @notice Sender supplies assets into the market and receives qiTokens 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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintInternal(uint mintAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.MINT_ACCRUE_INTEREST_FAILED), 0); } // mintFresh emits the actual Mint event if successful and logs on errors, so we don't need to return mintFresh(msg.sender, mintAmount); } struct MintLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint mintTokens; uint totalSupplyNew; uint accountTokensNew; uint actualMintAmount; } /** * @notice User supplies assets into the market and receives qiTokens in exchange * @dev Assumes interest has already been accrued up to the current block * @param minter The address of the account which is supplying the assets * @param mintAmount The amount of the underlying asset to supply * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual mint amount. */ function mintFresh(address minter, uint mintAmount) internal returns (uint, uint) { /* Fail if mint not allowed */ uint allowed = comptroller.mintAllowed(address(this), minter, mintAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.MINT_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block timestamp equals current block timestamp */ if (accrualBlockTimestamp != getBlockTimestamp()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.MINT_FRESHNESS_CHECK), 0); } MintLocalVars memory vars; (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.MINT_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call `doTransferIn` for the minter and the mintAmount. * Note: The qiToken must handle variations between ERC-20 and AVAX underlying. * `doTransferIn` reverts if anything goes wrong, since we can't be sure if * side-effects occurred. The function returns the amount actually transferred, * in case of a fee. On success, the qiToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of qiTokens to be minted: * mintTokens = actualMintAmount / exchangeRate */ (vars.mathErr, vars.mintTokens) = divScalarByExpTruncate(vars.actualMintAmount, Exp({mantissa: vars.exchangeRateMantissa})); require(vars.mathErr == MathError.NO_ERROR, "MINT_EXCHANGE_CALCULATION_FAILED"); /* * We calculate the new total supply of qiTokens and minter token balance, checking for overflow: * totalSupplyNew = totalSupply + mintTokens * accountTokensNew = accountTokens[minter] + mintTokens */ (vars.mathErr, vars.totalSupplyNew) = addUInt(totalSupply, vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_TOTAL_SUPPLY_CALCULATION_FAILED"); (vars.mathErr, vars.accountTokensNew) = addUInt(accountTokens[minter], vars.mintTokens); require(vars.mathErr == MathError.NO_ERROR, "MINT_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED"); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[minter] = vars.accountTokensNew; /* We emit a Mint event, and a Transfer event */ emit Mint(minter, vars.actualMintAmount, vars.mintTokens); emit Transfer(address(this), minter, vars.mintTokens); /* We call the defense hook */ // unused function // comptroller.mintVerify(address(this), minter, vars.actualMintAmount, vars.mintTokens); return (uint(Error.NO_ERROR), vars.actualMintAmount); } /** * @notice Sender redeems qiTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of qiTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemInternal(uint redeemTokens) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, redeemTokens, 0); } /** * @notice Sender redeems qiTokens 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 receive from redeeming qiTokens * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlyingInternal(uint redeemAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted redeem failed return fail(Error(error), FailureInfo.REDEEM_ACCRUE_INTEREST_FAILED); } // redeemFresh emits redeem-specific logs on errors, so we don't need to return redeemFresh(msg.sender, 0, redeemAmount); } struct RedeemLocalVars { Error err; MathError mathErr; uint exchangeRateMantissa; uint redeemTokens; uint redeemAmount; uint totalSupplyNew; uint accountTokensNew; } /** * @notice User redeems qiTokens in exchange for the underlying asset * @dev Assumes interest has already been accrued up to the current block * @param redeemer The address of the account which is redeeming the tokens * @param redeemTokensIn The number of qiTokens to redeem into underlying (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @param redeemAmountIn The number of underlying tokens to receive from redeeming qiTokens (only one of redeemTokensIn or redeemAmountIn may be non-zero) * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemFresh(address payable redeemer, uint redeemTokensIn, uint redeemAmountIn) internal returns (uint) { require(redeemTokensIn == 0 || redeemAmountIn == 0, "one of redeemTokensIn or redeemAmountIn must be zero"); RedeemLocalVars memory vars; /* exchangeRate = invoke Exchange Rate Stored() */ (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_RATE_READ_FAILED, uint(vars.mathErr)); } /* If redeemTokensIn > 0: */ if (redeemTokensIn > 0) { /* * We calculate the exchange rate and the amount of underlying to be redeemed: * redeemTokens = redeemTokensIn * redeemAmount = redeemTokensIn x exchangeRateCurrent */ if (redeemTokensIn == uint(-1)) { vars.redeemTokens = accountTokens[redeemer]; } else { vars.redeemTokens = redeemTokensIn; } (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } } else { /* * We get the current exchange rate and calculate the amount to be redeemed: * redeemTokens = redeemAmountIn / exchangeRate * redeemAmount = redeemAmountIn */ if (redeemAmountIn == uint(-1)) { vars.redeemTokens = accountTokens[redeemer]; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_TOKENS_CALCULATION_FAILED, uint(vars.mathErr)); } } else { vars.redeemAmount = redeemAmountIn; (vars.mathErr, vars.redeemTokens) = divScalarByExpTruncate(redeemAmountIn, Exp({mantissa: vars.exchangeRateMantissa})); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_EXCHANGE_AMOUNT_CALCULATION_FAILED, uint(vars.mathErr)); } } } /* Fail if redeem not allowed */ uint allowed = comptroller.redeemAllowed(address(this), redeemer, vars.redeemTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REDEEM_COMPTROLLER_REJECTION, allowed); } /* Verify market's block timestamp equals current block timestamp */ if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDEEM_FRESHNESS_CHECK); } /* * We calculate the new total supply and redeemer balance, checking for underflow: * totalSupplyNew = totalSupply - redeemTokens * accountTokensNew = accountTokens[redeemer] - redeemTokens */ (vars.mathErr, vars.totalSupplyNew) = subUInt(totalSupply, vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_TOTAL_SUPPLY_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountTokensNew) = subUInt(accountTokens[redeemer], vars.redeemTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.REDEEM_NEW_ACCOUNT_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } /* Fail gracefully if protocol has insufficient cash */ if (getCashPrior() < vars.redeemAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDEEM_TRANSFER_OUT_NOT_POSSIBLE); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The qiToken must handle variations between ERC-20 and AVAX underlying. * On success, the qiToken has redeemAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(redeemer, vars.redeemAmount); /* We write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; /* We emit a Transfer event, and a Redeem event */ emit Transfer(redeemer, address(this), vars.redeemTokens); emit Redeem(redeemer, vars.redeemAmount, vars.redeemTokens); /* We call the defense hook */ comptroller.redeemVerify(address(this), redeemer, vars.redeemAmount, vars.redeemTokens); return uint(Error.NO_ERROR); } /** * @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 borrowInternal(uint borrowAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return fail(Error(error), FailureInfo.BORROW_ACCRUE_INTEREST_FAILED); } // borrowFresh emits borrow-specific logs on errors, so we don't need to return borrowFresh(msg.sender, borrowAmount); } struct BorrowLocalVars { MathError mathErr; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; } /** * @notice Users borrow 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 borrowFresh(address payable borrower, uint borrowAmount) internal returns (uint) { /* Fail if borrow not allowed */ uint allowed = comptroller.borrowAllowed(address(this), borrower, borrowAmount); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.BORROW_COMPTROLLER_REJECTION, allowed); } /* Verify market's block timestamp equals current block timestamp */ if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.BORROW_FRESHNESS_CHECK); } /* Fail gracefully if protocol has insufficient underlying cash */ if (getCashPrior() < borrowAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.BORROW_CASH_NOT_AVAILABLE); } BorrowLocalVars memory vars; /* * We calculate the new borrower and total borrow balances, failing on overflow: * accountBorrowsNew = accountBorrows + borrowAmount * totalBorrowsNew = totalBorrows + borrowAmount */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.accountBorrowsNew) = addUInt(vars.accountBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } (vars.mathErr, vars.totalBorrowsNew) = addUInt(totalBorrows, borrowAmount); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The qiToken must handle variations between ERC-20 and AVAX underlying. * On success, the qiToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a Borrow event */ emit Borrow(borrower, borrowAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // unused function // comptroller.borrowVerify(address(this), borrower, borrowAmount); return uint(Error.NO_ERROR); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowInternal(uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BORROW_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, msg.sender, repayAmount); } /** * @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, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowBehalfInternal(address borrower, uint repayAmount) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted borrow failed return (fail(Error(error), FailureInfo.REPAY_BEHALF_ACCRUE_INTEREST_FAILED), 0); } // repayBorrowFresh emits repay-borrow-specific logs on errors, so we don't need to return repayBorrowFresh(msg.sender, borrower, repayAmount); } struct RepayBorrowLocalVars { Error err; MathError mathErr; uint repayAmount; uint borrowerIndex; uint accountBorrows; uint accountBorrowsNew; uint totalBorrowsNew; uint actualRepayAmount; } /** * @notice Borrows are repaid by another user (possibly the borrower). * @param payer the account paying off the borrow * @param borrower the account with the debt being payed off * @param repayAmount the amount of undelrying tokens being returned * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function repayBorrowFresh(address payer, address borrower, uint repayAmount) internal returns (uint, uint) { /* Fail if repayBorrow not allowed */ uint allowed = comptroller.repayBorrowAllowed(address(this), payer, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.REPAY_BORROW_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block timestamp equals current block timestamp */ if (accrualBlockTimestamp != getBlockTimestamp()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.REPAY_BORROW_FRESHNESS_CHECK), 0); } RepayBorrowLocalVars memory vars; /* We remember the original borrowerIndex for verification purposes */ vars.borrowerIndex = accountBorrows[borrower].interestIndex; /* We fetch the amount the borrower owes, with accumulated interest */ (vars.mathErr, vars.accountBorrows) = borrowBalanceStoredInternal(borrower); if (vars.mathErr != MathError.NO_ERROR) { return (failOpaque(Error.MATH_ERROR, FailureInfo.REPAY_BORROW_ACCUMULATED_BALANCE_CALCULATION_FAILED, uint(vars.mathErr)), 0); } /* If repayAmount == -1, repayAmount = accountBorrows */ if (repayAmount == uint(-1)) { vars.repayAmount = vars.accountBorrows; } else { vars.repayAmount = repayAmount; } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the payer and the repayAmount * Note: The qiToken must handle variations between ERC-20 and AVAX underlying. * On success, the qiToken holds an additional repayAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ vars.actualRepayAmount = doTransferIn(payer, vars.repayAmount); /* * We calculate the new borrower and total borrow balances, failing on underflow: * accountBorrowsNew = accountBorrows - actualRepayAmount * totalBorrowsNew = totalBorrows - actualRepayAmount */ (vars.mathErr, vars.accountBorrowsNew) = subUInt(vars.accountBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_ACCOUNT_BORROW_BALANCE_CALCULATION_FAILED"); (vars.mathErr, vars.totalBorrowsNew) = subUInt(totalBorrows, vars.actualRepayAmount); require(vars.mathErr == MathError.NO_ERROR, "REPAY_BORROW_NEW_TOTAL_BALANCE_CALCULATION_FAILED"); /* We write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* We emit a RepayBorrow event */ emit RepayBorrow(payer, borrower, vars.actualRepayAmount, vars.accountBorrowsNew, vars.totalBorrowsNew); /* We call the defense hook */ // unused function // comptroller.repayBorrowVerify(address(this), payer, borrower, vars.actualRepayAmount, vars.borrowerIndex); return (uint(Error.NO_ERROR), vars.actualRepayAmount); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this qiToken to be liquidated * @param qiTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, QiTokenInterface qiTokenCollateral) internal nonReentrant returns (uint, uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_BORROW_INTEREST_FAILED), 0); } error = qiTokenCollateral.accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but we still want to log the fact that an attempted liquidation failed return (fail(Error(error), FailureInfo.LIQUIDATE_ACCRUE_COLLATERAL_INTEREST_FAILED), 0); } // liquidateBorrowFresh emits borrow-specific logs on errors, so we don't need to return liquidateBorrowFresh(msg.sender, borrower, repayAmount, qiTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this qiToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param qiTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowFresh(address liquidator, address borrower, uint repayAmount, QiTokenInterface qiTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(qiTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block timestamp equals current block timestamp */ if (accrualBlockTimestamp != getBlockTimestamp()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify qiTokenCollateral market's block timestamp equals current block timestamp */ if (qiTokenCollateral.accrualBlockTimestamp() != getBlockTimestamp()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_COLLATERAL_FRESHNESS_CHECK), 0); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return (fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_LIQUIDATOR_IS_BORROWER), 0); } /* Fail if repayAmount = 0 */ if (repayAmount == 0) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_ZERO), 0); } /* Fail if repayAmount = -1 */ if (repayAmount == uint(-1)) { return (fail(Error.INVALID_CLOSE_AMOUNT_REQUESTED, FailureInfo.LIQUIDATE_CLOSE_AMOUNT_IS_UINT_MAX), 0); } /* Fail if repayBorrow fails */ (uint repayBorrowError, uint actualRepayAmount) = repayBorrowFresh(liquidator, borrower, repayAmount); if (repayBorrowError != uint(Error.NO_ERROR)) { return (fail(Error(repayBorrowError), FailureInfo.LIQUIDATE_REPAY_BORROW_FRESH_FAILED), 0); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the number of collateral tokens that will be seized */ (uint amountSeizeError, uint seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(qiTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(qiTokenCollateral.balanceOf(borrower) >= seizeTokens, "LIQUIDATE_SEIZE_TOO_MUCH"); // If this is also the collateral, run seizeInternal to avoid re-entrancy, otherwise make an external call uint seizeError; if (address(qiTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = qiTokenCollateral.seize(liquidator, borrower, seizeTokens); } /* Revert if seize tokens fails (since we cannot be sure of side effects) */ require(seizeError == uint(Error.NO_ERROR), "token seizure failed"); /* We emit a LiquidateBorrow event */ emit LiquidateBorrow(liquidator, borrower, actualRepayAmount, address(qiTokenCollateral), seizeTokens); /* We call the defense hook */ // unused function // comptroller.liquidateBorrowVerify(address(this), address(qiTokenCollateral), liquidator, borrower, actualRepayAmount, seizeTokens); return (uint(Error.NO_ERROR), actualRepayAmount); } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Will fail unless called by another qiToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed qiToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of qiTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seize(address liquidator, address borrower, uint seizeTokens) external nonReentrant returns (uint) { return seizeInternal(msg.sender, liquidator, borrower, seizeTokens); } struct SeizeInternalLocalVars { MathError mathErr; uint borrowerTokensNew; uint liquidatorTokensNew; uint liquidatorSeizeTokens; uint protocolSeizeTokens; uint protocolSeizeAmount; uint exchangeRateMantissa; uint totalReservesNew; uint totalSupplyNew; } /** * @notice Transfers collateral tokens (this market) to the liquidator. * @dev Called only during an in-kind liquidation, or by liquidateBorrow during the liquidation of another QiToken. * Its absolutely critical to use msg.sender as the seizer qiToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed qiToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of qiTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seizeInternal(address seizerToken, address liquidator, address borrower, uint seizeTokens) internal returns (uint) { /* Fail if seize not allowed */ uint allowed = comptroller.seizeAllowed(address(this), seizerToken, liquidator, borrower, seizeTokens); if (allowed != 0) { return failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_SEIZE_COMPTROLLER_REJECTION, allowed); } /* Fail if borrower = liquidator */ if (borrower == liquidator) { return fail(Error.INVALID_ACCOUNT_PAIR, FailureInfo.LIQUIDATE_SEIZE_LIQUIDATOR_IS_BORROWER); } SeizeInternalLocalVars memory vars; /* * We calculate the new borrower and liquidator token balances, failing on underflow/overflow: * borrowerTokensNew = accountTokens[borrower] - seizeTokens * liquidatorTokensNew = accountTokens[liquidator] + seizeTokens */ (vars.mathErr, vars.borrowerTokensNew) = subUInt(accountTokens[borrower], seizeTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_DECREMENT_FAILED, uint(vars.mathErr)); } vars.protocolSeizeTokens = mul_(seizeTokens, Exp({mantissa: protocolSeizeShareMantissa})); vars.liquidatorSeizeTokens = sub_(seizeTokens, vars.protocolSeizeTokens); (vars.mathErr, vars.exchangeRateMantissa) = exchangeRateStoredInternal(); require(vars.mathErr == MathError.NO_ERROR, "exchange rate math error"); vars.protocolSeizeAmount = mul_ScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), vars.protocolSeizeTokens); vars.totalReservesNew = add_(totalReserves, vars.protocolSeizeAmount); vars.totalSupplyNew = sub_(totalSupply, vars.protocolSeizeTokens); (vars.mathErr, vars.liquidatorTokensNew) = addUInt(accountTokens[liquidator], vars.liquidatorSeizeTokens); if (vars.mathErr != MathError.NO_ERROR) { return failOpaque(Error.MATH_ERROR, FailureInfo.LIQUIDATE_SEIZE_BALANCE_INCREMENT_FAILED, uint(vars.mathErr)); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We write the previously calculated values into storage */ totalReserves = vars.totalReservesNew; totalSupply = vars.totalSupplyNew; accountTokens[borrower] = vars.borrowerTokensNew; accountTokens[liquidator] = vars.liquidatorTokensNew; /* Emit a Transfer event */ emit Transfer(borrower, liquidator, vars.liquidatorSeizeTokens); emit Transfer(borrower, address(this), vars.protocolSeizeTokens); emit ReservesAdded(address(this), vars.protocolSeizeAmount, vars.totalReservesNew); /* We call the defense hook */ // unused function // comptroller.seizeVerify(address(this), seizerToken, liquidator, borrower, seizeTokens); return uint(Error.NO_ERROR); } /*** 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) { // Check caller = admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_PENDING_ADMIN_OWNER_CHECK); } // Save current value, if any, for inclusion in log address oldPendingAdmin = pendingAdmin; // Store pendingAdmin with value newPendingAdmin pendingAdmin = newPendingAdmin; // Emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin) emit NewPendingAdmin(oldPendingAdmin, newPendingAdmin); return uint(Error.NO_ERROR); } /** * @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) { // Check caller is pendingAdmin and pendingAdmin ≠ address(0) if (msg.sender != pendingAdmin || msg.sender == address(0)) { return fail(Error.UNAUTHORIZED, FailureInfo.ACCEPT_ADMIN_PENDING_ADMIN_CHECK); } // Save current values for inclusion in log address oldAdmin = admin; address oldPendingAdmin = pendingAdmin; // Store admin with value pendingAdmin admin = pendingAdmin; // Clear the pending value pendingAdmin = address(0); emit NewAdmin(oldAdmin, admin); emit NewPendingAdmin(oldPendingAdmin, pendingAdmin); return uint(Error.NO_ERROR); } /** * @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) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_COMPTROLLER_OWNER_CHECK); } ComptrollerInterface oldComptroller = comptroller; // Ensure invoke comptroller.isComptroller() returns true require(newComptroller.isComptroller(), "marker method returned false"); // Set market's comptroller to newComptroller comptroller = newComptroller; // Emit NewComptroller(oldComptroller, newComptroller) emit NewComptroller(oldComptroller, newComptroller); return uint(Error.NO_ERROR); } /** * @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 nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reserve factor change failed. return fail(Error(error), FailureInfo.SET_RESERVE_FACTOR_ACCRUE_INTEREST_FAILED); } // _setReserveFactorFresh emits reserve-factor-specific logs on errors, so we don't need to. return _setReserveFactorFresh(newReserveFactorMantissa); } /** * @notice Sets a new reserve factor for the protocol (*requires fresh interest accrual) * @dev Admin function to set a new reserve factor * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setReserveFactorFresh(uint newReserveFactorMantissa) internal returns (uint) { // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_RESERVE_FACTOR_ADMIN_CHECK); } // Verify market's block timestamp equals current block timestamp if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_RESERVE_FACTOR_FRESH_CHECK); } // Check newReserveFactor ≤ maxReserveFactor if (newReserveFactorMantissa > reserveFactorMaxMantissa) { return fail(Error.BAD_INPUT, FailureInfo.SET_RESERVE_FACTOR_BOUNDS_CHECK); } uint oldReserveFactorMantissa = reserveFactorMantissa; reserveFactorMantissa = newReserveFactorMantissa; emit NewReserveFactor(oldReserveFactorMantissa, newReserveFactorMantissa); return uint(Error.NO_ERROR); } /** * @notice Accrues interest and reduces reserves by transferring from msg.sender * @param addAmount Amount of addition to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReservesInternal(uint addAmount) internal nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.ADD_RESERVES_ACCRUE_INTEREST_FAILED); } // _addReservesFresh emits reserve-addition-specific logs on errors, so we don't need to. (error, ) = _addReservesFresh(addAmount); return error; } /** * @notice Add reserves by transferring from caller * @dev Requires fresh interest accrual * @param addAmount Amount of addition to reserves * @return (uint, uint) An error code (0=success, otherwise a failure (see ErrorReporter.sol for details)) and the actual amount added, net token fees */ function _addReservesFresh(uint addAmount) internal returns (uint, uint) { // totalReserves + actualAddAmount uint totalReservesNew; uint actualAddAmount; // We fail gracefully unless market's block timestamp equals current block timestamp if (accrualBlockTimestamp != getBlockTimestamp()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.ADD_RESERVES_FRESH_CHECK), actualAddAmount); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* * We call doTransferIn for the caller and the addAmount * Note: The qiToken must handle variations between ERC-20 and AVAX underlying. * On success, the qiToken holds an additional addAmount of cash. * doTransferIn reverts if anything goes wrong, since we can't be sure if side effects occurred. * it returns the amount actually transferred, in case of a fee. */ actualAddAmount = doTransferIn(msg.sender, addAmount); totalReservesNew = totalReserves + actualAddAmount; /* Revert on overflow */ require(totalReservesNew >= totalReserves, "add reserves unexpected overflow"); // Store reserves[n+1] = reserves[n] + actualAddAmount totalReserves = totalReservesNew; /* Emit NewReserves(admin, actualAddAmount, reserves[n+1]) */ emit ReservesAdded(msg.sender, actualAddAmount, totalReservesNew); /* Return (NO_ERROR, actualAddAmount) */ return (uint(Error.NO_ERROR), actualAddAmount); } /** * @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 nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted reduce reserves failed. return fail(Error(error), FailureInfo.REDUCE_RESERVES_ACCRUE_INTEREST_FAILED); } // _reduceReservesFresh emits reserve-reduction-specific logs on errors, so we don't need to. return _reduceReservesFresh(reduceAmount); } /** * @notice Reduces reserves by transferring to admin * @dev Requires fresh interest accrual * @param reduceAmount Amount of reduction to reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _reduceReservesFresh(uint reduceAmount) internal returns (uint) { // totalReserves - reduceAmount uint totalReservesNew; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.REDUCE_RESERVES_ADMIN_CHECK); } // We fail gracefully unless market's block timestamp equals current block timestamp if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.REDUCE_RESERVES_FRESH_CHECK); } // Fail gracefully if protocol has insufficient underlying cash if (getCashPrior() < reduceAmount) { return fail(Error.TOKEN_INSUFFICIENT_CASH, FailureInfo.REDUCE_RESERVES_CASH_NOT_AVAILABLE); } // Check reduceAmount ≤ reserves[n] (totalReserves) if (reduceAmount > totalReserves) { return fail(Error.BAD_INPUT, FailureInfo.REDUCE_RESERVES_VALIDATION); } ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) totalReservesNew = totalReserves - reduceAmount; // We checked reduceAmount <= totalReserves above, so this should never revert. require(totalReservesNew <= totalReserves, "reduce reserves unexpected underflow"); // Store reserves[n+1] = reserves[n] - reduceAmount totalReserves = totalReservesNew; // doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. doTransferOut(admin, reduceAmount); emit ReservesReduced(admin, reduceAmount, totalReservesNew); return uint(Error.NO_ERROR); } /** * @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) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of interest rate model failed return fail(Error(error), FailureInfo.SET_INTEREST_RATE_MODEL_ACCRUE_INTEREST_FAILED); } // _setInterestRateModelFresh emits interest-rate-model-update-specific logs on errors, so we don't need to. return _setInterestRateModelFresh(newInterestRateModel); } /** * @notice updates the interest rate model (*requires fresh interest accrual) * @dev Admin function to 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 _setInterestRateModelFresh(InterestRateModel newInterestRateModel) internal returns (uint) { // Used to store old model for use in the event that is emitted on success InterestRateModel oldInterestRateModel; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_INTEREST_RATE_MODEL_OWNER_CHECK); } // We fail gracefully unless market's block timestamp equals current block timestamp if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_INTEREST_RATE_MODEL_FRESH_CHECK); } // Track the market's current interest rate model oldInterestRateModel = interestRateModel; // Ensure invoke newInterestRateModel.isInterestRateModel() returns true require(newInterestRateModel.isInterestRateModel(), "marker method returned false"); // Set the interest rate model to newInterestRateModel interestRateModel = newInterestRateModel; // Emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel) emit NewMarketInterestRateModel(oldInterestRateModel, newInterestRateModel); return uint(Error.NO_ERROR); } /** * @notice accrues interest and updates the protocol seize share using _setProtocolSeizeShareFresh * @dev Admin function to accrue interest and update the protocol seize share * @param newProtocolSeizeShareMantissa the new protocol seize share to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setProtocolSeizeShare(uint newProtocolSeizeShareMantissa) external nonReentrant returns (uint) { uint error = accrueInterest(); if (error != uint(Error.NO_ERROR)) { // accrueInterest emits logs on errors, but on top of that we want to log the fact that an attempted change of protocol seize share failed return fail(Error(error), FailureInfo.SET_PROTOCOL_SEIZE_SHARE_ACCRUE_INTEREST_FAILED); } // _setProtocolSeizeShareFresh emits protocol-seize-share-update-specific logs on errors, so we don't need to. return _setProtocolSeizeShareFresh(newProtocolSeizeShareMantissa); } /** * @notice updates the protocol seize share (*requires fresh interest accrual) * @dev Admin function to update the protocol seize share * @param newProtocolSeizeShareMantissa the new protocol seize share to use * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _setProtocolSeizeShareFresh(uint newProtocolSeizeShareMantissa) internal returns (uint) { // Used to store old share for use in the event that is emitted on success uint oldProtocolSeizeShareMantissa; // Check caller is admin if (msg.sender != admin) { return fail(Error.UNAUTHORIZED, FailureInfo.SET_PROTOCOL_SEIZE_SHARE_OWNER_CHECK); } // We fail gracefully unless market's block timestamp equals current block timestamp if (accrualBlockTimestamp != getBlockTimestamp()) { return fail(Error.MARKET_NOT_FRESH, FailureInfo.SET_PROTOCOL_SEIZE_SHARE_FRESH_CHECK); } // Track the market's current protocol seize share oldProtocolSeizeShareMantissa = protocolSeizeShareMantissa; // Set the protocol seize share to newProtocolSeizeShareMantissa protocolSeizeShareMantissa = newProtocolSeizeShareMantissa; // Emit NewProtocolSeizeShareMantissa(oldProtocolSeizeShareMantissa, newProtocolSeizeShareMantissa) emit NewProtocolSeizeShare(oldProtocolSeizeShareMantissa, newProtocolSeizeShareMantissa); return uint(Error.NO_ERROR); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying owned by this contract */ function getCashPrior() internal view returns (uint); /** * @dev Performs a transfer in, reverting upon failure. Returns the amount actually transferred to the protocol, in case of a fee. * This may revert due to insufficient balance or insufficient allowance. */ function doTransferIn(address from, uint amount) internal returns (uint); /** * @dev Performs a transfer out, ideally returning an explanatory error code upon failure tather than reverting. * If caller has not called checked protocol's balance, may revert due to insufficient cash held in the contract. * If caller has checked protocol's balance, and verified it is >= amount, this should not revert in normal conditions. */ function doTransferOut(address payable to, uint amount) internal; /*** Reentrancy Guard ***/ /** * @dev Prevents a contract from calling itself, directly or indirectly. */ modifier nonReentrant() { require(_notEntered, "re-entered"); _notEntered = false; _; _notEntered = true; // get a gas-refund post-Istanbul } } /** * File: QiErc20.sol */ pragma solidity 0.5.17; /** * @title Benqi's QiErc20 Contract * @notice QiTokens which wrap an EIP-20 underlying * @author Benqi */ contract QiErc20 is QiToken, QiErc20Interface { /** * @notice Initialize the 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 */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { // QiToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives qiTokens 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) { (uint err,) = mintInternal(mintAmount); return err; } /** * @notice Sender redeems qiTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of qiTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint redeemTokens) external returns (uint) { return redeemInternal(redeemTokens); } /** * @notice Sender redeems qiTokens 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) { return redeemUnderlyingInternal(redeemAmount); } /** * @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) { return borrowInternal(borrowAmount); } /** * @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) { (uint err,) = repayBorrowInternal(repayAmount); return err; } /** * @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) { (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount); return err; } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this qiToken to be liquidated * @param repayAmount The amount of the underlying borrowed asset to repay * @param qiTokenCollateral The market in which to seize collateral from the borrower * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function liquidateBorrow(address borrower, uint repayAmount, QiTokenInterface qiTokenCollateral) external returns (uint) { (uint err,) = liquidateBorrowInternal(borrower, repayAmount, qiTokenCollateral); return err; } /** * @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 { require(address(token) != underlying, "QiErc20::sweepToken: can not sweep underlying token"); uint256 balance = token.balanceOf(address(this)); token.transfer(admin, balance); } /** * @notice The sender adds to reserves. * @param addAmount The amount fo underlying token to add as reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves(uint addAmount) external returns (uint) { return _addReservesInternal(addAmount); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view returns (uint) { EIP20Interface token = EIP20Interface(underlying); return token.balanceOf(address(this)); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint amount) internal returns (uint) { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); uint balanceBefore = EIP20Interface(underlying).balanceOf(address(this)); token.transferFrom(from, address(this), amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = EIP20Interface(underlying).balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint amount) internal { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); token.transfer(to, amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a complaint ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_OUT_FAILED"); } } /** * File: QiErc20Delegate.sol */ pragma solidity 0.5.17; /** * @title Benqi's QiErc20Delegate Contract * @notice QiTokens which wrap an EIP-20 underlying and are delegated to * @author Benqi */ contract QiErc20Delegate is QiErc20, QiDelegateInterface { /** * @notice Construct an empty delegate */ constructor() public {} /** * @notice Called by the delegator on a delegate to initialize it for duty * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public { // Shh -- currently unused data; // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _becomeImplementation"); } /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public { // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _resignImplementation"); } }
[{"inputs":[],"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":"qiTokenCollateral","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":"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":"oldProtocolSeizeShareMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProtocolSeizeShareMantissa","type":"uint256"}],"name":"NewProtocolSeizeShare","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"},{"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":"bytes","name":"data","type":"bytes"}],"name":"_becomeImplementation","outputs":[],"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":[],"name":"_resignImplementation","outputs":[],"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":"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":"newProtocolSeizeShareMantissa","type":"uint256"}],"name":"_setProtocolSeizeShare","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":"accrualBlockTimestamp","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":"borrowRatePerTimestamp","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":[],"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":false,"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"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"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"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isQiToken","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 QiTokenInterface","name":"qiTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerTimestamp","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
608060405234801561001057600080fd5b50615570806100206000396000f3fe608060405234801561001057600080fd5b50600436106102725760003560e01c806306fdde0314610277578063095ea7b3146102f45780630e75270214610334578063153ab50514610363578063173b99041461036d57806317bfdfbc1461037557806318160ddd1461039b578063182df0f5146103a35780631a31d465146103ab5780631be195601461050157806323b872dd146105275780632608f8181461055d5780632678224714610589578063313ce567146105ad5780633af9e669146105cb5780633b1d21a2146105f15780633e941010146105f95780634576b5db1461061657806347bd37181461063c57806356e67728146106445780635c60da1b146106e85780635fe3b567146106f0578063601a0bf1146106f85780636752e702146107155780636f307dc31461071d57806370a082311461072557806373acee981461074b5780638303084614610753578063840bbeac14610770578063852a12e3146107785780638f840ddd1461079557806395d89b411461079d57806395dd9193146107a557806399d8c1b4146107cb578063a0712d6814610919578063a6afed9514610936578063a9059cbb1461093e578063aa5af0fd1461096a578063b2a02ff114610972578063b71d1a0c146109a8578063bd6d894d146109ce578063c37f68e2146109d6578063c5ebeaec14610a22578063cd91801c14610a3f578063cfa9920114610a47578063d3bd2c7214610a4f578063db006a7514610a57578063dd62ed3e14610a74578063e9c714f214610aa2578063f2b3abbd14610aaa578063f3fdb15a14610ad0578063f5e3c46214610ad8578063f851a44014610b0e578063fca7820b14610b16575b600080fd5b61027f610b33565b6040805160208082528351818301528351919283929083019185019080838360005b838110156102b95781810151838201526020016102a1565b50505050905090810190601f1680156102e65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103206004803603604081101561030a57600080fd5b506001600160a01b038135169060200135610bc0565b604080519115158252519081900360200190f35b6103516004803603602081101561034a57600080fd5b5035610c2d565b60408051918252519081900360200190f35b61036b610c43565b005b610351610c93565b6103516004803603602081101561038b57600080fd5b50356001600160a01b0316610c99565b610351610d59565b610351610d5f565b61036b600480360360e08110156103c157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b81111561040357600080fd5b82018360208201111561041557600080fd5b803590602001918460018302840111600160201b8311171561043657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561048857600080fd5b82018360208201111561049a57600080fd5b803590602001918460018302840111600160201b831117156104bb57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610dc29050565b61036b6004803603602081101561051757600080fd5b50356001600160a01b0316610e61565b6103206004803603606081101561053d57600080fd5b506001600160a01b03813581169160208101359091169060400135610f9d565b6103516004803603604081101561057357600080fd5b506001600160a01b03813516906020013561100f565b610591611025565b604080516001600160a01b039092168252519081900360200190f35b6105b5611034565b6040805160ff9092168252519081900360200190f35b610351600480360360208110156105e157600080fd5b50356001600160a01b031661103d565b6103516110f3565b6103516004803603602081101561060f57600080fd5b5035611102565b6103516004803603602081101561062c57600080fd5b50356001600160a01b031661110d565b610351611261565b61036b6004803603602081101561065a57600080fd5b810190602081018135600160201b81111561067457600080fd5b82018360208201111561068657600080fd5b803590602001918460018302840111600160201b831117156106a757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611267945050505050565b6105916112b8565b6105916112c7565b6103516004803603602081101561070e57600080fd5b50356112d6565b610351611371565b610591611377565b6103516004803603602081101561073b57600080fd5b50356001600160a01b0316611386565b6103516113a1565b6103516004803603602081101561076957600080fd5b5035611457565b6103206114d5565b6103516004803603602081101561078e57600080fd5b50356114da565b6103516114e5565b61027f6114eb565b610351600480360360208110156107bb57600080fd5b50356001600160a01b0316611543565b61036b600480360360c08110156107e157600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b81111561081b57600080fd5b82018360208201111561082d57600080fd5b803590602001918460018302840111600160201b8311171561084e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b8111156108a057600080fd5b8201836020820111156108b257600080fd5b803590602001918460018302840111600160201b831117156108d357600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506115a09050565b6103516004803603602081101561092f57600080fd5b5035611784565b610351611790565b6103206004803603604081101561095457600080fd5b506001600160a01b038135169060200135611ae7565b610351611b58565b6103516004803603606081101561098857600080fd5b506001600160a01b03813581169160208101359091169060400135611b5e565b610351600480360360208110156109be57600080fd5b50356001600160a01b0316611bcf565b610351611c49565b6109fc600480360360208110156109ec57600080fd5b50356001600160a01b0316611d05565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61035160048036036020811015610a3857600080fd5b5035611d9a565b610351611da5565b610351611e3a565b610351611e40565b61035160048036036020811015610a6d57600080fd5b5035611eae565b61035160048036036040811015610a8a57600080fd5b506001600160a01b0381358116916020013516611eb9565b610351611ee4565b61035160048036036020811015610ac057600080fd5b50356001600160a01b0316611fd5565b61059161200f565b61035160048036036060811015610aee57600080fd5b506001600160a01b0381358116916020810135916040909101351661201e565b610591612036565b61035160048036036020811015610b2c57600080fd5b503561204a565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b820191906000526020600020905b815481529060010190602001808311610b9b57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610c39836120c8565b509150505b919050565b60035461010090046001600160a01b03163314610c915760405162461bcd60e51b815260040180806020018281038252602d8152602001806152ba602d913960400191505060405180910390fd5b565b60085481565b6000805460ff16610cde576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610cf0611790565b14610d3b576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610d4482611543565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610d6c612171565b90925090506000826003811115610d7f57fe5b14610dbb5760405162461bcd60e51b815260040180806020018281038252603581526020018061545a6035913960400191505060405180910390fd5b9150505b90565b610dd08686868686866115a0565b601280546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610e2c57600080fd5b505afa158015610e40573d6000803e3d6000fd5b505050506040513d6020811015610e5657600080fd5b505050505050505050565b6012546001600160a01b0382811691161415610eae5760405162461bcd60e51b81526004018080602001828103825260338152602001806154276033913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015610ef857600080fd5b505afa158015610f0c573d6000803e3d6000fd5b505050506040513d6020811015610f2257600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b158015610f8157600080fd5b505af1158015610f95573d6000803e3d6000fd5b505050505050565b6000805460ff16610fe2576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610ff833868686612220565b1490506000805460ff191660011790559392505050565b60008061101c84846124ac565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b600061104761503b565b604051806020016040528061105a611c49565b90526001600160a01b0384166000908152600e6020526040812054919250908190611086908490612557565b9092509050600082600381111561109957fe5b146110eb576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b60006110fd6125ab565b905090565b6000610c278261262b565b60035460009061010090046001600160a01b0316331461113a576111336001603f6126bf565b9050610c3e565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561117f57600080fd5b505afa158015611193573d6000803e3d6000fd5b505050506040513d60208110156111a957600080fd5b50516111fb576040805162461bcd60e51b815260206004820152601c60248201527b6d61726b6572206d6574686f642072657475726e65642066616c736560201b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b031633146112b55760405162461bcd60e51b815260040180806020018281038252602d81526020018061550f602d913960400191505060405180910390fd5b50565b6013546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff1661131b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561132d611790565b905080156113535761134b81601081111561134457fe5b60306126bf565b915050610d47565b61135c83612713565b9150506000805460ff19166001179055919050565b60115481565b6012546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166113e6576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113f8611790565b14611443576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000805460ff1661149c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114ae611790565b905080156114cc5761134b8160108111156114c557fe5b60516126bf565b61135c83612846565b600181565b6000610c27826128d5565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610bb85780601f10610b8d57610100808354040283529160200191610bb8565b600080600061155184612956565b9092509050600082600381111561156457fe5b1461125a5760405162461bcd60e51b81526004018080602001828103825260378152602001806153126037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146115ee5760405162461bcd60e51b81526004018080602001828103825260248152602001806152016024913960400191505060405180910390fd5b6009541580156115fe5750600a54155b6116395760405162461bcd60e51b81526004018080602001828103825260238152602001806152256023913960400191505060405180910390fd5b60078490558361167a5760405162461bcd60e51b81526004018080602001828103825260308152602001806152686030913960400191505060405180910390fd5b60006116858761110d565b905080156116d7576040805162461bcd60e51b815260206004820152601a6024820152791cd95d1d1a5b99c818dbdb5c1d1c9bdb1b195c8819985a5b195960321b604482015290519081900360640190fd5b6116df612a0a565b600955670de0b6b3a7640000600a556116f786612a0e565b905080156117365760405162461bcd60e51b81526004018080602001828103825260228152602001806152986022913960400191505060405180910390fd5b835161174990600190602087019061504e565b50825161175d90600290602086019061504e565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610c3983612b82565b60008061179b612a0a565b600954909150808214156117b457600092505050610dbf565b60006117be6125ab565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561182c57600080fd5b505afa158015611840573d6000803e3d6000fd5b505050506040513d602081101561185657600080fd5b5051905065048c273950008111156118b4576040805162461bcd60e51b815260206004820152601c60248201527b0c4dee4e4deee40e4c2e8ca40d2e640c2c4e6eae4c8d8f240d0d2ced60231b604482015290519081900360640190fd5b6000806118c18989612c03565b909250905060008260038111156118d457fe5b14611926576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b61192e61503b565b60008060008061194c60405180602001604052808a81525087612c26565b9097509450600087600381111561195f57fe5b146119915761197c6009600689600381111561197757fe5b612c8e565b9e505050505050505050505050505050610dbf565b61199b858c612557565b909750935060008760038111156119ae57fe5b146119c65761197c6009600189600381111561197757fe5b6119d0848c612ce2565b909750925060008760038111156119e357fe5b146119fb5761197c6009600489600381111561197757fe5b611a166040518060200160405280600854815250858c612d08565b90975091506000876003811115611a2957fe5b14611a415761197c6009600589600381111561197757fe5b611a4c858a8b612d08565b90975090506000876003811115611a5f57fe5b14611a775761197c6009600389600381111561197757fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b2c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611b4233338686612220565b1490506000805460ff1916600117905592915050565b600a5481565b6000805460ff16611ba3576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611bb933858585612d64565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611bf557611133600160456126bf565b600480546001600160a01b038481166001600160a01b031983168117909355604080519190921680825260208201939093528151600080516020615349833981519152929181900390910190a1600061125a565b6000805460ff16611c8e576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611ca0611790565b14611ceb576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611cf3610d5f565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611d3089612956565b935090506000816003811115611d4257fe5b14611d605760095b975060009650869550859450611d939350505050565b611d68612171565b925090506000816003811115611d7a57fe5b14611d86576009611d4a565b5060009650919450925090505b9193509193565b6000610c2782613122565b6006546000906001600160a01b03166315f24053611dc16125ab565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611e0957600080fd5b505afa158015611e1d573d6000803e3d6000fd5b505050506040513d6020811015611e3357600080fd5b5051905090565b60095481565b6006546000906001600160a01b031663b8168816611e5c6125ab565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611e0957600080fd5b6000610c27826131a1565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6004546000906001600160a01b031633141580611eff575033155b15611f1757611f10600160006126bf565b9050610dbf565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280516000805160206153498339815191529281900390910190a160009250505090565b600080611fe0611790565b9050801561200657611ffe816010811115611ff757fe5b60406126bf565b915050610c3e565b61125a83612a0e565b6006546001600160a01b031681565b60008061202c85858561321b565b5095945050505050565b60035461010090046001600160a01b031681565b6000805460ff1661208f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556120a1611790565b905080156120bf5761134b8160108111156120b857fe5b60466126bf565b61135c8361334d565b60008054819060ff1661210f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612121611790565b9050801561214c5761213f81601081111561213857fe5b60366126bf565b92506000915061215d9050565b6121573333866133f5565b92509250505b6000805460ff191660011790559092909150565b600d5460009081908061218c5750506007546000915061221c565b60006121966125ab565b905060006121a261503b565b60006121b384600b54600c54613743565b9350905060008160038111156121c557fe5b146121da5795506000945061221c9350505050565b6121e48386613781565b9250905060008160038111156121f657fe5b1461220b5795506000945061221c9350505050565b505160009550935061221c92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561228557600080fd5b505af1158015612299573d6000803e3d6000fd5b505050506040513d60208110156122af57600080fd5b5051905080156122ce576122c66003604a83612c8e565b9150506110eb565b836001600160a01b0316856001600160a01b031614156122f4576122c66002604b6126bf565b60006001600160a01b038781169087161415612313575060001961233b565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061234b8589612c03565b9094509250600084600381111561235e57fe5b1461237c5761236f6009604b6126bf565b96505050505050506110eb565b6001600160a01b038a166000908152600e602052604090205461239f9089612c03565b909450915060008460038111156123b257fe5b146123c35761236f6009604c6126bf565b6001600160a01b0389166000908152600e60205260409020546123e69089612ce2565b909450905060008460038111156123f957fe5b1461240a5761236f6009604d6126bf565b6001600160a01b03808b166000908152600e6020526040808220859055918b168152208190556000198514612462576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206153a38339815191528a6040518082815260200191505060405180910390a35060009a9950505050505050505050565b60008054819060ff166124f3576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612505611790565b905080156125305761252381601081111561251c57fe5b60356126bf565b9250600091506125419050565b61253b3386866133f5565b92509250505b6000805460ff1916600117905590939092509050565b600080600061256461503b565b61256e8686612c26565b9092509050600082600381111561258157fe5b1461259257509150600090506125a4565b600061259d82613831565b9350935050505b9250929050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b1580156125f957600080fd5b505afa15801561260d573d6000803e3d6000fd5b505050506040513d602081101561262357600080fd5b505191505090565b6000805460ff16612670576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612682611790565b905080156126a05761134b81601081111561269957fe5b604e6126bf565b6126a983613840565b509150506000805460ff19166001179055919050565b60006000805160206152488339815191528360108111156126dc57fe5b8360538111156126e857fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561125a57fe5b600354600090819061010090046001600160a01b0316331461273b57611ffe600160316126bf565b612743612a0a565b6009541461275757611ffe600a60336126bf565b826127606125ab565b101561277257611ffe600e60326126bf565b600c5483111561278857611ffe600260346126bf565b50600c54828103908111156127ce5760405162461bcd60e51b81526004018080602001828103825260248152602001806154eb6024913960400191505060405180910390fd5b600c8190556003546127ee9061010090046001600160a01b031684613916565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a1600061125a565b600354600090819061010090046001600160a01b0316331461286e57611ffe600160526126bf565b612876612a0a565b6009541461288a57611ffe600a60536126bf565b506011805490839055604080518281526020810185905281517ff5815f353a60e815cce7553e4f60c533a59d26b1b5504ea4b6db8d60da3e4da2929181900390910190a1600061125a565b6000805460ff1661291a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561292c611790565b9050801561294a5761134b81601081111561294357fe5b60276126bf565b61135c33600085613a09565b6001600160a01b03811660009081526010602052604081208054829182918291829161298d575060009450849350612a0592505050565b61299d8160000154600a54613f49565b909450925060008460038111156129b057fe5b146129c5575091935060009250612a05915050565b6129d3838260010154613f88565b909450915060008460038111156129e657fe5b146129fb575091935060009250612a05915050565b5060009450925050505b915091565b4290565b600354600090819061010090046001600160a01b03163314612a3657611ffe600160426126bf565b612a3e612a0a565b60095414612a5257611ffe600a60416126bf565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612aa357600080fd5b505afa158015612ab7573d6000803e3d6000fd5b505050506040513d6020811015612acd57600080fd5b5051612b1f576040805162461bcd60e51b815260206004820152601c60248201527b6d61726b6572206d6574686f642072657475726e65642066616c736560201b604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a1600061125a565b60008054819060ff16612bc9576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612bdb611790565b90508015612bf95761213f816010811115612bf257fe5b601e6126bf565b6121573385613fb3565b600080838311612c1a5750600090508183036125a4565b506003905060006125a4565b6000612c3061503b565b600080612c41866000015186613f49565b90925090506000826003811115612c5457fe5b14612c73575060408051602081019091526000815290925090506125a4565b60408051602081019091529081526000969095509350505050565b6000600080516020615248833981519152846010811115612cab57fe5b846053811115612cb757fe5b604080519283526020830191909152818101859052519081900360600190a18360108111156110eb57fe5b600080838301848110612cfa576000925090506125a4565b5060029150600090506125a4565b6000806000612d1561503b565b612d1f8787612c26565b90925090506000826003811115612d3257fe5b14612d435750915060009050612d5c565b612d55612d4f82613831565b86612ce2565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612dd157600080fd5b505af1158015612de5573d6000803e3d6000fd5b505050506040513d6020811015612dfb57600080fd5b505190508015612e12576122c66003601b83612c8e565b846001600160a01b0316846001600160a01b03161415612e38576122c66006601c6126bf565b612e406150cc565b6001600160a01b0385166000908152600e6020526040902054612e639085612c03565b6020830181905282826003811115612e7757fe5b6003811115612e8257fe5b9052506000905081516003811115612e9657fe5b14612ebb57612eb26009601a8360000151600381111561197757fe5b925050506110eb565b612ed5846040518060200160405280601154815250614383565b60808201819052612ee79085906143ab565b6060820152612ef4612171565b60c0830181905282826003811115612f0857fe5b6003811115612f1357fe5b9052506000905081516003811115612f2757fe5b14612f74576040805162461bcd60e51b815260206004820152601860248201527732bc31b430b733b2903930ba329036b0ba341032b93937b960411b604482015290519081900360640190fd5b612f9460405180602001604052808360c0015181525082608001516143e5565b60a08201819052600c54612fa791614404565b60e0820152600d546080820151612fbe91906143ab565b6101008201526001600160a01b0386166000908152600e60205260409020546060820151612fec9190612ce2565b604083018190528282600381111561300057fe5b600381111561300b57fe5b905250600090508151600381111561301f57fe5b1461303b57612eb2600960198360000151600381111561197757fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b168082529084902092909255606085015183519081529251919390926000805160206153a3833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206153a38339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152516000805160206151e18339815191529181900360600190a16000979650505050505050565b6000805460ff16613167576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613179611790565b905080156131975761134b81601081111561319057fe5b60086126bf565b61135c338461443a565b6000805460ff166131e6576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556131f8611790565b9050801561320f5761134b81601081111561294357fe5b61135c33846000613a09565b60008054819060ff16613262576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155613274611790565b9050801561329f5761329281601081111561328b57fe5b600f6126bf565b9250600091506133369050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156132da57600080fd5b505af11580156132ee573d6000803e3d6000fd5b505050506040513d602081101561330457600080fd5b5051905080156133245761329281601081111561331d57fe5b60106126bf565b613330338787876146ce565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b0316331461337357611133600160476126bf565b61337b612a0a565b6009541461338f57611133600a60486126bf565b670de0b6b3a76400008211156133ab57611133600260496126bf565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a1600061125a565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561345e57600080fd5b505af1158015613472573d6000803e3d6000fd5b505050506040513d602081101561348857600080fd5b5051905080156134ac5761349f6003603883612c8e565b925060009150612d5c9050565b6134b4612a0a565b600954146134c85761349f600a60396126bf565b6134d0615119565b6001600160a01b03861660009081526010602052604090206001015460608201526134fa86612956565b608083018190526020830182600381111561351157fe5b600381111561351c57fe5b905250600090508160200151600381111561353357fe5b1461355d5761354f600960378360200151600381111561197757fe5b935060009250612d5c915050565b600019851415613576576080810151604082015261357e565b604081018590525b61358c878260400151614bbb565b60e0820181905260808201516135a191612c03565b60a08301819052602083018260038111156135b857fe5b60038111156135c357fe5b90525060009050816020015160038111156135da57fe5b146136165760405162461bcd60e51b815260040180806020018281038252603a815260200180615369603a913960400191505060405180910390fd5b613626600b548260e00151612c03565b60c083018190526020830182600381111561363d57fe5b600381111561364857fe5b905250600090508160200151600381111561365f57fe5b1461369b5760405162461bcd60e51b81526004018080602001828103825260318152602001806153c36031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6000806000806137538787612ce2565b9092509050600082600381111561376657fe5b146137775750915060009050612d5c565b612d558186612c03565b600061378b61503b565b6000806137a086670de0b6b3a7640000613f49565b909250905060008260038111156137b357fe5b146137d2575060408051602081019091526000815290925090506125a4565b6000806137df8388613f88565b909250905060008260038111156137f257fe5b14613814575060408051602081019091526000815290945092506125a4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60008060008061384e612a0a565b6009541461386d57613862600a604f6126bf565b93509150612a059050565b6138773386614bbb565b905080600c54019150600c548210156138d7576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290516000805160206151e18339815191529181900360600190a160009350915050915091565b6012546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b15801561396e57600080fd5b505af1158015613982573d6000803e3d6000fd5b5050505060003d6000811461399e57602081146139a857600080fd5b60001991506139b4565b60206000803e60005191505b5080613a03576040805162461bcd60e51b81526020600482015260196024820152781513d2d15397d514905394d1915497d3d55517d19052531151603a1b604482015290519081900360640190fd5b50505050565b6000821580613a16575081155b613a515760405162461bcd60e51b81526004018080602001828103825260348152602001806154b76034913960400191505060405180910390fd5b613a5961515f565b613a61612171565b6040830181905260208301826003811115613a7857fe5b6003811115613a8357fe5b9052506000905081602001516003811115613a9a57fe5b14613abe57613ab66009602b8360200151600381111561197757fe5b91505061125a565b8315613b7357600019841415613af1576001600160a01b0385166000908152600e60205260409020546060820152613af9565b606081018490525b613b19604051806020016040528083604001518152508260600151612557565b6080830181905260208301826003811115613b3057fe5b6003811115613b3b57fe5b9052506000905081602001516003811115613b5257fe5b14613b6e57613ab6600960298360200151600381111561197757fe5b613c31565b600019831415613bba576001600160a01b0385166000908152600e60209081526040918290205460608401908152825191820183529183015181529051613b199190612557565b6080810183905260408051602081018252908201518152613bdc908490614dfd565b6060830181905260208301826003811115613bf357fe5b6003811115613bfe57fe5b9052506000905081602001516003811115613c1557fe5b14613c3157613ab66009602a8360200151600381111561197757fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613c9657600080fd5b505af1158015613caa573d6000803e3d6000fd5b505050506040513d6020811015613cc057600080fd5b505190508015613ce057613cd76003602883612c8e565b9250505061125a565b613ce8612a0a565b60095414613cfc57613cd7600a602c6126bf565b613d0c600d548360600151612c03565b60a0840181905260208401826003811115613d2357fe5b6003811115613d2e57fe5b9052506000905082602001516003811115613d4557fe5b14613d6157613cd76009602e8460200151600381111561197757fe5b6001600160a01b0386166000908152600e60205260409020546060830151613d899190612c03565b60c0840181905260208401826003811115613da057fe5b6003811115613dab57fe5b9052506000905082602001516003811115613dc257fe5b14613dde57613cd76009602d8460200151600381111561197757fe5b8160800151613deb6125ab565b1015613dfd57613cd7600e602f6126bf565b613e0b868360800151613916565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206153a3833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613f1e57600080fd5b505af1158015613f32573d6000803e3d6000fd5b5060009250613f3f915050565b9695505050505050565b60008083613f5c575060009050806125a4565b83830283858281613f6957fe5b0414613f7d575060029150600090506125a4565b6000925090506125a4565b60008082613f9c57506001905060006125a4565b6000838581613fa757fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561401457600080fd5b505af1158015614028573d6000803e3d6000fd5b505050506040513d602081101561403e57600080fd5b505190508015614062576140556003601f83612c8e565b9250600091506125a49050565b61406a612a0a565b6009541461407e57614055600a60226126bf565b61408661515f565b61408e612171565b60408301819052602083018260038111156140a557fe5b60038111156140b057fe5b90525060009050816020015160038111156140c757fe5b146140f1576140e3600960218360200151600381111561197757fe5b9350600092506125a4915050565b6140fb8686614bbb565b60c082018190526040805160208101825290830151815261411c9190614dfd565b606083018190526020830182600381111561413357fe5b600381111561413e57fe5b905250600090508160200151600381111561415557fe5b146141a7576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b6141b7600d548260600151612ce2565b60808301819052602083018260038111156141ce57fe5b60038111156141d957fe5b90525060009050816020015160038111156141f057fe5b1461422c5760405162461bcd60e51b815260040180806020018281038252602881526020018061548f6028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516142549190612ce2565b60a083018190526020830182600381111561426b57fe5b600381111561427657fe5b905250600090508160200151600381111561428d57fe5b146142c95760405162461bcd60e51b815260040180806020018281038252602b8152602001806152e7602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206153a38339815191529181900360200190a360c001516000969095509350505050565b6000670de0b6b3a764000061439c848460000151614e14565b816143a357fe5b049392505050565b600061125a8383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614e50565b60006143ef61503b565b6143f98484614ee7565b90506110eb81613831565b600061125a8383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614f11565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561449757600080fd5b505af11580156144ab573d6000803e3d6000fd5b505050506040513d60208110156144c157600080fd5b5051905080156144e0576144d86003600e83612c8e565b915050610c27565b6144e8612a0a565b600954146144fb576144d8600a806126bf565b826145046125ab565b1015614516576144d8600e60096126bf565b61451e61519d565b61452785612956565b602083018190528282600381111561453b57fe5b600381111561454657fe5b905250600090508151600381111561455a57fe5b1461457f57614576600960078360000151600381111561197757fe5b92505050610c27565b61458d816020015185612ce2565b60408301819052828260038111156145a157fe5b60038111156145ac57fe5b90525060009050815160038111156145c057fe5b146145dc576145766009600c8360000151600381111561197757fe5b6145e8600b5485612ce2565b60608301819052828260038111156145fc57fe5b600381111561460757fe5b905250600090508151600381111561461b57fe5b14614637576145766009600b8360000151600381111561197757fe5b6146418585613916565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561473f57600080fd5b505af1158015614753573d6000803e3d6000fd5b505050506040513d602081101561476957600080fd5b50519050801561478d576147806003601283612c8e565b925060009150614bb29050565b614795612a0a565b600954146147a957614780600a60166126bf565b6147b1612a0a565b846001600160a01b031663cfa992016040518163ffffffff1660e01b815260040160206040518083038186803b1580156147ea57600080fd5b505afa1580156147fe573d6000803e3d6000fd5b505050506040513d602081101561481457600080fd5b50511461482757614780600a60116126bf565b866001600160a01b0316866001600160a01b0316141561484d57614780600660176126bf565b8461485e57614780600760156126bf565b60001985141561487457614780600760146126bf565b6000806148828989896133f5565b909250905081156148b2576148a382601081111561489c57fe5b60186126bf565b945060009350614bb292505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561490c57600080fd5b505afa158015614920573d6000803e3d6000fd5b505050506040513d604081101561493657600080fd5b508051602090910151909250905081156149815760405162461bcd60e51b81526004018080602001828103825260338152602001806153f46033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156149d857600080fd5b505afa1580156149ec573d6000803e3d6000fd5b505050506040513d6020811015614a0257600080fd5b50511015614a52576040805162461bcd60e51b815260206004820152601860248201527709892a2aa928882a88abea68a92b48abea89e9ebe9aaa86960431b604482015290519081900360640190fd5b60006001600160a01b038916301415614a7857614a71308d8d85612d64565b9050614b02565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614ad357600080fd5b505af1158015614ae7573d6000803e3d6000fd5b505050506040513d6020811015614afd57600080fd5b505190505b8015614b4c576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b601254604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614c0a57600080fd5b505afa158015614c1e573d6000803e3d6000fd5b505050506040513d6020811015614c3457600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614c9157600080fd5b505af1158015614ca5573d6000803e3d6000fd5b5050505060003d60008114614cc15760208114614ccb57600080fd5b6000199150614cd7565b60206000803e60005191505b5080614d25576040805162461bcd60e51b81526020600482015260186024820152771513d2d15397d514905394d1915497d25397d1905253115160421b604482015290519081900360640190fd5b601254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614d7057600080fd5b505afa158015614d84573d6000803e3d6000fd5b505050506040513d6020811015614d9a57600080fd5b5051905082811015614df0576040805162461bcd60e51b815260206004820152601a602482015279544f4b454e5f5452414e534645525f494e5f4f564552464c4f5760301b604482015290519081900360640190fd5b9190910395945050505050565b6000806000614e0a61503b565b61256e8686614f66565b600061125a8383604051806040016040528060178152602001766d756c7469706c69636174696f6e206f766572666c6f7760481b815250614fc5565b60008184841115614edf5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015614ea4578181015183820152602001614e8c565b50505050905090810190601f168015614ed15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b614eef61503b565b6040518060200160405280614f08856000015185614e14565b90529392505050565b6000838301828582101561101c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614ea4578181015183820152602001614e8c565b6000614f7061503b565b600080614f85670de0b6b3a764000087613f49565b90925090506000826003811115614f9857fe5b14614fb7575060408051602081019091526000815290925090506125a4565b61259d818660000151613781565b6000831580614fd2575082155b15614fdf5750600061125a565b83830283858281614fec57fe5b0414839061101c5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315614ea4578181015183820152602001614e8c565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061508f57805160ff19168380011785556150bc565b828001600101855582156150bc579182015b828111156150bc5782518255916020019190600101906150a1565b506150c89291506151c6565b5090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610dbf91905b808211156150c857600081556001016151cc56fea91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc56f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e636545b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c6564ca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a952455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c4544516945726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e65786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6ea265627a7a72315820ad66ad50d8504ee84198a562a6339799280dbc6bdee6d0f6cb7e5611bcaa41fb64736f6c63430005110032
Deployed ByteCode Sourcemap
125485:1062:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;125485:1062:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7265:18;;;:::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;7265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51029:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51029:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;119073:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119073:149:0;;:::i;:::-;;;;;;;;;;;;;;;;126265:279;;;:::i;:::-;;8570:33;;;:::i;55313:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55313:224:0;-1:-1:-1;;;;;55313:224:0;;:::i;9218:23::-;;;:::i;58159:261::-;;;:::i;116319:685::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;116319:685:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;116319:685:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;116319:685: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;116319:685:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;116319:685:0;;;;;;;;-1:-1:-1;116319:685:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;116319:685:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;116319:685: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;116319:685:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;116319:685:0;;-1:-1:-1;;;116319:685:0;;;;;-1:-1:-1;116319:685:0;;-1:-1:-1;116319:685:0:i;120636:264::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;120636:264:0;-1:-1:-1;;;;;120636:264:0;;:::i;50364:195::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50364:195:0;;;;;;;;;;;;;;;;;:::i;119510:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;119510:189:0;;;;;;;;:::i;7992:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;7992:35:0;;;;;;;;;;;;;;7461:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52297:354;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52297:354:0;-1:-1:-1;;;;;52297:354:0;;:::i;60042:88::-;;;:::i;121134:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;121134:119:0;;:::i;100335:735::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100335:735:0;-1:-1:-1;;;;;100335:735:0;;:::i;8982:24::-;;;:::i;125806:349::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;125806:349:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;125806:349:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;125806:349: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;125806:349:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;125806:349:0;;-1:-1:-1;125806:349:0;;-1:-1:-1;;;;;125806:349:0:i;16296:29::-;;;:::i;8119:39::-;;;:::i;106320:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;106320:571:0;;:::i;10191:38::-;;;:::i;15338:25::-;;;:::i;51929:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;51929:112:0;-1:-1:-1;;;;;51929:112:0;;:::i;54830:192::-;;;:::i;111952:659::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111952:659:0;;:::i;10383:37::-;;;:::i;118351:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118351:133:0;;:::i;9112:25::-;;;:::i;7361:20::-;;;:::i;55746:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55746:287:0;-1:-1:-1;;;;;55746:287:0;;:::i;45351:1547::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;45351:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;45351:1547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45351:1547: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;45351:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45351:1547:0;;;;;;;;-1:-1:-1;45351:1547:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;45351:1547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45351:1547: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;45351:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45351:1547:0;;-1:-1:-1;;;45351:1547:0;;;;;-1:-1:-1;45351:1547:0;;-1:-1:-1;45351:1547:0:i;117395:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117395:133:0;;:::i;60378:3885::-;;;:::i;49872:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49872:185:0;;;;;;;;:::i;8847:23::-;;;:::i;93677:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93677:194:0;;;;;;;;;;;;;;;;;:::i;98443:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98443:647:0;-1:-1:-1;;;;;98443:647:0;;:::i;57710:198::-;;;:::i;52997:705::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52997:705:0;-1:-1:-1;;;;;52997:705:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118752:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118752:113:0;;:::i;54147:165::-;;;:::i;8693:33::-;;;:::i;54496:188::-;;;:::i;117881:113::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117881:113:0;;:::i;51596:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51596:143:0;;;;;;;;;;:::i;99368:742::-;;;:::i;109296:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;109296:633:0;-1:-1:-1;;;;;109296:633:0;;:::i;8260:42::-;;;:::i;120183:240::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;120183:240:0;;;;;;;;;;;;;;;;;:::i;7881:28::-;;;:::i;101373:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101373:607:0;;:::i;7265:18::-;;;;;;;;;;;;;;;-1:-1:-1;;7265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51029:237::-;51128:10;51097:4;51149:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;51149:32:0;;;;;;;;;;;:41;;;51206:30;;;;;;;51097:4;;51128:10;51149:32;;51128:10;;51206:30;;;;;;;;;;;51254:4;51247:11;;;51029:237;;;;;:::o;119073:149::-;119130:4;119148:8;119161:32;119181:11;119161:19;:32::i;:::-;-1:-1:-1;119147:46:0;-1:-1:-1;;119073:149:0;;;;:::o;126265:279::-;126481:5;;;;;-1:-1:-1;;;;;126481:5:0;126467:10;:19;126459:77;;;;-1:-1:-1;;;126459:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126265:279::o;8570:33::-;;;;:::o;55313:224::-;55391:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;55416:16;:14;:16::i;:::-;:40;55408:75;;;;;-1:-1:-1;;;55408:75:0;;;;;;;;;;;;-1:-1:-1;;;55408:75:0;;;;;;;;;;;;;;;55501:28;55521:7;55501:19;:28::i;:::-;55494:35;;115496:1;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;55313:224;;-1:-1:-1;55313:224:0:o;9218:23::-;;;;:::o;58159:261::-;58210:4;58228:13;58243:11;58258:28;:26;:28::i;:::-;58227:59;;-1:-1:-1;58227:59:0;-1:-1:-1;58312:18:0;58305:3;:25;;;;;;;;;58297:91;;;;-1:-1:-1;;;58297:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58406:6;-1:-1:-1;;58159:261:0;;:::o;116319:685::-;116754:107;116771:12;116785:18;116805:28;116835:5;116842:7;116851:9;116754:16;:107::i;:::-;116921:10;:24;;-1:-1:-1;;;;;;116921:24:0;-1:-1:-1;;;;;116921:24:0;;;;;;;;;;;116956:40;;;-1:-1:-1;;;116956:40:0;;;;116971:10;;;;;116956:38;;:40;;;;;;;;;;;;;;;116971:10;116956:40;;;5:2:-1;;;;30:1;27;20:12;5:2;116956:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;116956:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;;;116319:685:0:o;120636:264::-;120732:10;;-1:-1:-1;;;;;120714:28:0;;;120732:10;;120714:28;;120706:92;;;;-1:-1:-1;;;120706:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120824:30;;;-1:-1:-1;;;120824:30:0;;120848:4;120824:30;;;;;;120806:15;;-1:-1:-1;;;;;120824:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;120824:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;120824:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;120824:30:0;120877:5;;120862:30;;;-1:-1:-1;;;120862:30:0;;120877:5;;;;-1:-1:-1;;;;;120877:5:0;;;120862:30;;;;;;;;;;;;120824;;-1:-1:-1;120862:14:0;;;;;:30;;;;;-1:-1:-1;;120862:30:0;;;;;;;;-1:-1:-1;120862:14:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;120862:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;120862:30:0;;;;120636:264;;:::o;50364:195::-;50459:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;50483:44;50498:10;50510:3;50515;50520:6;50483:14;:44::i;:::-;:68;50476:75;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;50364:195;;-1:-1:-1;;;50364:195:0:o;119510:189::-;119591:4;119609:8;119622:48;119648:8;119658:11;119622:25;:48::i;:::-;-1:-1:-1;119608:62:0;119510:189;-1:-1:-1;;;;119510:189:0:o;7992:35::-;;;-1:-1:-1;;;;;7992:35:0;;:::o;7461:21::-;;;;;;:::o;52297:354::-;52359:4;52376:23;;:::i;:::-;52402:38;;;;;;;;52417:21;:19;:21::i;:::-;52402:38;;-1:-1:-1;;;;;52516:20:0;;52452:14;52516:20;;;:13;:20;;;;;;52376:64;;-1:-1:-1;52452:14:0;;;52484:53;;52376:64;;52484:17;:53::i;:::-;52451:86;;-1:-1:-1;52451:86:0;-1:-1:-1;52564:18:0;52556:4;:26;;;;;;;;;52548:70;;;;;-1:-1:-1;;;52548:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52636:7;52297:354;-1:-1:-1;;;;52297:354:0:o;60042:88::-;60084:4;60108:14;:12;:14::i;:::-;60101:21;;60042:88;:::o;121134:119::-;121190:4;121214:31;121235:9;121214:20;:31::i;100335:735::-;100482:5;;100413:4;;100482:5;;;-1:-1:-1;;;;;100482:5:0;100468:10;:19;100464:124;;100511:65;100516:18;100536:39;100511:4;:65::i;:::-;100504:72;;;;100464:124;100638:11;;100735:30;;;-1:-1:-1;;;100735:30:0;;;;-1:-1:-1;;;;;100638:11:0;;;;100735:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;100735:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;100735:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100735:30:0;100727:71;;;;;-1:-1:-1;;;100727:71:0;;;;;;;;;;;;-1:-1:-1;;;100727:71:0;;;;;;;;;;;;;;;100866:11;:28;;-1:-1:-1;;;;;;100866:28:0;-1:-1:-1;;;;;100866:28:0;;;;;;;;;100976:46;;;;;;;;;;;;;;;;;;;;;;;;;;;101047:14;101042:20;101035:27;100335:735;-1:-1:-1;;;100335:735:0:o;8982:24::-;;;;:::o;125806:349::-;126092:5;;;;;-1:-1:-1;;;;;126092:5:0;126078:10;:19;126070:77;;;;-1:-1:-1;;;126070:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125806:349;:::o;16296:29::-;;;-1:-1:-1;;;;;16296:29:0;;:::o;8119:39::-;;;-1:-1:-1;;;;;8119:39:0;;:::o;106320:571::-;106395:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;106425:16;:14;:16::i;:::-;106412:29;-1:-1:-1;106456:29:0;;106452:277;;106647:70;106658:5;106652:12;;;;;;;;106666:50;106647:4;:70::i;:::-;106640:77;;;;;106452:277;106849:34;106870:12;106849:20;:34::i;:::-;106842:41;;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;106320:571;;-1:-1:-1;106320:571:0:o;10191:38::-;;;;:::o;15338:25::-;;;-1:-1:-1;;;;;15338:25:0;;:::o;51929:112::-;-1:-1:-1;;;;;52013:20:0;51986:7;52013:20;;;:13;:20;;;;;;;51929:112::o;54830:192::-;54892:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;54917:16;:14;:16::i;:::-;:40;54909:75;;;;;-1:-1:-1;;;54909:75:0;;;;;;;;;;;;-1:-1:-1;;;54909:75:0;;;;;;;;;;;;;;;-1:-1:-1;55002:12:0;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;54830:192;:::o;111952:659::-;112051:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;112081:16;:14;:16::i;:::-;112068:29;-1:-1:-1;112112:29:0;;112108:300;;112317:79;112328:5;112322:12;;;;;;;;112336:59;112317:4;:79::i;112108:300::-;112545:58;112573:29;112545:27;:58::i;10383:37::-;10416:4;10383:37;:::o;118351:133::-;118414:4;118438:38;118463:12;118438:24;:38::i;9112:25::-;;;;:::o;7361:20::-;;;;;;;;;;;;;;-1:-1:-1;;7361:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55746:287;55813:4;55831:13;55846:11;55861:36;55889:7;55861:27;:36::i;:::-;55830:67;;-1:-1:-1;55830:67:0;-1:-1:-1;55923:18:0;55916:3;:25;;;;;;;;;55908:93;;;;-1:-1:-1;;;55908:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45351:1547;45705:5;;;;;-1:-1:-1;;;;;45705:5:0;45691:10;:19;45683:68;;;;-1:-1:-1;;;45683:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45770:21;;:26;:46;;;;-1:-1:-1;45800:11:0;;:16;45770:46;45762:94;;;;-1:-1:-1;;;45762:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45907:27;:58;;;45984:31;45976:92;;;;-1:-1:-1;;;45976:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46113:8;46124:29;46140:12;46124:15;:29::i;:::-;46113:40;-1:-1:-1;46172:27:0;;46164:66;;;;;-1:-1:-1;;;46164:66:0;;;;;;;;;;;;-1:-1:-1;;;46164:66:0;;;;;;;;;;;;;;;46379:19;:17;:19::i;:::-;46355:21;:43;28451:4;46409:11;:25;46537:46;46564:18;46537:26;:46::i;:::-;46531:52;-1:-1:-1;46602:27:0;;46594:74;;;;-1:-1:-1;;;46594:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46681:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;46704:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;46731:8:0;:20;;;;;;-1:-1:-1;;46731:20:0;;;;;;:8;46872:18;;;;;46731:20;46872:18;;;-1:-1:-1;;;;;45351:1547:0:o;117395:133::-;117444:4;117462:8;117475:24;117488:10;117475:12;:24::i;60378:3885::-;60420:4;60489:26;60518:19;:17;:19::i;:::-;60582:21;;60489:48;;-1:-1:-1;60673:51:0;;;60669:111;;;60753:14;60741:27;;;;;;60669:111;60847:14;60864;:12;:14::i;:::-;60909:12;;60953:13;;61001:11;;61109:17;;:71;;;-1:-1:-1;;;61109:71:0;;;;;;;;;;;;;;;;;;;;;;60847:31;;-1:-1:-1;60909:12:0;;60953:13;;61001:11;;60889:17;;-1:-1:-1;;;;;61109:17:0;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;61109:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61109:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61109:71:0;;-1:-1:-1;7636:9:0;61199:43;;;61191:84;;;;;-1:-1:-1;;;61191:84:0;;;;;;;;;;;;-1:-1:-1;;;61191:84:0;;;;;;;;;;;;;;;61366:17;61385:15;61404:58;61412:21;61435:26;61404:7;:58::i;:::-;61365:97;;-1:-1:-1;61365:97:0;-1:-1:-1;61492:18:0;61481:7;:29;;;;;;;;;61473:73;;;;;-1:-1:-1;;;61473:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62038:31;;:::i;:::-;62080:24;62115:20;62146:21;62178:19;62244:58;62254:35;;;;;;;;62269:18;62254:35;;;62291:10;62244:9;:58::i;:::-;62210:92;;-1:-1:-1;62210:92:0;-1:-1:-1;62328:18:0;62317:7;:29;;;;;;;;;62313:183;;62370:114;62381:16;62399:69;62475:7;62470:13;;;;;;;;62370:10;:114::i;:::-;62363:121;;;;;;;;;;;;;;;;;;62313:183;62541:53;62559:20;62581:12;62541:17;:53::i;:::-;62508:86;;-1:-1:-1;62508:86:0;-1:-1:-1;62620:18:0;62609:7;:29;;;;;;;;;62605:181;;62662:112;62673:16;62691:67;62765:7;62760:13;;;;;;;62605:181;62827:42;62835:19;62856:12;62827:7;:42::i;:::-;62798:71;;-1:-1:-1;62798:71:0;-1:-1:-1;62895:18:0;62884:7;:29;;;;;;;;;62880:178;;62937:109;62948:16;62966:64;63037:7;63032:13;;;;;;;62880:178;63100:100;63125:38;;;;;;;;63140:21;;63125:38;;;63165:19;63186:13;63100:24;:100::i;:::-;63070:130;;-1:-1:-1;63070:130:0;-1:-1:-1;63226:18:0;63215:7;:29;;;;;;;;;63211:179;;63268:110;63279:16;63297:65;63369:7;63364:13;;;;;;;63211:179;63430:82;63455:20;63477:16;63495;63430:24;:82::i;:::-;63402:110;;-1:-1:-1;63402:110:0;-1:-1:-1;63538:18:0;63527:7;:29;;;;;;;;;63523:177;;63580:108;63591:16;63609:63;63679:7;63674:13;;;;;;;63523:177;63903:21;:45;;;63959:11;:28;;;63998:12;:30;;;64039:13;:32;;;64136:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64240:14;64228:27;;;;;;;;;;;;;;;;60378:3885;:::o;49872:185::-;49950:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;49974:51;49989:10;50001;50013:3;50018:6;49974:14;:51::i;:::-;:75;49967:82;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;49872:185;;-1:-1:-1;;49872:185:0:o;8847:23::-;;;;:::o;93677:194::-;93779:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;93803:60;93817:10;93829;93841:8;93851:11;93803:13;:60::i;:::-;93796:67;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;93677:194;;-1:-1:-1;;;93677:194:0:o;98443:647::-;98588:5;;98520:4;;98588:5;;;-1:-1:-1;;;;;98588:5:0;98574:10;:19;98570:126;;98617:67;98622:18;98642:41;98617:4;:67::i;98570:126::-;98795:12;;;-1:-1:-1;;;;;98878:30:0;;;-1:-1:-1;;;;;;98878:30:0;;;;;;;98993:49;;;98795:12;;;;98993:49;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;98993:49:0;;;;;;;;;;99067:14;99062:20;;57710:198;57770:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;57795:16;:14;:16::i;:::-;:40;57787:75;;;;;-1:-1:-1;;;57787:75:0;;;;;;;;;;;;-1:-1:-1;;;57787:75:0;;;;;;;;;;;;;;;57880:20;:18;:20::i;:::-;57873:27;;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;57710:198;:::o;52997:705::-;-1:-1:-1;;;;;53122:22:0;;53065:4;53122:22;;;:13;:22;;;;;;53065:4;;;;;;;;;53273:36;53136:7;53273:27;:36::i;:::-;53249:60;-1:-1:-1;53249:60:0;-1:-1:-1;53332:18:0;53324:4;:26;;;;;;;;;53320:99;;53380:16;53375:22;53367:40;-1:-1:-1;53399:1:0;;-1:-1:-1;53399:1:0;;-1:-1:-1;53399:1:0;;-1:-1:-1;53367:40:0;;-1:-1:-1;;;;53367:40:0;53320:99;53462:28;:26;:28::i;:::-;53431:59;-1:-1:-1;53431:59:0;-1:-1:-1;53513:18:0;53505:4;:26;;;;;;;;;53501:99;;53561:16;53556:22;;53501:99;-1:-1:-1;53625:14:0;;-1:-1:-1;53642:14:0;;-1:-1:-1;53658:13:0;-1:-1:-1;53658:13:0;-1:-1:-1;52997:705:0;;;;;;:::o;118752:113::-;118805:4;118829:28;118844:12;118829:14;:28::i;54147:165::-;54228:17;;54204:4;;-1:-1:-1;;;;;54228:17:0;:31;54260:14;:12;:14::i;:::-;54276:12;;54290:13;;54228:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54228:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54228:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54228:76:0;;-1:-1:-1;54147:165:0;:::o;8693:33::-;;;;:::o;54496:188::-;54577:17;;54553:4;;-1:-1:-1;;;;;54577:17:0;:31;54609:14;:12;:14::i;:::-;54625:12;;54639:13;;54654:21;;54577:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;117881:113:0;117934:4;117958:28;117973:12;117958:14;:28::i;51596:143::-;-1:-1:-1;;;;;51697:25:0;;;51670:7;51697:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;51596:143::o;99368:742::-;99518:12;;99410:4;;-1:-1:-1;;;;;99518:12:0;99504:10;:26;;;:54;;-1:-1:-1;99534:10:0;:24;99504:54;99500:164;;;99582:70;99587:18;99607:44;99582:4;:70::i;:::-;99575:77;;;;99500:164;99748:5;;;99790:12;;;-1:-1:-1;;;;;99790:12:0;;;99748:5;99863:20;;;-1:-1:-1;;;;;;99863:20:0;;;;;;;-1:-1:-1;;;;;;99932:25:0;;;;;;99975;;;99748:5;;;;;;99975:25;;;99994:5;;;;;99975:25;;;;;;99748:5;;99790:12;;99975:25;;;;;;;;;100049:12;;100016:46;;;-1:-1:-1;;;;;100016:46:0;;;;;100049:12;;;100016:46;;;;;;-1:-1:-1;;;;;;;;;;;100016:46:0;;;;;;;;;100087:14;100075:27;;;;99368:742;:::o;109296:633::-;109383:4;109400:10;109413:16;:14;:16::i;:::-;109400:29;-1:-1:-1;109444:29:0;;109440:298;;109648:78;109659:5;109653:12;;;;;;;;109667:58;109648:4;:78::i;:::-;109641:85;;;;;109440:298;109873:48;109900:20;109873:26;:48::i;8260:42::-;;;-1:-1:-1;;;;;8260:42:0;;:::o;120183:240::-;120298:4;120316:8;120329:65;120353:8;120363:11;120376:17;120329:23;:65::i;:::-;-1:-1:-1;120315:79:0;120183:240;-1:-1:-1;;;;;120183:240:0:o;7881:28::-;;;;;;-1:-1:-1;;;;;7881:28:0;;:::o;101373:607::-;101462:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;101492:16;:14;:16::i;:::-;101479:29;-1:-1:-1;101523:29:0;;101519:286;;101720:73;101731:5;101725:12;;;;;;;;101739:53;101720:4;:73::i;101519:286::-;101924:48;101947:24;101924:22;:48::i;81665:572::-;81743:4;115429:11;;81743:4;;115429:11;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;81779:16;:14;:16::i;:::-;81766:29;-1:-1:-1;81810:29:0;;81806:260;;81983:67;81994:5;81988:12;;;;;;;;82002:47;81983:4;:67::i;:::-;81975:79;-1:-1:-1;82052:1:0;;-1:-1:-1;81975:79:0;;-1:-1:-1;81975:79:0;81806:260;82176:53;82193:10;82205;82217:11;82176:16;:53::i;:::-;82169:60;;;;;115496:1;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;81665:572;;;;-1:-1:-1;81665:572:0:o;58685:1186::-;58794:11;;58746:9;;;;58820:17;58816:1048;;-1:-1:-1;;59014:27:0;;58994:18;;-1:-1:-1;58986:56:0;;58816:1048;59224:14;59241;:12;:14::i;:::-;59224:31;;59270:33;59318:23;;:::i;:::-;59356:17;59432:54;59447:9;59458:12;;59472:13;;59432:14;:54::i;:::-;59390:96;-1:-1:-1;59390:96:0;-1:-1:-1;59516:18:0;59505:7;:29;;;;;;;;;59501:89;;59563:7;-1:-1:-1;59572:1:0;;-1:-1:-1;59555:19:0;;-1:-1:-1;;;;59555:19:0;59501:89;59632:50;59639:28;59669:12;59632:6;:50::i;:::-;59606:76;-1:-1:-1;59606:76:0;-1:-1:-1;59712:18:0;59701:7;:29;;;;;;;;;59697:89;;59759:7;-1:-1:-1;59768:1:0;;-1:-1:-1;59751:19:0;;-1:-1:-1;;;;59751:19:0;59697:89;-1:-1:-1;59830:21:0;59810:18;;-1:-1:-1;59830:21:0;-1:-1:-1;59802:50:0;;-1:-1:-1;;;59802:50:0;58685:1186;;;:::o;47361:2250::-;47535:11;;:60;;;-1:-1:-1;;;47535:60:0;;47571:4;47535:60;;;;-1:-1:-1;;;;;47535:60:0;;;;;;;;;;;;;;;;;;;;;;47459:4;;;;47535:11;;:27;;:60;;;;;;;;;;;;;;47459:4;47535:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;47535:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47535:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47535:60:0;;-1:-1:-1;47610:12:0;;47606:144;;47646:92;47657:27;47686:42;47730:7;47646:10;:92::i;:::-;47639:99;;;;;47606:144;47816:3;-1:-1:-1;;;;;47809:10:0;:3;-1:-1:-1;;;;;47809:10:0;;47805:105;;;47843:55;47848:15;47865:32;47843:4;:55::i;47805:105::-;47987:22;-1:-1:-1;;;;;48028:14:0;;;;;;;48024:160;;;-1:-1:-1;;;48024:160:0;;;-1:-1:-1;;;;;;48140:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;48024:160;48262:17;48290;48318:18;48347:17;48403:34;48411:17;48430:6;48403:7;:34::i;:::-;48377:60;;-1:-1:-1;48377:60:0;-1:-1:-1;48463:18:0;48452:7;:29;;;;;;;;;48448:125;;48505:56;48510:16;48528:32;48505:4;:56::i;:::-;48498:63;;;;;;;;;;48448:125;-1:-1:-1;;;;;48620:18:0;;;;;;:13;:18;;;;;;48612:35;;48640:6;48612:7;:35::i;:::-;48585:62;;-1:-1:-1;48585:62:0;-1:-1:-1;48673:18:0;48662:7;:29;;;;;;;;;48658:124;;48715:55;48720:16;48738:31;48715:4;:55::i;48658:124::-;-1:-1:-1;;;;;48828:18:0;;;;;;:13;:18;;;;;;48820:35;;48848:6;48820:7;:35::i;:::-;48794:61;;-1:-1:-1;48794:61:0;-1:-1:-1;48881:18:0;48870:7;:29;;;;;;;;;48866:122;;48923:53;48928:16;48946:29;48923:4;:53::i;48866:122::-;-1:-1:-1;;;;;49121:18:0;;;;;;;:13;:18;;;;;;:34;;;49166:18;;;;;;:33;;;-1:-1:-1;;49272:29:0;;49268:109;;-1:-1:-1;;;;;49318:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;49268:109;49448:3;-1:-1:-1;;;;;49434:26:0;49443:3;-1:-1:-1;;;;;49434:26:0;-1:-1:-1;;;;;;;;;;;49453:6:0;49434:26;;;;;;;;;;;;;;;;;;-1:-1:-1;49588:14:0;;47361:2250;-1:-1:-1;;;;;;;;;;47361:2250:0:o;82570:594::-;82672:4;115429:11;;82672:4;;115429:11;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;82708:16;:14;:16::i;:::-;82695:29;-1:-1:-1;82739:29:0;;82735:260;;82912:67;82923:5;82917:12;;;;;;;;82931:47;82912:4;:67::i;:::-;82904:79;-1:-1:-1;82981:1:0;;-1:-1:-1;82904:79:0;;-1:-1:-1;82904:79:0;82735:260;83105:51;83122:10;83134:8;83144:11;83105:16;:51::i;:::-;83098:58;;;;;115496:1;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;82570:594;;;;-1:-1:-1;82570:594:0;-1:-1:-1;82570:594:0:o;37275:313::-;37352:9;37363:4;37381:13;37396:18;;:::i;:::-;37418:20;37428:1;37431:6;37418:9;:20::i;:::-;37380:58;;-1:-1:-1;37380:58:0;-1:-1:-1;37460:18:0;37453:3;:25;;;;;;;;;37449:73;;-1:-1:-1;37503:3:0;-1:-1:-1;37508:1:0;;-1:-1:-1;37495:15:0;;37449:73;37542:18;37562:17;37571:7;37562:8;:17::i;:::-;37534:46;;;;;;37275:313;;;;;;:::o;121521:169::-;121623:10;;121652:30;;;-1:-1:-1;;;121652:30:0;;121676:4;121652:30;;;;;;121568:4;;-1:-1:-1;;;;;121623:10:0;;;;121652:15;;:30;;;;;;;;;;;;;;;121623:10;121652:30;;;5:2:-1;;;;30:1;27;20:12;5:2;121652:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;121652:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;121652:30:0;;-1:-1:-1;;121521:169:0;:::o;103489:590::-;103566:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;103596:16;:14;:16::i;:::-;103583:29;-1:-1:-1;103627:29:0;;103623:274;;103818:67;103829:5;103823:12;;;;;;;;103837:47;103818:4;:67::i;103623:274::-;104020:28;104038:9;104020:17;:28::i;:::-;-1:-1:-1;104008:40:0;-1:-1:-1;;115508:11:0;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;103489:590;;-1:-1:-1;103489:590:0:o;25206:153::-;25267:4;-1:-1:-1;;;;;;;;;;;25302:3:0;25297:9;;;;;;;;25313:4;25308:10;;;;;;;;25289:33;;;;;;;;;;;;;25320:1;25289:33;;;;;;;;;;;;;25347:3;25342:9;;;;;;;107168:1759;107379:5;;107235:4;;;;107379:5;;;-1:-1:-1;;;;;107379:5:0;107365:10;:19;107361:124;;107408:65;107413:18;107433:39;107408:4;:65::i;107361:124::-;107620:19;:17;:19::i;:::-;107595:21;;:44;107591:153;;107663:69;107668:22;107692:39;107663:4;:69::i;107591:153::-;107850:12;107833:14;:12;:14::i;:::-;:29;107829:152;;;107886:83;107891:29;107922:46;107886:4;:83::i;107829:152::-;108075:13;;108060:12;:28;108056:129;;;108112:61;108117:15;108134:38;108112:4;:61::i;108056:129::-;-1:-1:-1;108337:13:0;;:28;;;;108473:33;;;108465:82;;;;-1:-1:-1;;;108465:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108621:13;:32;;;108787:5;;108773:34;;108787:5;;;-1:-1:-1;;;;;108787:5:0;108794:12;108773:13;:34::i;:::-;108841:5;;108825:54;;;108841:5;;;;-1:-1:-1;;;;;108841:5:0;108825:54;;;;;;;;;;;;;;;;;;;;;;;;;108904:14;108899:20;;112953:1209;113246:5;;113044:4;;;;113246:5;;;-1:-1:-1;;;;;113246:5:0;113232:10;:19;113228:133;;113275:74;113280:18;113300:48;113275:4;:74::i;113228:133::-;113496:19;:17;:19::i;:::-;113471:21;;:44;113467:162;;113539:78;113544:22;113568:48;113539:4;:78::i;113467:162::-;-1:-1:-1;113733:26:0;;;113846:58;;;;114031:83;;;;;;;;;;;;;;;;;;;;;;;;;114139:14;114134:20;;70406:537;70490:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;70520:16;:14;:16::i;:::-;70507:29;-1:-1:-1;70551:29:0;;70547:249;;70723:61;70734:5;70728:12;;;;;;;;70742:41;70723:4;:61::i;70547:249::-;70895:40;70907:10;70919:1;70922:12;70895:11;:40::i;56287:1268::-;-1:-1:-1;;;;;56636:23:0;;56364:9;56636:23;;;:14;:23;;;;;56865:24;;56364:9;;;;;;;;56861:92;;-1:-1:-1;56919:18:0;;-1:-1:-1;56919:18:0;;-1:-1:-1;56911:30:0;;-1:-1:-1;;;56911:30:0;56861:92;57180:46;57188:14;:24;;;57214:11;;57180:7;:46::i;:::-;57147:79;;-1:-1:-1;57147:79:0;-1:-1:-1;57252:18:0;57241:7;:29;;;;;;;;;57237:81;;-1:-1:-1;57295:7:0;;-1:-1:-1;57304:1:0;;-1:-1:-1;57287:19:0;;-1:-1:-1;;57287:19:0;57237:81;57350:58;57358:19;57379:14;:28;;;57350:7;:58::i;:::-;57330:78;;-1:-1:-1;57330:78:0;-1:-1:-1;57434:18:0;57423:7;:29;;;;;;;;;57419:81;;-1:-1:-1;57477:7:0;;-1:-1:-1;57486:1:0;;-1:-1:-1;57469:19:0;;-1:-1:-1;;57469:19:0;57419:81;-1:-1:-1;57520:18:0;;-1:-1:-1;57540:6:0;-1:-1:-1;;;56287:1268:0;;;;:::o;53864:99::-;53940:15;53864:99;:::o;110259:1311::-;110559:5;;110353:4;;;;110559:5;;;-1:-1:-1;;;;;110559:5:0;110545:10;:19;110541:132;;110588:73;110593:18;110613:47;110588:4;:73::i;110541:132::-;110808:19;:17;:19::i;:::-;110783:21;;:44;110779:161;;110851:77;110856:22;110880:47;110851:4;:77::i;110779:161::-;111034:17;;;;;;;;;-1:-1:-1;;;;;111034:17:0;111011:40;;111154:20;-1:-1:-1;;;;;111154:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;111154:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;111154:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111154:42:0;111146:83;;;;;-1:-1:-1;;;111146:83:0;;;;;;;;;;;;-1:-1:-1;;;111146:83:0;;;;;;;;;;;;;;;111306:17;:40;;-1:-1:-1;;;;;;111306:40:0;-1:-1:-1;;;;;111306:40:0;;;;;;;;;111452:70;;;;;;;;;;;;;;;;;;;;;;;;;;;111547:14;111542:20;;64662:547;64732:4;115429:11;;64732:4;;115429:11;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;64768:16;:14;:16::i;:::-;64755:29;-1:-1:-1;64799:29:0;;64795:252;;64972:59;64983:5;64977:12;;;;;;;;64991:39;64972:4;:59::i;64795:252::-;65168:33;65178:10;65190;65168:9;:33::i;27064:236::-;27120:9;27131:4;27157:1;27152;:6;27148:145;;-1:-1:-1;27183:18:0;;-1:-1:-1;27203:5:0;;;27175:34;;27148:145;-1:-1:-1;27250:27:0;;-1:-1:-1;27279:1:0;27242:39;;36809:353;36878:9;36889:10;;:::i;:::-;36913:14;36929:19;36952:27;36960:1;:10;;;36972:6;36952:7;:27::i;:::-;36912:67;;-1:-1:-1;36912:67:0;-1:-1:-1;37002:18:0;36994:4;:26;;;;;;;;;36990:92;;-1:-1:-1;37051:18:0;;;;;;;;;-1:-1:-1;37051:18:0;;37045:4;;-1:-1:-1;37051:18:0;-1:-1:-1;37037:33:0;;36990:92;37122:31;;;;;;;;;;;;-1:-1:-1;;37122:31:0;;-1:-1:-1;36809:353:0;-1:-1:-1;;;;36809:353:0:o;25482:187::-;25567:4;-1:-1:-1;;;;;;;;;;;25602:3:0;25597:9;;;;;;;;25613:4;25608:10;;;;;;;;25589:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;25657:3;25652:9;;;;;;;27385:258;27441:9;;27478:5;;;27500:6;;;27496:140;;27531:18;;-1:-1:-1;27551:1:0;-1:-1:-1;27523:30:0;;27496:140;-1:-1:-1;27594:26:0;;-1:-1:-1;27622:1:0;;-1:-1:-1;27586:38:0;;37733:328;37830:9;37841:4;37859:13;37874:18;;:::i;:::-;37896:20;37906:1;37909:6;37896:9;:20::i;:::-;37858:58;;-1:-1:-1;37858:58:0;-1:-1:-1;37938:18:0;37931:3;:25;;;;;;;;;37927:73;;-1:-1:-1;37981:3:0;-1:-1:-1;37986:1:0;;-1:-1:-1;37973:15:0;;37927:73;38019:34;38027:17;38036:7;38027:8;:17::i;:::-;38046:6;38019:7;:34::i;:::-;38012:41;;;;;;37733:328;;;;;;;:::o;94897:3097::-;95088:11;;:87;;;-1:-1:-1;;;95088:87:0;;95121:4;95088:87;;;;-1:-1:-1;;;;;95088:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95015:4;;;;95088:11;;:24;;:87;;;;;;;;;;;;;;95015:4;95088:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;95088:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95088:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;95088:87:0;;-1:-1:-1;95190:12:0;;95186:151;;95226:99;95237:27;95266:49;95317:7;95226:10;:99::i;95186:151::-;95410:10;-1:-1:-1;;;;;95398:22:0;:8;-1:-1:-1;;;;;95398:22:0;;95394:146;;;95444:84;95449:26;95477:50;95444:4;:84::i;95394:146::-;95552:34;;:::i;:::-;-1:-1:-1;;;;;95923:23:0;;;;;;:13;:23;;;;;;95915:45;;95948:11;95915:7;:45::i;:::-;95889:22;;;95874:86;;;95875:4;95874:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;95991:18:0;;-1:-1:-1;95975:12:0;;:34;;;;;;;;;95971:176;;96033:102;96044:16;96062:52;96121:4;:12;;;96116:18;;;;;;;96033:102;96026:109;;;;;;95971:176;96186:62;96191:11;96204:43;;;;;;;;96219:26;;96204:43;;;96186:4;:62::i;:::-;96159:24;;;:89;;;96288:43;;96293:11;;96288:4;:43::i;:::-;96259:26;;;:72;96388:28;:26;:28::i;:::-;96359:25;;;96344:72;;;96345:4;96344:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;96451:18:0;;-1:-1:-1;96435:12:0;;:34;;;;;;;;;96427:71;;;;;-1:-1:-1;;;96427:71:0;;;;;;;;;;;;-1:-1:-1;;;96427:71:0;;;;;;;;;;;;;;;96538:88;96557:42;;;;;;;;96572:4;:25;;;96557:42;;;96601:4;:24;;;96538:18;:88::i;:::-;96511:24;;;:115;;;96668:13;;96663:45;;:4;:45::i;:::-;96639:21;;;:69;96746:11;;96759:24;;;;96741:43;;96746:11;96741:4;:43::i;:::-;96719:19;;;:65;-1:-1:-1;;;;;96848:25:0;;;;;;:13;:25;;;;;;96875:26;;;;96840:62;;96848:25;96840:7;:62::i;:::-;96812:24;;;96797:105;;;96798:4;96797:105;;;;;;;;;;;;;;;;;;;-1:-1:-1;96933:18:0;;-1:-1:-1;96917:12:0;;:34;;;;;;;;;96913:176;;96975:102;96986:16;97004:52;97063:4;:12;;;97058:18;;;;;;;96913:176;97308:21;;;;97292:13;:37;97354:19;;;;97340:11;:33;97410:22;;;;;-1:-1:-1;;;;;97384:23:0;;;-1:-1:-1;97384:23:0;;;:13;:23;;;;;;:48;;;;97471:24;;;;97443:25;;;;;;;;;;:52;;;;97581:26;;;;97550:58;;;;;;;97443:25;;97384:23;;-1:-1:-1;;;;;;;;;;;97550:58:0;;;;;;;;;;97658:24;;;;97624:59;;;;;;;97651:4;;-1:-1:-1;;;;;97624:59:0;;;-1:-1:-1;;;;;;;;;;;97624:59:0;;;;;;;;97728:24;;;;97754:21;;;;97699:77;;;97721:4;97699:77;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;97699:77:0;;;;;;;;97971:14;97959:27;94897:3097;-1:-1:-1;;;;;;;94897:3097:0:o;77381:524::-;77455:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;77485:16;:14;:16::i;:::-;77472:29;-1:-1:-1;77516:29:0;;77512:249;;77688:61;77699:5;77693:12;;;;;;;;77707:41;77688:4;:61::i;77512:249::-;77860:37;77872:10;77884:12;77860:11;:37::i;69497:527::-;69571:4;115429:11;;;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;69601:16;:14;:16::i;:::-;69588:29;-1:-1:-1;69632:29:0;;69628:249;;69804:61;69815:5;69809:12;;;;;;;69628:249;69976:40;69988:10;70000:12;70014:1;69976:11;:40::i;87853:998::-;87989:4;115429:11;;87989:4;;115429:11;;115421:34;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;-1:-1:-1;;;115421:34:0;;;;;;;;;;;;;;;115480:5;115466:19;;-1:-1:-1;;115466:19:0;;;88025:16;:14;:16::i;:::-;88012:29;-1:-1:-1;88056:29:0;;88052:269;;88234:71;88245:5;88239:12;;;;;;;;88253:51;88234:4;:71::i;:::-;88226:83;-1:-1:-1;88307:1:0;;-1:-1:-1;88226:83:0;;-1:-1:-1;88226:83:0;88052:269;88341:17;-1:-1:-1;;;;;88341:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88341:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88341:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88341:34:0;;-1:-1:-1;88390:29:0;;88386:273;;88568:75;88579:5;88573:12;;;;;;;;88587:55;88568:4;:75::i;88386:273::-;88769:74;88790:10;88802:8;88812:11;88825:17;88769:20;:74::i;:::-;88762:81;;;;;115496:1;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;87853:998;;;;-1:-1:-1;87853:998:0;-1:-1:-1;;87853:998:0:o;102248:985::-;102398:5;;102329:4;;102398:5;;;-1:-1:-1;;;;;102398:5:0;102384:10;:19;102380:127;;102427:68;102432:18;102452:42;102427:4;:68::i;102380:127::-;102623:19;:17;:19::i;:::-;102598:21;;:44;102594:156;;102666:72;102671:22;102695:42;102666:4;:72::i;102594:156::-;7802:4;102822:24;:51;102818:157;;;102897:66;102902:15;102919:43;102897:4;:66::i;102818:157::-;103019:21;;;103051:48;;;;103117:68;;;;;;;;;;;;;;;;;;;;;;;;;103210:14;103205:20;;83869:3455;84049:11;;:75;;;-1:-1:-1;;;84049:75:0;;84088:4;84049:75;;;;-1:-1:-1;;;;;84049:75:0;;;;;;;;;;;;;;;;;;;;;;83964:4;;;;;;84049:11;;;:30;;:75;;;;;;;;;;;;;;;83964:4;84049:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;84049:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84049:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84049:75:0;;-1:-1:-1;84139:12:0;;84135:153;;84176:96;84187:27;84216:46;84264:7;84176:10;:96::i;:::-;84168:108;-1:-1:-1;84274:1:0;;-1:-1:-1;84168:108:0;;-1:-1:-1;84168:108:0;84135:153;84407:19;:17;:19::i;:::-;84382:21;;:44;84378:159;;84451:70;84456:22;84480:40;84451:4;:70::i;84378:159::-;84549:32;;:::i;:::-;-1:-1:-1;;;;;84695:24:0;;;;;;:14;:24;;;;;:38;;;84674:18;;;:59;84864:37;84710:8;84864:27;:37::i;:::-;84841:19;;;84826:75;;;84827:12;;;84826:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;84932:18:0;;-1:-1:-1;84916:4:0;:12;;;:34;;;;;;;;;84912:192;;84975:113;84986:16;85004:63;85074:4;:12;;;85069:18;;;;;;;84975:113;84967:125;-1:-1:-1;85090:1:0;;-1:-1:-1;84967:125:0;;-1:-1:-1;;84967:125:0;84912:192;-1:-1:-1;;85186:11:0;:23;85182:157;;;85245:19;;;;85226:16;;;:38;85182:157;;;85297:16;;;:30;;;85182:157;85940:37;85953:5;85960:4;:16;;;85940:12;:37::i;:::-;85915:22;;;:62;;;86287:19;;;;86279:52;;:7;:52::i;:::-;86253:22;;;86238:93;;;86239:12;;;86238:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;86366:18:0;;-1:-1:-1;86350:4:0;:12;;;:34;;;;;;;;;86342:105;;;;-1:-1:-1;;;86342:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86499:45;86507:12;;86521:4;:22;;;86499:7;:45::i;:::-;86475:20;;;86460:84;;;86461:12;;;86460:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;86579:18:0;;-1:-1:-1;86563:4:0;:12;;;:34;;;;;;;;;86555:96;;;;-1:-1:-1;;;86555:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86771:22;;;;;;-1:-1:-1;;;;;86734:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;86845:11;;86804:38;;;;:52;;;;86882:20;;;;86867:12;:35;;;86992:22;;;;87016;;86963:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87293:22;;;87276:14;;87293:22;;-1:-1:-1;83869:3455:0;-1:-1:-1;;;;;83869:3455:0:o;27712:271::-;27783:9;27794:4;27812:14;27828:8;27840:13;27848:1;27851;27840:7;:13::i;:::-;27811:42;;-1:-1:-1;27811:42:0;-1:-1:-1;27878:18:0;27870:4;:26;;;;;;;;;27866:75;;-1:-1:-1;27921:4:0;-1:-1:-1;27927:1:0;;-1:-1:-1;27913:16:0;;27866:75;27960:15;27968:3;27973:1;27960:7;:15::i;35568:515::-;35629:9;35640:10;;:::i;:::-;35664:14;35680:20;35704:22;35712:3;28451:4;35704:7;:22::i;:::-;35663:63;;-1:-1:-1;35663:63:0;-1:-1:-1;35749:18:0;35741:4;:26;;;;;;;;;35737:92;;-1:-1:-1;35798:18:0;;;;;;;;;-1:-1:-1;35798:18:0;;35792:4;;-1:-1:-1;35798:18:0;-1:-1:-1;35784:33:0;;35737:92;35842:14;35858:13;35875:31;35883:15;35900:5;35875:7;:31::i;:::-;35841:65;;-1:-1:-1;35841:65:0;-1:-1:-1;35929:18:0;35921:4;:26;;;;;;;;;35917:92;;-1:-1:-1;35978:18:0;;;;;;;;;-1:-1:-1;35978:18:0;;35972:4;;-1:-1:-1;35978:18:0;-1:-1:-1;35964:33:0;;-1:-1:-1;;35964:33:0;35917:92;36049:25;;;;;;;;;;;;-1:-1:-1;;36049:25:0;;-1:-1:-1;35568:515:0;-1:-1:-1;;;;;;35568:515:0:o;28847:213::-;29029:12;28451:4;29029:23;;;28847:213::o;104419:1646::-;104480:4;104486;104547:21;104579:20;104735:19;:17;:19::i;:::-;104710:21;;:44;104706:169;;104779:66;104784:22;104808:36;104779:4;:66::i;:::-;104771:92;-1:-1:-1;104847:15:0;-1:-1:-1;104771:92:0;;-1:-1:-1;104771:92:0;104706:169;105467:35;105480:10;105492:9;105467:12;:35::i;:::-;105449:53;;105550:15;105534:13;;:31;105515:50;;105640:13;;105620:16;:33;;105612:78;;;;;-1:-1:-1;;;105612:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105767:13;:32;;;105888:60;;;105902:10;105888:60;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;105888:60:0;;;;;;;;106024:14;106011:46;-1:-1:-1;106041:15:0;-1:-1:-1;;104419:1646:0;;;:::o;124355:904::-;124491:10;;124513:26;;;-1:-1:-1;;;124513:26:0;;-1:-1:-1;;;;;124513:26:0;;;;;;;;;;;;;;;124491:10;;;;;;;124513:14;;:26;;;;;124431:31;;124513:26;;;;;;;;124431:31;124491:10;124513:26;;;5:2:-1;;;;30:1;27;20:12;5:2;124513:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;124513:26:0;;;;124552:12;124606:16;124645:1;124640:152;;;;124815:2;124810:219;;;;125164:1;125161;125154:12;124640:152;-1:-1:-1;;124735:6:0;-1:-1:-1;124640:152:0;;124810:219;124912:2;124909:1;124906;124891:24;124954:1;124948:8;124937:19;;124599:586;;125214:7;125206:45;;;;;-1:-1:-1;;;125206:45:0;;;;;;;;;;;;-1:-1:-1;;;125206:45:0;;;;;;;;;;;;;;;124355:904;;;;:::o;71835:5278::-;71942:4;71967:19;;;:42;;-1:-1:-1;71990:19:0;;71967:42;71959:107;;;;-1:-1:-1;;;71959:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72079:27;;:::i;:::-;72223:28;:26;:28::i;:::-;72194:25;;;72179:72;;;72180:12;;;72179:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;72282:18:0;;-1:-1:-1;72266:4:0;:12;;;:34;;;;;;;;;72262:168;;72324:94;72335:16;72353:44;72404:4;:12;;;72399:18;;;;;;;72324:94;72317:101;;;;;72262:168;72484:18;;72480:1955;;-1:-1:-1;;72764:14:0;:26;72760:185;;;-1:-1:-1;;;;;72831:23:0;;;;;;:13;:23;;;;;;72811:17;;;:43;72760:185;;;72895:17;;;:34;;;72760:185;72997:80;73015:42;;;;;;;;73030:4;:25;;;73015:42;;;73059:4;:17;;;72997;:80::i;:::-;72976:17;;;72961:116;;;72962:12;;;72961:116;;;;;;;;;;;;;;;;;;;-1:-1:-1;73112:18:0;;-1:-1:-1;73096:4:0;:12;;;:34;;;;;;;;;73092:185;;73158:103;73169:16;73187:53;73247:4;:12;;;73242:18;;;;;;;73092:185;72480:1955;;;-1:-1:-1;;73545:14:0;:26;73541:883;;;-1:-1:-1;;;;;73612:23:0;;;;;;:13;:23;;;;;;;;;;73592:17;;;:43;;;73710:42;;;;;;;73725:25;;;;73710:42;;73754:17;;73692:80;;73710:42;73692:17;:80::i;73541:883::-;74024:17;;;:34;;;74154:42;;;;;;;;-1:-1:-1;;;74169:25:0;74154:42;;74115:82;;74044:14;;74115:22;:82::i;:::-;74094:17;;;74079:118;;;74080:12;;;74079:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;74236:18:0;;-1:-1:-1;74220:4:0;:12;;;:34;;;;;;;;;74216:193;;74286:103;74297:16;74315:53;74375:4;:12;;;74370:18;;;;;;;74216:193;74504:11;;74555:17;;;;74504:69;;;-1:-1:-1;;;74504:69:0;;74538:4;74504:69;;;;-1:-1:-1;;;;;74504:69:0;;;;;;;;;;;;;;;;74489:12;;74504:11;;;;;:25;;:69;;;;;;;;;;;;;;;74489:12;74504:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;74504:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74504:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74504:69:0;;-1:-1:-1;74588:12:0;;74584:142;;74624:90;74635:27;74664:40;74706:7;74624:10;:90::i;:::-;74617:97;;;;;;74584:142;74845:19;:17;:19::i;:::-;74820:21;;:44;74816:148;;74888:64;74893:22;74917:34;74888:4;:64::i;74816:148::-;75259:39;75267:11;;75280:4;:17;;;75259:7;:39::i;:::-;75236:19;;;75221:77;;;75222:12;;;75221:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;75329:18:0;;-1:-1:-1;75313:4:0;:12;;;:34;;;;;;;;;75309:178;;75371:104;75382:16;75400:54;75461:4;:12;;;75456:18;;;;;;;75309:178;-1:-1:-1;;;;;75547:23:0;;;;;;:13;:23;;;;;;75572:17;;;;75539:51;;75547:23;75539:7;:51::i;:::-;75514:21;;;75499:91;;;75500:12;;;75499:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;75621:18:0;;-1:-1:-1;75605:4:0;:12;;;:34;;;;;;;;;75601:181;;75663:107;75674:16;75692:57;75756:4;:12;;;75751:18;;;;;;;75601:181;75880:4;:17;;;75863:14;:12;:14::i;:::-;:34;75859:155;;;75921:81;75926:29;75957:44;75921:4;:81::i;75859:155::-;76513:42;76527:8;76537:4;:17;;;76513:13;:42::i;:::-;76648:19;;;;76634:11;:33;76704:21;;;;-1:-1:-1;;;;;76678:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;76837:17;;;;76803:52;;;;;;;76830:4;;-1:-1:-1;;;;;;;;;;;76803:52:0;;;;;;;76888:17;;;;76907;;;;;76871:54;;;-1:-1:-1;;;;;76871:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;76978:11;;77028:17;;;;77047;;;;76978:87;;;-1:-1:-1;;;76978:87:0;;77011:4;76978:87;;;;-1:-1:-1;;;;;76978:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;76978:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77090:14:0;;-1:-1:-1;77085:20:0;;-1:-1:-1;;77085:20:0;;77078:27;71835:5278;-1:-1:-1;;;;;;71835:5278:0:o;26276:343::-;26332:9;;26364:6;26360:69;;-1:-1:-1;26395:18:0;;-1:-1:-1;26395:18:0;26387:30;;26360:69;26450:5;;;26454:1;26450;:5;:1;26472:5;;;;;:10;26468:144;;-1:-1:-1;26507:26:0;;-1:-1:-1;26535:1:0;;-1:-1:-1;26499:38:0;;26468:144;26578:18;;-1:-1:-1;26598:1:0;-1:-1:-1;26570:30:0;;26714:215;26770:9;;26802:6;26798:77;;-1:-1:-1;26833:26:0;;-1:-1:-1;26861:1:0;26825:38;;26798:77;26895:18;26919:1;26915;:5;;;;;;26887:34;;;;26714:215;;;;;:::o;65920:3224::-;66068:11;;:58;;;-1:-1:-1;;;66068:58:0;;66100:4;66068:58;;;;-1:-1:-1;;;;;66068:58:0;;;;;;;;;;;;;;;65990:4;;;;;;66068:11;;;:23;;:58;;;;;;;;;;;;;;;65990:4;66068:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;66068:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;66068:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;66068:58:0;;-1:-1:-1;66141:12:0;;66137:145;;66178:88;66189:27;66218:38;66258:7;66178:10;:88::i;:::-;66170:100;-1:-1:-1;66268:1:0;;-1:-1:-1;66170:100:0;;-1:-1:-1;66170:100:0;66137:145;66401:19;:17;:19::i;:::-;66376:21;;:44;66372:151;;66445:62;66450:22;66474:32;66445:4;:62::i;66372:151::-;66535:25;;:::i;:::-;66617:28;:26;:28::i;:::-;66588:25;;;66573:72;;;66574:12;;;66573:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;66676:18:0;;-1:-1:-1;66660:4:0;:12;;;:34;;;;;;;;;66656:171;;66719:92;66730:16;66748:42;66797:4;:12;;;66792:18;;;;;;;66719:92;66711:104;-1:-1:-1;66813:1:0;;-1:-1:-1;66711:104:0;;-1:-1:-1;;66711:104:0;66656:171;67462:32;67475:6;67483:10;67462:12;:32::i;:::-;67438:21;;;:56;;;67768:42;;;;;;;;67783:25;;;;67768:42;;67722:89;;67438:56;67722:22;:89::i;:::-;67703:15;;;67688:123;;;67689:12;;;67688:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;67846:18:0;;-1:-1:-1;67830:4:0;:12;;;:34;;;;;;;;;67822:79;;;;;-1:-1:-1;;;67822:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68206:37;68214:11;;68227:4;:15;;;68206:7;:37::i;:::-;68183:19;;;68168:75;;;68169:12;;;68168:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;68278:18:0;;-1:-1:-1;68262:4:0;:12;;;:34;;;;;;;;;68254:87;;;;-1:-1:-1;;;68254:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68402:21:0;;;;;;:13;:21;;;;;;68425:15;;;;68394:47;;68402:21;68394:7;:47::i;:::-;68369:21;;;68354:87;;;68355:12;;;68354:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;68476:18:0;;-1:-1:-1;68460:4:0;:12;;;:34;;;;;;;;;68452:90;;;;-1:-1:-1;;;68452:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68635:19;;;;68621:11;:33;68689:21;;;;-1:-1:-1;;;;;68665:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;68799:21;;;;68822:15;;;;;68786:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68886:15;;;;68854:48;;;;;;;-1:-1:-1;;;;;68854:48:0;;;68871:4;;-1:-1:-1;;;;;;;;;;;68854:48:0;;;;;;;;69114:21;;;69097:14;;69114:21;;-1:-1:-1;65920:3224:0;-1:-1:-1;;;;65920:3224:0:o;32458:121::-;32517:4;28451;32541:19;32546:1;32549;:10;;;32541:4;:19::i;:::-;:30;;;;;;;32458:121;-1:-1:-1;;;32458:121:0:o;31856:120::-;31909:4;31933:35;31938:1;31941;31933:35;;;;;;;;;;;;;-1:-1:-1;;;31933:35:0;;;:4;:35::i;29173:174::-;29251:4;29268:18;;:::i;:::-;29289:15;29294:1;29297:6;29289:4;:15::i;:::-;29268:36;;29322:17;29331:7;29322:8;:17::i;31221:116::-;31274:4;31298:31;31303:1;31306;31298:31;;;;;;;;;;;;;-1:-1:-1;;;31298:31:0;;;:4;:31::i;78332:3080::-;78490:11;;:64;;;-1:-1:-1;;;78490:64:0;;78524:4;78490:64;;;;-1:-1:-1;;;;;78490:64:0;;;;;;;;;;;;;;;78416:4;;;;78490:11;;:25;;:64;;;;;;;;;;;;;;78416:4;78490:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;78490:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78490:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;78490:64:0;;-1:-1:-1;78569:12:0;;78565:142;;78605:90;78616:27;78645:40;78687:7;78605:10;:90::i;:::-;78598:97;;;;;78565:142;78826:19;:17;:19::i;:::-;78801:21;;:44;78797:148;;78869:64;78874:22;78898:34;78869:4;:64::i;78797:148::-;79054:12;79037:14;:12;:14::i;:::-;:29;79033:143;;;79090:74;79095:29;79126:37;79090:4;:74::i;79033:143::-;79188:27;;:::i;:::-;79503:37;79531:8;79503:27;:37::i;:::-;79480:19;;;79465:75;;;79466:4;79465:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;79571:18:0;;-1:-1:-1;79555:12:0;;:34;;;;;;;;;79551:181;;79613:107;79624:16;79642:57;79706:4;:12;;;79701:18;;;;;;;79613:107;79606:114;;;;;;79551:181;79785:42;79793:4;:19;;;79814:12;79785:7;:42::i;:::-;79759:22;;;79744:83;;;79745:4;79744:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;79858:18:0;;-1:-1:-1;79842:12:0;;:34;;;;;;;;;79838:188;;79900:114;79911:16;79929:64;80000:4;:12;;;79995:18;;;;;;;79838:188;80077:35;80085:12;;80099;80077:7;:35::i;:::-;80053:20;;;80038:74;;;80039:4;80038:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;80143:18:0;;-1:-1:-1;80127:12:0;;:34;;;;;;;;;80123:179;;80185:105;80196:16;80214:55;80276:4;:12;;;80271:18;;;;;;;80123:179;80797:37;80811:8;80821:12;80797:13;:37::i;:::-;80954:22;;;;;;-1:-1:-1;;;;;80917:24:0;;;;;;:14;:24;;;;;;;;:59;;;81028:11;;80987:38;;;;:52;;;;81065:20;;;;;81050:12;:35;;;81172:22;;81141:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81389:14;81377:27;78332:3080;-1:-1:-1;;;;;78332:3080:0:o;89465:3648::-;89688:11;;:112;;;-1:-1:-1;;;89688:112:0;;89731:4;89688:112;;;;-1:-1:-1;;;;;89688:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89605:4;;;;;;89688:11;;;:34;;:112;;;;;;;;;;;;;;;89605:4;89688:11;:112;;;5:2:-1;;;;30:1;27;20:12;5:2;89688:112:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89688:112:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89688:112:0;;-1:-1:-1;89815:12:0;;89811:150;;89852:93;89863:27;89892:43;89937:7;89852:10;:93::i;:::-;89844:105;-1:-1:-1;89947:1:0;;-1:-1:-1;89844:105:0;;-1:-1:-1;89844:105:0;89811:150;90080:19;:17;:19::i;:::-;90055:21;;:44;90051:156;;90124:67;90129:22;90153:37;90124:4;:67::i;90051:156::-;90364:19;:17;:19::i;:::-;90319:17;-1:-1:-1;;;;;90319:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90319:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90319:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90319:41:0;:64;90315:187;;90408:78;90413:22;90437:48;90408:4;:78::i;90315:187::-;90575:10;-1:-1:-1;;;;;90563:22:0;:8;-1:-1:-1;;;;;90563:22:0;;90559:145;;;90610:78;90615:26;90643:44;90610:4;:78::i;90559:145::-;90759:16;90755:147;;90800:86;90805:36;90843:42;90800:4;:86::i;90755:147::-;-1:-1:-1;;90958:11:0;:23;90954:158;;;91006:90;91011:36;91049:46;91006:4;:90::i;90954:158::-;91168:21;91191:22;91217:51;91234:10;91246:8;91256:11;91217:16;:51::i;:::-;91167:101;;-1:-1:-1;91167:101:0;-1:-1:-1;91283:40:0;;91279:163;;91348:78;91359:16;91353:23;;;;;;;;91378:47;91348:4;:78::i;:::-;91340:90;-1:-1:-1;91428:1:0;;-1:-1:-1;91340:90:0;;-1:-1:-1;;;91340:90:0;91279:163;91699:11;;:103;;;-1:-1:-1;;;91699:103:0;;91749:4;91699:103;;;;-1:-1:-1;;;;;91699:103:0;;;;;;;;;;;;;;;91656:21;;;;91699:11;;;:41;;:103;;;;;;;;;;;;:11;:103;;;5:2:-1;;;;30:1;27;20:12;5:2;91699:103:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91699:103:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91699:103:0;;;;;;;;;-1:-1:-1;91699:103:0;-1:-1:-1;91821:40:0;;91813:104;;;;-1:-1:-1;;;91813:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92052:11;92011:17;-1:-1:-1;;;;;92011:27:0;;92039:8;92011:37;;;;;;;;;;;;;-1:-1:-1;;;;;92011:37:0;-1:-1:-1;;;;;92011:37:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;92011:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92011:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92011:37:0;:52;;92003:89;;;;;-1:-1:-1;;;92003:89:0;;;;;;;;;;;;-1:-1:-1;;;92003:89:0;;;;;;;;;;;;;;;92221:15;-1:-1:-1;;;;;92251:43:0;;92289:4;92251:43;92247:256;;;92324:63;92346:4;92353:10;92365:8;92375:11;92324:13;:63::i;:::-;92311:76;;92247:256;;;92433:58;;;-1:-1:-1;;;92433:58:0;;-1:-1:-1;;;;;92433:58:0;;;;;;;;;;;;;;;;;;;;;;:23;;;;;;:58;;;;;;;;;;;;;;;-1:-1:-1;92433:23:0;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;92433:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92433:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92433:58:0;;-1:-1:-1;92247:256:0;92609:34;;92601:67;;;;;-1:-1:-1;;;92601:67:0;;;;;;;;;;;;-1:-1:-1;;;92601:67:0;;;;;;;;;;;;;;;92733:97;;;-1:-1:-1;;;;;92733:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93070:14;93057:48;-1:-1:-1;93087:17:0;;-1:-1:-1;;;;;;89465:3648:0;;;;;;;;:::o;122307:1344::-;122451:10;;122494:51;;;-1:-1:-1;;;122494:51:0;;122539:4;122494:51;;;;;;122374:4;;-1:-1:-1;;;;;122451:10:0;;122374:4;;122451:10;;122494:36;;:51;;;;;;;;;;;;;;122451:10;122494:51;;;5:2:-1;;;;30:1;27;20:12;5:2;122494:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;122494:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;122494:51:0;122556:47;;;-1:-1:-1;;;122556:47:0;;-1:-1:-1;;;;;122556:47:0;;;;;;;122589:4;122556:47;;;;;;;;;;;;122494:51;;-1:-1:-1;122556:18:0;;;;;;:47;;;;;-1:-1:-1;;122556:47:0;;;;;;;;-1:-1:-1;122556:18:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;122556:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;122556:47:0;;;;122616:12;122670:16;122709:1;122704:153;;;;122880:2;122875:220;;;;123231:1;123228;123221:12;122704:153;-1:-1:-1;;122800:6:0;-1:-1:-1;122704:153:0;;122875:220;122978:2;122975:1;122972;122957:24;123020:1;123014:8;123003:19;;122663:589;;123281:7;123273:44;;;;;-1:-1:-1;;;123273:44:0;;;;;;;;;;;;-1:-1:-1;;;123273:44:0;;;;;;;;;;;;;;;123430:10;;123415:51;;;-1:-1:-1;;;123415:51:0;;123460:4;123415:51;;;;;;123395:17;;-1:-1:-1;;;;;123430:10:0;;123415:36;;:51;;;;;;;;;;;;;;123430:10;123415:51;;;5:2:-1;;;;30:1;27;20:12;5:2;123415:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;123415:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;123415:51:0;;-1:-1:-1;123485:29:0;;;;123477:68;;;;;-1:-1:-1;;;123477:68:0;;;;;;;;;;;;-1:-1:-1;;;123477:68:0;;;;;;;;;;;;;;;123563:28;;;;;122307:1344;-1:-1:-1;;;;;122307:1344:0:o;39323:337::-;39411:9;39422:4;39440:13;39455:19;;:::i;:::-;39478:31;39493:6;39501:7;39478:14;:31::i;33054:122::-;33107:4;33131:37;33136:1;33139;33131:37;;;;;;;;;;;;;-1:-1:-1;;;33131:37:0;;;:4;:37::i;31984:158::-;32065:4;32098:12;32090:6;;;;32082:29;;;;-1:-1:-1;;;32082:29: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;32082:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;32129:5:0;;;31984:158::o;32317:133::-;32376:10;;:::i;:::-;32406:36;;;;;;;;32421:19;32426:1;:10;;;32438:1;32421:4;:19::i;:::-;32406:36;;32399:43;32317:133;-1:-1:-1;;;32317:133:0:o;31345:179::-;31426:4;31452:5;;;31484:12;31476:6;;;;31468:29;;;;-1:-1:-1;;;31468:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;38592:620:0;38672:9;38683:10;;:::i;:::-;38990:14;39006;39024:25;28451:4;39042:6;39024:7;:25::i;:::-;38989:60;;-1:-1:-1;38989:60:0;-1:-1:-1;39072:18:0;39064:4;:26;;;;;;;;;39060:92;;-1:-1:-1;39121:18:0;;;;;;;;;-1:-1:-1;39121:18:0;;39115:4;;-1:-1:-1;39121:18:0;-1:-1:-1;39107:33:0;;39060:92;39169:35;39176:9;39187:7;:16;;;39169:6;:35::i;33184:250::-;33265:4;33286:6;;;:16;;-1:-1:-1;33296:6:0;;33286:16;33282:57;;;-1:-1:-1;33326:1:0;33319:8;;33282:57;33358:5;;;33362:1;33358;:5;:1;33382:5;;;;;:10;33394:12;33374:33;;;;;-1:-1:-1;;;33374:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;125485:1062:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;125485:1062:0;;;-1:-1:-1;125485:1062:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;125485:1062:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;125485:1062:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;125485:1062:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;125485:1062:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://ad66ad50d8504ee84198a562a6339799280dbc6bdee6d0f6cb7e5611bcaa41fb
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.