More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 349,206 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Redeem Underlyin... | 57029248 | 6 mins ago | IN | 0 AVAX | 0.00137173 | ||||
Mint | 57028974 | 15 mins ago | IN | 12 AVAX | 0.00018546 | ||||
Mint | 57028387 | 33 mins ago | IN | 3 AVAX | 0.00023096 | ||||
Borrow | 57028376 | 34 mins ago | IN | 0 AVAX | 0.00048046 | ||||
Borrow | 57028276 | 37 mins ago | IN | 0 AVAX | 0.00075516 | ||||
Mint | 57027007 | 1 hr ago | IN | 40 AVAX | 0.00044594 | ||||
Mint | 57026788 | 1 hr ago | IN | 82 AVAX | 0.00032488 | ||||
Mint | 57026312 | 1 hr ago | IN | 293 AVAX | 0.00023096 | ||||
Mint | 57025866 | 1 hr ago | IN | 43 AVAX | 0.00054814 | ||||
Redeem Underlyin... | 57025675 | 1 hr ago | IN | 0 AVAX | 0.00178712 | ||||
Mint | 57025253 | 2 hrs ago | IN | 9 AVAX | 0.00019246 | ||||
Redeem Underlyin... | 57024165 | 2 hrs ago | IN | 0 AVAX | 0.00026783 | ||||
Mint | 57023023 | 3 hrs ago | IN | 19 AVAX | 0.00037093 | ||||
Borrow | 57022929 | 3 hrs ago | IN | 0 AVAX | 0.00059563 | ||||
Mint | 57022463 | 3 hrs ago | IN | 67.8 AVAX | 0.00049899 | ||||
Repay Borrow | 57021927 | 3 hrs ago | IN | 3.56 AVAX | 0.00038979 | ||||
Repay Borrow | 57021879 | 3 hrs ago | IN | 2.37 AVAX | 0.00038522 | ||||
Redeem Underlyin... | 57021852 | 3 hrs ago | IN | 0 AVAX | 0.00039376 | ||||
Mint | 57021423 | 4 hrs ago | IN | 19 AVAX | 0.00038602 | ||||
Redeem Underlyin... | 57021237 | 4 hrs ago | IN | 0 AVAX | 0.00041102 | ||||
Mint | 57020447 | 4 hrs ago | IN | 2,100 AVAX | 0.00025883 | ||||
Redeem Underlyin... | 57020362 | 4 hrs ago | IN | 0 AVAX | 0.00102543 | ||||
Redeem Underlyin... | 57020275 | 4 hrs ago | IN | 0 AVAX | 0.00045085 | ||||
Mint | 57019752 | 4 hrs ago | IN | 70 AVAX | 0.00038493 | ||||
Mint | 57019699 | 4 hrs ago | IN | 30 AVAX | 0.00038741 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
57029248 | 6 mins ago | 200 AVAX | ||||
57029038 | 13 mins ago | 25,095.04497068 AVAX | ||||
57029038 | 13 mins ago | 25,095.04497068 AVAX | ||||
57029038 | 13 mins ago | 71,424.35876271 AVAX | ||||
57029038 | 13 mins ago | 71,424.35876271 AVAX | ||||
57029038 | 13 mins ago | 0.00796036 AVAX | ||||
57029038 | 13 mins ago | 33,912.22919021 AVAX | ||||
57029038 | 13 mins ago | 33,912.22919021 AVAX | ||||
57029038 | 13 mins ago | 62,607.18506393 AVAX | ||||
57029038 | 13 mins ago | 62,607.18506393 AVAX | ||||
57029028 | 13 mins ago | 25,095.04706797 AVAX | ||||
57029028 | 13 mins ago | 25,095.04706797 AVAX | ||||
57029028 | 13 mins ago | 71,424.36473192 AVAX | ||||
57029028 | 13 mins ago | 71,424.36473192 AVAX | ||||
57029028 | 13 mins ago | 0.0060198 AVAX | ||||
57029028 | 13 mins ago | 33,912.74066779 AVAX | ||||
57029028 | 13 mins ago | 33,912.74066779 AVAX | ||||
57029028 | 13 mins ago | 62,607.05661295 AVAX | ||||
57029028 | 13 mins ago | 62,607.05661295 AVAX | ||||
57029022 | 14 mins ago | 0.01 AVAX | ||||
57028376 | 34 mins ago | 3 AVAX | ||||
57028276 | 37 mins ago | 150 AVAX | ||||
57027538 | 1 hrs ago | 25,095.05023465 AVAX | ||||
57027538 | 1 hrs ago | 25,095.05023465 AVAX | ||||
57027538 | 1 hrs ago | 71,424.37374477 AVAX |
Loading...
Loading
Contract Name:
QiAvax
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at snowscan.xyz 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: QiAvax.sol */ pragma solidity 0.5.17; /** * @title Benqi's QiAvax Contract * @notice QiToken which wraps Avax * @author Benqi */ contract QiAvax is QiToken { /** * @notice Construct a new QiAvax 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_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token * @param admin_ Address of the administrator of this token */ constructor(ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_, address payable admin_) public { // Creator of the contract is admin during initialization admin = msg.sender; initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set the proper admin now that initialization is done admin = admin_; } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives qiTokens in exchange * @dev Reverts upon any failure */ function mint() external payable { (uint err,) = mintInternal(msg.value); requireNoError(err, "mint failed"); } /** * @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 * @dev Reverts upon any failure */ function repayBorrow() external payable { (uint err,) = repayBorrowInternal(msg.value); requireNoError(err, "repayBorrow failed"); } /** * @notice Sender repays a borrow belonging to borrower * @dev Reverts upon any failure * @param borrower the account with the debt being payed off */ function repayBorrowBehalf(address borrower) external payable { (uint err,) = repayBorrowBehalfInternal(borrower, msg.value); requireNoError(err, "repayBorrowBehalf failed"); } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @dev Reverts upon any failure * @param borrower The borrower of this qiToken to be liquidated * @param qiTokenCollateral The market in which to seize collateral from the borrower */ function liquidateBorrow(address borrower, QiToken qiTokenCollateral) external payable { (uint err,) = liquidateBorrowInternal(borrower, msg.value, qiTokenCollateral); requireNoError(err, "liquidateBorrow failed"); } /** * @notice The sender adds to reserves. * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves() external payable returns (uint) { return _addReservesInternal(msg.value); } /** * @notice Send Avax to QiAvax to mint */ function () external payable { (uint err,) = mintInternal(msg.value); requireNoError(err, "mint failed"); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of Avax, before this message * @dev This excludes the value of the current message, if any * @return The quantity of Avax owned by this contract */ function getCashPrior() internal view returns (uint) { (MathError err, uint startingBalance) = subUInt(address(this).balance, msg.value); require(err == MathError.NO_ERROR); return startingBalance; } /** * @notice Perform the actual transfer in, which is a no-op * @param from Address sending the Avax * @param amount Amount of Avax being sent * @return The actual amount of Avax transferred */ function doTransferIn(address from, uint amount) internal returns (uint) { // Sanity checks require(msg.sender == from, "sender mismatch"); require(msg.value == amount, "value mismatch"); return amount; } function doTransferOut(address payable to, uint amount) internal { /* Send the Avax, with minimal gas and revert on failure */ to.transfer(amount); } function requireNoError(uint errCode, string memory message) internal pure { if (errCode == uint(Error.NO_ERROR)) { return; } bytes memory fullMessage = new bytes(bytes(message).length + 5); uint i; for (i = 0; i < bytes(message).length; i++) { fullMessage[i] = bytes(message)[i]; } fullMessage[i+0] = byte(uint8(32)); fullMessage[i+1] = byte(uint8(40)); fullMessage[i+2] = byte(uint8(48 + ( errCode / 10 ))); fullMessage[i+3] = byte(uint8(48 + ( errCode % 10 ))); fullMessage[i+4] = byte(uint8(41)); require(errCode == uint(Error.NO_ERROR), string(fullMessage)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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"},{"internalType":"address payable","name":"admin_","type":"address"}],"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"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"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":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":"contract QiToken","name":"qiTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[],"payable":true,"stateMutability":"payable","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":[],"name":"repayBorrow","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"}],"name":"repayBorrowBehalf","outputs":[],"payable":true,"stateMutability":"payable","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":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"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162005b5438038062005b54833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001e587878787878762000218565b600380546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000853945050505050565b60035461010090046001600160a01b03163314620002685760405162461bcd60e51b815260040180806020018281038252602481526020018062005abb6024913960400191505060405180910390fd5b600954158015620002795750600a54155b620002b65760405162461bcd60e51b815260040180806020018281038252602381526020018062005adf6023913960400191505060405180910390fd5b600784905583620002f95760405162461bcd60e51b815260040180806020018281038252603081526020018062005b026030913960400191505060405180910390fd5b60006200030f876001600160e01b036200042e16565b9050801562000365576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620003786001600160e01b036200059616565b600955670de0b6b3a7640000600a556200039b866001600160e01b036200059b16565b90508015620003dc5760405162461bcd60e51b815260040180806020018281038252602281526020018062005b326022913960400191505060405180910390fd5b8351620003f1906001906020870190620007b1565b50825162000407906002906020860190620007b1565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b031633146200046857620004606001603f6001600160e01b036200074116565b905062000591565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015620004ae57600080fd5b505afa158015620004c3573d6000803e3d6000fd5b505050506040513d6020811015620004da57600080fd5b50516200052e576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b425b90565b600354600090819061010090046001600160a01b03163314620005d857620005cf600160426001600160e01b036200074116565b91505062000591565b620005eb6001600160e01b036200059616565b600954146200060b57620005cf600a60416001600160e01b036200074116565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200065d57600080fd5b505afa15801562000672573d6000803e3d6000fd5b505050506040513d60208110156200068957600080fd5b5051620006dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006200058d565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200077157fe5b8360538111156200077e57fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115620007aa57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007f457805160ff191683800117855562000824565b8280016001018555821562000824579182015b828111156200082457825182559160200191906001019062000807565b506200083292915062000836565b5090565b6200059891905b808211156200083257600081556001016200083d565b61525880620008636000396000f3fe6080604052600436106102935760003560e01c806395d89b411161015a578063cd91801c116100c1578063e9c714f21161007a578063e9c714f214610a97578063f2b3abbd14610aac578063f3fdb15a14610adf578063f851a44014610af4578063fca7820b14610b09578063fcb6414714610b3357610293565b8063cd91801c146109cd578063cfa99201146109e2578063d3bd2c72146109f7578063db006a7514610a0c578063dd62ed3e14610a36578063e597461914610a7157610293565b8063aae40a2a11610113578063aae40a2a14610891578063b2a02ff1146108bf578063b71d1a0c14610902578063bd6d894d14610935578063c37f68e21461094a578063c5ebeaec146109a357610293565b806395d89b411461068757806395dd91931461069c57806399d8c1b4146106cf578063a6afed951461082e578063a9059cbb14610843578063aa5af0fd1461087c57610293565b80634576b5db116101fe57806370a08231116101b757806370a08231146105c157806373acee98146105f45780638303084614610609578063840bbeac14610633578063852a12e3146106485780638f840ddd1461067257610293565b80634576b5db1461051d57806347bd3718146105505780634e4d9fea146105655780635fe3b5671461056d578063601a0bf1146105825780636752e702146105ac57610293565b8063182df0f511610250578063182df0f51461042157806323b872dd146104365780632678224714610479578063313ce567146104aa5780633af9e669146104d55780633b1d21a21461050857610293565b806306fdde03146102d1578063095ea7b31461035b5780631249c58b146103a8578063173b9904146103b257806317bfdfbc146103d957806318160ddd1461040c575b600061029e34610b3b565b5090506102ce816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50005b3480156102dd57600080fd5b506102e6610de3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610320578181015183820152602001610308565b50505050905090810190601f16801561034d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036757600080fd5b506103946004803603604081101561037e57600080fd5b506001600160a01b038135169060200135610e70565b604080519115158252519081900360200190f35b6103b0610edd565b005b3480156103be57600080fd5b506103c7610f1b565b60408051918252519081900360200190f35b3480156103e557600080fd5b506103c7600480360360208110156103fc57600080fd5b50356001600160a01b0316610f21565b34801561041857600080fd5b506103c7610fe1565b34801561042d57600080fd5b506103c7610fe7565b34801561044257600080fd5b506103946004803603606081101561045957600080fd5b506001600160a01b0381358116916020810135909116906040013561104a565b34801561048557600080fd5b5061048e6110bc565b604080516001600160a01b039092168252519081900360200190f35b3480156104b657600080fd5b506104bf6110cb565b6040805160ff9092168252519081900360200190f35b3480156104e157600080fd5b506103c7600480360360208110156104f857600080fd5b50356001600160a01b03166110d4565b34801561051457600080fd5b506103c761118c565b34801561052957600080fd5b506103c76004803603602081101561054057600080fd5b50356001600160a01b031661119b565b34801561055c57600080fd5b506103c76112f0565b6103b06112f6565b34801561057957600080fd5b5061048e611338565b34801561058e57600080fd5b506103c7600480360360208110156105a557600080fd5b5035611347565b3480156105b857600080fd5b506103c76113e2565b3480156105cd57600080fd5b506103c7600480360360208110156105e457600080fd5b50356001600160a01b03166113e8565b34801561060057600080fd5b506103c7611403565b34801561061557600080fd5b506103c76004803603602081101561062c57600080fd5b50356114b9565b34801561063f57600080fd5b50610394611537565b34801561065457600080fd5b506103c76004803603602081101561066b57600080fd5b503561153c565b34801561067e57600080fd5b506103c7611547565b34801561069357600080fd5b506102e661154d565b3480156106a857600080fd5b506103c7600480360360208110156106bf57600080fd5b50356001600160a01b03166115a5565b3480156106db57600080fd5b506103b0600480360360c08110156106f257600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561072d57600080fd5b82018360208201111561073f57600080fd5b8035906020019184600183028401116401000000008311171561076157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156107b457600080fd5b8201836020820111156107c657600080fd5b803590602001918460018302840111640100000000831117156107e857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116029050565b34801561083a57600080fd5b506103c76117e9565b34801561084f57600080fd5b506103946004803603604081101561086657600080fd5b506001600160a01b038135169060200135611b41565b34801561088857600080fd5b506103c7611bb2565b6103b0600480360360408110156108a757600080fd5b506001600160a01b0381358116916020013516611bb8565b3480156108cb57600080fd5b506103c7600480360360608110156108e257600080fd5b506001600160a01b03813581169160208101359091169060400135611c05565b34801561090e57600080fd5b506103c76004803603602081101561092557600080fd5b50356001600160a01b0316611c76565b34801561094157600080fd5b506103c7611d02565b34801561095657600080fd5b5061097d6004803603602081101561096d57600080fd5b50356001600160a01b0316611dbe565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156109af57600080fd5b506103c7600480360360208110156109c657600080fd5b5035611e53565b3480156109d957600080fd5b506103c7611e5e565b3480156109ee57600080fd5b506103c7611ef3565b348015610a0357600080fd5b506103c7611ef9565b348015610a1857600080fd5b506103c760048036036020811015610a2f57600080fd5b5035611f67565b348015610a4257600080fd5b506103c760048036036040811015610a5957600080fd5b506001600160a01b0381358116916020013516611f72565b6103b060048036036020811015610a8757600080fd5b50356001600160a01b0316611f9d565b348015610aa357600080fd5b506103c7611feb565b348015610ab857600080fd5b506103c760048036036020811015610acf57600080fd5b50356001600160a01b03166120ee565b348015610aeb57600080fd5b5061048e612128565b348015610b0057600080fd5b5061048e612137565b348015610b1557600080fd5b506103c760048036036020811015610b2c57600080fd5b503561214b565b6103c76121c9565b60008054819060ff16610b82576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b946117e9565b90508015610bbf57610bb2816010811115610bab57fe5b601e6121d4565b925060009150610bcf9050565b610bc9338561223a565b92509250505b6000805460ff191660011790559092909150565b81610bed57610ddf565b606081516005016040519080825280601f01601f191660200182016040528015610c1e576020820181803883390190505b50905060005b8251811015610c6f57828181518110610c3957fe5b602001015160f81c60f81b828281518110610c5057fe5b60200101906001600160f81b031916908160001a905350600101610c24565b8151600160fd1b90839083908110610c8357fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610cae57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610cde57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610d0e57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610d3957fe5b60200101906001600160f81b031916908160001a905350818415610ddb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610da0578181015183820152602001610d88565b50505050905090810190601f168015610dcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610ee834610b3b565b509050610f18816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50565b60085481565b6000805460ff16610f66576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f786117e9565b14610fc3576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610fcc826115a5565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610ff461260c565b9092509050600082600381111561100757fe5b146110435760405162461bcd60e51b815260040180806020018281038252603581526020018061516f6035913960400191505060405180910390fd5b9150505b90565b6000805460ff1661108f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110a5338686866126bb565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b60006110de614e10565b60405180602001604052806110f1611d02565b90526001600160a01b0384166000908152600e602052604081205491925090819061111d908490612949565b9092509050600082600381111561113057fe5b14611182576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b600061119661299c565b905090565b60035460009061010090046001600160a01b031633146111c8576111c16001603f6121d4565b9050611187565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561120d57600080fd5b505afa158015611221573d6000803e3d6000fd5b505050506040513d602081101561123757600080fd5b505161128a576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6000611301346129c8565b509050610f1881604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610be3565b6005546001600160a01b031681565b6000805460ff1661138c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561139e6117e9565b905080156113c4576113bc8160108111156113b557fe5b60306121d4565b915050610fcf565b6113cd83612a4a565b9150506000805460ff19166001179055919050565b60115481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff16611448576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561145a6117e9565b146114a5576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000805460ff166114fe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556115106117e9565b9050801561152e576113bc81601081111561152757fe5b60516121d4565b6113cd83612b7d565b600181565b6000610ed782612c0c565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b60008060006115b384612c8d565b909250905060008260038111156115c657fe5b146112e95760405162461bcd60e51b815260040180806020018281038252603781526020018061507a6037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146116505760405162461bcd60e51b8152600401808060200182810382526024815260200180614fb66024913960400191505060405180910390fd5b6009541580156116605750600a54155b61169b5760405162461bcd60e51b8152600401808060200182810382526023815260200180614fda6023913960400191505060405180910390fd5b6007849055836116dc5760405162461bcd60e51b8152600401808060200182810382526030815260200180614ffd6030913960400191505060405180910390fd5b60006116e78761119b565b9050801561173c576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611744612d41565b600955670de0b6b3a7640000600a5561175c86612d45565b9050801561179b5760405162461bcd60e51b815260040180806020018281038252602281526020018061502d6022913960400191505060405180910390fd5b83516117ae906001906020870190614e23565b5082516117c2906002906020860190614e23565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b6000806117f4612d41565b6009549091508082141561180d57600092505050611047565b600061181761299c565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561188557600080fd5b505afa158015611899573d6000803e3d6000fd5b505050506040513d60208110156118af57600080fd5b5051905065048c2739500081111561190e576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061191b8989612eba565b9092509050600082600381111561192e57fe5b14611980576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b611988614e10565b6000806000806119a660405180602001604052808a81525087612edd565b909750945060008760038111156119b957fe5b146119eb576119d6600960068960038111156119d157fe5b612f45565b9e505050505050505050505050505050611047565b6119f5858c612949565b90975093506000876003811115611a0857fe5b14611a20576119d6600960018960038111156119d157fe5b611a2a848c612fab565b90975092506000876003811115611a3d57fe5b14611a55576119d6600960048960038111156119d157fe5b611a706040518060200160405280600854815250858c612fd1565b90975091506000876003811115611a8357fe5b14611a9b576119d6600960058960038111156119d157fe5b611aa6858a8b612fd1565b90975090506000876003811115611ab957fe5b14611ad1576119d6600960038960038111156119d157fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b86576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611b9c333386866126bb565b1490506000805460ff1916600117905592915050565b600a5481565b6000611bc583348461302d565b509050611c0081604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610be3565b505050565b6000805460ff16611c4a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c603385858561315f565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c9c576111c1600160456121d4565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a160006112e9565b6000805460ff16611d47576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d596117e9565b14611da4576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611dac610fe7565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611de989612c8d565b935090506000816003811115611dfb57fe5b14611e195760095b975060009650869550859450611e4c9350505050565b611e2161260c565b925090506000816003811115611e3357fe5b14611e3f576009611e03565b5060009650919450925090505b9193509193565b6000610ed782613534565b6006546000906001600160a01b03166315f24053611e7a61299c565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611ec257600080fd5b505afa158015611ed6573d6000803e3d6000fd5b505050506040513d6020811015611eec57600080fd5b5051905090565b60095481565b6006546000906001600160a01b031663b8168816611f1561299c565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611ec257600080fd5b6000610ed7826135b3565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611fa9823461362d565b509050610ddf816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610be3565b6004546000906001600160a01b031633141580612006575033155b1561201e57612017600160006121d4565b9050611047565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120f96117e9565b9050801561211f5761211781601081111561211057fe5b60406121d4565b915050611187565b6112e983612d45565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6000805460ff16612190576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121a26117e9565b905080156121c0576113bc8160108111156121b957fe5b60466121d4565b6113cd836136d8565b600061119634613780565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561220357fe5b83605381111561220f57fe5b604080519283526020830191909152600082820152519081900360600190a18260108111156112e957fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050506040513d60208110156122c557600080fd5b5051905080156122e9576122dc6003601f83612f45565b9250600091506126059050565b6122f1612d41565b60095414612305576122dc600a60226121d4565b61230d614ea1565b61231561260c565b604083018190526020830182600381111561232c57fe5b600381111561233757fe5b905250600090508160200151600381111561234e57fe5b146123785761236a60096021836020015160038111156119d157fe5b935060009250612605915050565b6123828686613814565b60c08201819052604080516020810182529083015181526123a391906138b0565b60608301819052602083018260038111156123ba57fe5b60038111156123c557fe5b90525060009050816020015160038111156123dc57fe5b1461242e576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b61243e600d548260600151612fab565b608083018190526020830182600381111561245557fe5b600381111561246057fe5b905250600090508160200151600381111561247757fe5b146124b35760405162461bcd60e51b81526004018080602001828103825260288152602001806151a46028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516124db9190612fab565b60a08301819052602083018260038111156124f257fe5b60038111156124fd57fe5b905250600090508160200151600381111561251457fe5b146125505760405162461bcd60e51b815260040180806020018281038252602b81526020018061504f602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206150eb8339815191529181900360200190a360c00151600093509150505b9250929050565b600d54600090819080612627575050600754600091506126b7565b600061263161299c565b9050600061263d614e10565b600061264e84600b54600c546138c7565b93509050600081600381111561266057fe5b14612675579550600094506126b79350505050565b61267f8386613905565b92509050600081600381111561269157fe5b146126a6579550600094506126b79350505050565b50516000955093506126b792505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561272057600080fd5b505af1158015612734573d6000803e3d6000fd5b505050506040513d602081101561274a57600080fd5b505190508015612769576127616003604a83612f45565b915050612941565b836001600160a01b0316856001600160a01b0316141561278f576127616002604b6121d4565b60006001600160a01b0387811690871614156127ae57506000196127d6565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b6000806000806127e68589612eba565b909450925060008460038111156127f957fe5b146128175761280a6009604b6121d4565b9650505050505050612941565b6001600160a01b038a166000908152600e602052604090205461283a9089612eba565b9094509150600084600381111561284d57fe5b1461285e5761280a6009604c6121d4565b6001600160a01b0389166000908152600e60205260409020546128819089612fab565b9094509050600084600381111561289457fe5b146128a55761280a6009604d6121d4565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146128fd576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206150eb8339815191528a6040518082815260200191505060405180910390a3600096505050505050505b949350505050565b6000806000612956614e10565b6129608686612edd565b9092509050600082600381111561297357fe5b146129845750915060009050612605565b600061298f826139b5565b9350935050509250929050565b60008060006129ab4734612eba565b909250905060008260038111156129be57fe5b1461104357600080fd5b60008054819060ff16612a0f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612a216117e9565b90508015612a3f57610bb2816010811115612a3857fe5b60366121d4565b610bc93333866139c4565b600354600090819061010090046001600160a01b03163314612a7257612117600160316121d4565b612a7a612d41565b60095414612a8e57612117600a60336121d4565b82612a9761299c565b1015612aa957612117600e60326121d4565b600c54831115612abf57612117600260346121d4565b50600c5482810390811115612b055760405162461bcd60e51b81526004018080602001828103825260248152602001806152006024913960400191505060405180910390fd5b600c819055600354612b259061010090046001600160a01b031684613d12565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a160006112e9565b600354600090819061010090046001600160a01b03163314612ba557612117600160526121d4565b612bad612d41565b60095414612bc157612117600a60536121d4565b506011805490839055604080518281526020810185905281517ff5815f353a60e815cce7553e4f60c533a59d26b1b5504ea4b6db8d60da3e4da2929181900390910190a160006112e9565b6000805460ff16612c51576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c636117e9565b90508015612c81576113bc816010811115612c7a57fe5b60276121d4565b6113cd33600085613d48565b6001600160a01b038116600090815260106020526040812080548291829182918291612cc4575060009450849350612d3c92505050565b612cd48160000154600a54614288565b90945092506000846003811115612ce757fe5b14612cfc575091935060009250612d3c915050565b612d0a8382600101546142c7565b90945091506000846003811115612d1d57fe5b14612d32575091935060009250612d3c915050565b5060009450925050505b915091565b4290565b600354600090819061010090046001600160a01b03163314612d6d57612117600160426121d4565b612d75612d41565b60095414612d8957612117600a60416121d4565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612dda57600080fd5b505afa158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b5051612e57576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006112e9565b600080838311612ed1575060009050818303612605565b50600390506000612605565b6000612ee7614e10565b600080612ef8866000015186614288565b90925090506000826003811115612f0b57fe5b14612f2a57506040805160208101909152600081529092509050612605565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612f7457fe5b846053811115612f8057fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561294157fe5b600080838301848110612fc357600092509050612605565b506002915060009050612605565b6000806000612fde614e10565b612fe88787612edd565b90925090506000826003811115612ffb57fe5b1461300c5750915060009050613025565b61301e613018826139b5565b86612fab565b9350935050505b935093915050565b60008054819060ff16613074576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556130866117e9565b905080156130b1576130a481601081111561309d57fe5b600f6121d4565b9250600091506131489050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156130ec57600080fd5b505af1158015613100573d6000803e3d6000fd5b505050506040513d602081101561311657600080fd5b505190508015613136576130a481601081111561312f57fe5b60106121d4565b613142338787876142f2565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b1580156131cc57600080fd5b505af11580156131e0573d6000803e3d6000fd5b505050506040513d60208110156131f657600080fd5b50519050801561320d576127616003601b83612f45565b846001600160a01b0316846001600160a01b03161415613233576127616006601c6121d4565b61323b614edf565b6001600160a01b0385166000908152600e602052604090205461325e9085612eba565b602083018190528282600381111561327257fe5b600381111561327d57fe5b905250600090508151600381111561329157fe5b146132b6576132ad6009601a836000015160038111156119d157fe5b92505050612941565b6132d08460405180602001604052806011548152506147e4565b608082018190526132e290859061480c565b60608201526132ef61260c565b60c083018190528282600381111561330357fe5b600381111561330e57fe5b905250600090508151600381111561332257fe5b14613374576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61339460405180602001604052808360c001518152508260800151614846565b60a08201819052600c546133a791614865565b60e0820152600d5460808201516133be919061480c565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516133ec9190612fab565b604083018190528282600381111561340057fe5b600381111561340b57fe5b905250600090508151600381111561341f57fe5b1461343b576132ad60096019836000015160038111156119d157fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b168082529084902092909255606085015183519081529251919390926000805160206150eb833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206150eb8339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613579576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561358b6117e9565b905080156135a9576113bc8160108111156135a257fe5b60086121d4565b6113cd338461489b565b6000805460ff166135f8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561360a6117e9565b90508015613621576113bc816010811115612c7a57fe5b6113cd33846000613d48565b60008054819060ff16613674576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556136866117e9565b905080156136b1576136a481601081111561369d57fe5b60356121d4565b9250600091506136c29050565b6136bc3386866139c4565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b031633146136fe576111c1600160476121d4565b613706612d41565b6009541461371a576111c1600a60486121d4565b670de0b6b3a7640000821115613736576111c1600260496121d4565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a160006112e9565b6000805460ff166137c5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556137d76117e9565b905080156137f5576113bc8160108111156137ee57fe5b604e6121d4565b6137fe83614b2f565b509150506000805460ff19166001179055919050565b6000336001600160a01b03841614613865576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b8134146138aa576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006138bd614e10565b6129608686614c17565b6000806000806138d78787612fab565b909250905060008260038111156138ea57fe5b146138fb5750915060009050613025565b61301e8186612eba565b600061390f614e10565b60008061392486670de0b6b3a7640000614288565b9092509050600082600381111561393757fe5b1461395657506040805160208101909152600081529092509050612605565b60008061396383886142c7565b9092509050600082600381111561397657fe5b1461399857506040805160208101909152600081529094509250612605915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b158015613a2d57600080fd5b505af1158015613a41573d6000803e3d6000fd5b505050506040513d6020811015613a5757600080fd5b505190508015613a7b57613a6e6003603883612f45565b9250600091506130259050565b613a83612d41565b60095414613a9757613a6e600a60396121d4565b613a9f614f2c565b6001600160a01b0386166000908152601060205260409020600101546060820152613ac986612c8d565b6080830181905260208301826003811115613ae057fe5b6003811115613aeb57fe5b9052506000905081602001516003811115613b0257fe5b14613b2c57613b1e60096037836020015160038111156119d157fe5b935060009250613025915050565b600019851415613b455760808101516040820152613b4d565b604081018590525b613b5b878260400151613814565b60e082018190526080820151613b7091612eba565b60a0830181905260208301826003811115613b8757fe5b6003811115613b9257fe5b9052506000905081602001516003811115613ba957fe5b14613be55760405162461bcd60e51b815260040180806020018281038252603a8152602001806150b1603a913960400191505060405180910390fd5b613bf5600b548260e00151612eba565b60c0830181905260208301826003811115613c0c57fe5b6003811115613c1757fe5b9052506000905081602001516003811115613c2e57fe5b14613c6a5760405162461bcd60e51b815260040180806020018281038252603181526020018061510b6031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c00573d6000803e3d6000fd5b6000821580613d55575081155b613d905760405162461bcd60e51b81526004018080602001828103825260348152602001806151cc6034913960400191505060405180910390fd5b613d98614ea1565b613da061260c565b6040830181905260208301826003811115613db757fe5b6003811115613dc257fe5b9052506000905081602001516003811115613dd957fe5b14613dfd57613df56009602b836020015160038111156119d157fe5b9150506112e9565b8315613eb257600019841415613e30576001600160a01b0385166000908152600e60205260409020546060820152613e38565b606081018490525b613e58604051806020016040528083604001518152508260600151612949565b6080830181905260208301826003811115613e6f57fe5b6003811115613e7a57fe5b9052506000905081602001516003811115613e9157fe5b14613ead57613df560096029836020015160038111156119d157fe5b613f70565b600019831415613ef9576001600160a01b0385166000908152600e60209081526040918290205460608401908152825191820183529183015181529051613e589190612949565b6080810183905260408051602081018252908201518152613f1b9084906138b0565b6060830181905260208301826003811115613f3257fe5b6003811115613f3d57fe5b9052506000905081602001516003811115613f5457fe5b14613f7057613df56009602a836020015160038111156119d157fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613fd557600080fd5b505af1158015613fe9573d6000803e3d6000fd5b505050506040513d6020811015613fff57600080fd5b50519050801561401f576140166003602883612f45565b925050506112e9565b614027612d41565b6009541461403b57614016600a602c6121d4565b61404b600d548360600151612eba565b60a084018190526020840182600381111561406257fe5b600381111561406d57fe5b905250600090508260200151600381111561408457fe5b146140a0576140166009602e846020015160038111156119d157fe5b6001600160a01b0386166000908152600e602052604090205460608301516140c89190612eba565b60c08401819052602084018260038111156140df57fe5b60038111156140ea57fe5b905250600090508260200151600381111561410157fe5b1461411d576140166009602d846020015160038111156119d157fe5b816080015161412a61299c565b101561413c57614016600e602f6121d4565b61414a868360800151613d12565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206150eb833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561425d57600080fd5b505af1158015614271573d6000803e3d6000fd5b506000925061427e915050565b9695505050505050565b6000808361429b57506000905080612605565b838302838582816142a857fe5b04146142bc57506002915060009050612605565b600092509050612605565b600080826142db5750600190506000612605565b60008385816142e657fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561436357600080fd5b505af1158015614377573d6000803e3d6000fd5b505050506040513d602081101561438d57600080fd5b5051905080156143b1576143a46003601283612f45565b9250600091506147db9050565b6143b9612d41565b600954146143cd576143a4600a60166121d4565b6143d5612d41565b846001600160a01b031663cfa992016040518163ffffffff1660e01b815260040160206040518083038186803b15801561440e57600080fd5b505afa158015614422573d6000803e3d6000fd5b505050506040513d602081101561443857600080fd5b50511461444b576143a4600a60116121d4565b866001600160a01b0316866001600160a01b03161415614471576143a4600660176121d4565b84614482576143a4600760156121d4565b600019851415614498576143a4600760146121d4565b6000806144a68989896139c4565b909250905081156144d6576144c78260108111156144c057fe5b60186121d4565b9450600093506147db92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561453057600080fd5b505afa158015614544573d6000803e3d6000fd5b505050506040513d604081101561455a57600080fd5b508051602090910151909250905081156145a55760405162461bcd60e51b815260040180806020018281038252603381526020018061513c6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156145fc57600080fd5b505afa158015614610573d6000803e3d6000fd5b505050506040513d602081101561462657600080fd5b5051101561467b576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156146a15761469a308d8d8561315f565b905061472b565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156146fc57600080fd5b505af1158015614710573d6000803e3d6000fd5b505050506040513d602081101561472657600080fd5b505190505b8015614775576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b6000670de0b6b3a76400006147fd848460000151614c76565b8161480457fe5b049392505050565b60006112e98383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614cb8565b6000614850614e10565b61485a8484614d12565b9050612941816139b5565b60006112e98383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614d3c565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156148f857600080fd5b505af115801561490c573d6000803e3d6000fd5b505050506040513d602081101561492257600080fd5b505190508015614941576149396003600e83612f45565b915050610ed7565b614949612d41565b6009541461495c57614939600a806121d4565b8261496561299c565b101561497757614939600e60096121d4565b61497f614f72565b61498885612c8d565b602083018190528282600381111561499c57fe5b60038111156149a757fe5b90525060009050815160038111156149bb57fe5b146149e0576149d760096007836000015160038111156119d157fe5b92505050610ed7565b6149ee816020015185612fab565b6040830181905282826003811115614a0257fe5b6003811115614a0d57fe5b9052506000905081516003811115614a2157fe5b14614a3d576149d76009600c836000015160038111156119d157fe5b614a49600b5485612fab565b6060830181905282826003811115614a5d57fe5b6003811115614a6857fe5b9052506000905081516003811115614a7c57fe5b14614a98576149d76009600b836000015160038111156119d157fe5b614aa28585613d12565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b600080600080614b3d612d41565b60095414614b5c57614b51600a604f6121d4565b93509150612d3c9050565b614b663386613814565b905080600c54019150600c54821015614bc6576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6000614c21614e10565b600080614c36670de0b6b3a764000087614288565b90925090506000826003811115614c4957fe5b14614c6857506040805160208101909152600081529092509050612605565b61298f818660000151613905565b60006112e983836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250614d9a565b60008184841115614d0a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b505050900390565b614d1a614e10565b6040518060200160405280614d33856000015185614c76565b90529392505050565b60008383018285821015614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b50949350505050565b6000831580614da7575082155b15614db4575060006112e9565b83830283858281614dc157fe5b04148390614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e6457805160ff1916838001178555614e91565b82800160010185558215614e91579182015b82811115614e91578251825591602001919060010190614e76565b50614e9d929150614f9b565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b61104791905b80821115614e9d5760008155600101614fa156fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820322ccac7730d149df7c4cf9c673eb0560f24bb7d8d46a5ad24a6572f73ebf03664736f6c634300051100326f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c6564000000000000000000000000486af39519b4dc9a7fccd318217352830e8ad9b4000000000000000000000000f805e22c81ef330967eec52f7edb0c6b31fd5ccf000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000005423819b3b5bb38b0e9e9e59f22f9034e2d8819b000000000000000000000000000000000000000000000000000000000000000a42656e716920415641580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067169415641580000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106102935760003560e01c806395d89b411161015a578063cd91801c116100c1578063e9c714f21161007a578063e9c714f214610a97578063f2b3abbd14610aac578063f3fdb15a14610adf578063f851a44014610af4578063fca7820b14610b09578063fcb6414714610b3357610293565b8063cd91801c146109cd578063cfa99201146109e2578063d3bd2c72146109f7578063db006a7514610a0c578063dd62ed3e14610a36578063e597461914610a7157610293565b8063aae40a2a11610113578063aae40a2a14610891578063b2a02ff1146108bf578063b71d1a0c14610902578063bd6d894d14610935578063c37f68e21461094a578063c5ebeaec146109a357610293565b806395d89b411461068757806395dd91931461069c57806399d8c1b4146106cf578063a6afed951461082e578063a9059cbb14610843578063aa5af0fd1461087c57610293565b80634576b5db116101fe57806370a08231116101b757806370a08231146105c157806373acee98146105f45780638303084614610609578063840bbeac14610633578063852a12e3146106485780638f840ddd1461067257610293565b80634576b5db1461051d57806347bd3718146105505780634e4d9fea146105655780635fe3b5671461056d578063601a0bf1146105825780636752e702146105ac57610293565b8063182df0f511610250578063182df0f51461042157806323b872dd146104365780632678224714610479578063313ce567146104aa5780633af9e669146104d55780633b1d21a21461050857610293565b806306fdde03146102d1578063095ea7b31461035b5780631249c58b146103a8578063173b9904146103b257806317bfdfbc146103d957806318160ddd1461040c575b600061029e34610b3b565b5090506102ce816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50005b3480156102dd57600080fd5b506102e6610de3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610320578181015183820152602001610308565b50505050905090810190601f16801561034d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036757600080fd5b506103946004803603604081101561037e57600080fd5b506001600160a01b038135169060200135610e70565b604080519115158252519081900360200190f35b6103b0610edd565b005b3480156103be57600080fd5b506103c7610f1b565b60408051918252519081900360200190f35b3480156103e557600080fd5b506103c7600480360360208110156103fc57600080fd5b50356001600160a01b0316610f21565b34801561041857600080fd5b506103c7610fe1565b34801561042d57600080fd5b506103c7610fe7565b34801561044257600080fd5b506103946004803603606081101561045957600080fd5b506001600160a01b0381358116916020810135909116906040013561104a565b34801561048557600080fd5b5061048e6110bc565b604080516001600160a01b039092168252519081900360200190f35b3480156104b657600080fd5b506104bf6110cb565b6040805160ff9092168252519081900360200190f35b3480156104e157600080fd5b506103c7600480360360208110156104f857600080fd5b50356001600160a01b03166110d4565b34801561051457600080fd5b506103c761118c565b34801561052957600080fd5b506103c76004803603602081101561054057600080fd5b50356001600160a01b031661119b565b34801561055c57600080fd5b506103c76112f0565b6103b06112f6565b34801561057957600080fd5b5061048e611338565b34801561058e57600080fd5b506103c7600480360360208110156105a557600080fd5b5035611347565b3480156105b857600080fd5b506103c76113e2565b3480156105cd57600080fd5b506103c7600480360360208110156105e457600080fd5b50356001600160a01b03166113e8565b34801561060057600080fd5b506103c7611403565b34801561061557600080fd5b506103c76004803603602081101561062c57600080fd5b50356114b9565b34801561063f57600080fd5b50610394611537565b34801561065457600080fd5b506103c76004803603602081101561066b57600080fd5b503561153c565b34801561067e57600080fd5b506103c7611547565b34801561069357600080fd5b506102e661154d565b3480156106a857600080fd5b506103c7600480360360208110156106bf57600080fd5b50356001600160a01b03166115a5565b3480156106db57600080fd5b506103b0600480360360c08110156106f257600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561072d57600080fd5b82018360208201111561073f57600080fd5b8035906020019184600183028401116401000000008311171561076157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156107b457600080fd5b8201836020820111156107c657600080fd5b803590602001918460018302840111640100000000831117156107e857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116029050565b34801561083a57600080fd5b506103c76117e9565b34801561084f57600080fd5b506103946004803603604081101561086657600080fd5b506001600160a01b038135169060200135611b41565b34801561088857600080fd5b506103c7611bb2565b6103b0600480360360408110156108a757600080fd5b506001600160a01b0381358116916020013516611bb8565b3480156108cb57600080fd5b506103c7600480360360608110156108e257600080fd5b506001600160a01b03813581169160208101359091169060400135611c05565b34801561090e57600080fd5b506103c76004803603602081101561092557600080fd5b50356001600160a01b0316611c76565b34801561094157600080fd5b506103c7611d02565b34801561095657600080fd5b5061097d6004803603602081101561096d57600080fd5b50356001600160a01b0316611dbe565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156109af57600080fd5b506103c7600480360360208110156109c657600080fd5b5035611e53565b3480156109d957600080fd5b506103c7611e5e565b3480156109ee57600080fd5b506103c7611ef3565b348015610a0357600080fd5b506103c7611ef9565b348015610a1857600080fd5b506103c760048036036020811015610a2f57600080fd5b5035611f67565b348015610a4257600080fd5b506103c760048036036040811015610a5957600080fd5b506001600160a01b0381358116916020013516611f72565b6103b060048036036020811015610a8757600080fd5b50356001600160a01b0316611f9d565b348015610aa357600080fd5b506103c7611feb565b348015610ab857600080fd5b506103c760048036036020811015610acf57600080fd5b50356001600160a01b03166120ee565b348015610aeb57600080fd5b5061048e612128565b348015610b0057600080fd5b5061048e612137565b348015610b1557600080fd5b506103c760048036036020811015610b2c57600080fd5b503561214b565b6103c76121c9565b60008054819060ff16610b82576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b946117e9565b90508015610bbf57610bb2816010811115610bab57fe5b601e6121d4565b925060009150610bcf9050565b610bc9338561223a565b92509250505b6000805460ff191660011790559092909150565b81610bed57610ddf565b606081516005016040519080825280601f01601f191660200182016040528015610c1e576020820181803883390190505b50905060005b8251811015610c6f57828181518110610c3957fe5b602001015160f81c60f81b828281518110610c5057fe5b60200101906001600160f81b031916908160001a905350600101610c24565b8151600160fd1b90839083908110610c8357fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610cae57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610cde57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610d0e57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610d3957fe5b60200101906001600160f81b031916908160001a905350818415610ddb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610da0578181015183820152602001610d88565b50505050905090810190601f168015610dcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b6000610ee834610b3b565b509050610f18816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50565b60085481565b6000805460ff16610f66576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f786117e9565b14610fc3576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610fcc826115a5565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610ff461260c565b9092509050600082600381111561100757fe5b146110435760405162461bcd60e51b815260040180806020018281038252603581526020018061516f6035913960400191505060405180910390fd5b9150505b90565b6000805460ff1661108f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110a5338686866126bb565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b60006110de614e10565b60405180602001604052806110f1611d02565b90526001600160a01b0384166000908152600e602052604081205491925090819061111d908490612949565b9092509050600082600381111561113057fe5b14611182576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b600061119661299c565b905090565b60035460009061010090046001600160a01b031633146111c8576111c16001603f6121d4565b9050611187565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561120d57600080fd5b505afa158015611221573d6000803e3d6000fd5b505050506040513d602081101561123757600080fd5b505161128a576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6000611301346129c8565b509050610f1881604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610be3565b6005546001600160a01b031681565b6000805460ff1661138c576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561139e6117e9565b905080156113c4576113bc8160108111156113b557fe5b60306121d4565b915050610fcf565b6113cd83612a4a565b9150506000805460ff19166001179055919050565b60115481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff16611448576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561145a6117e9565b146114a5576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000805460ff166114fe576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556115106117e9565b9050801561152e576113bc81601081111561152757fe5b60516121d4565b6113cd83612b7d565b600181565b6000610ed782612c0c565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b60008060006115b384612c8d565b909250905060008260038111156115c657fe5b146112e95760405162461bcd60e51b815260040180806020018281038252603781526020018061507a6037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146116505760405162461bcd60e51b8152600401808060200182810382526024815260200180614fb66024913960400191505060405180910390fd5b6009541580156116605750600a54155b61169b5760405162461bcd60e51b8152600401808060200182810382526023815260200180614fda6023913960400191505060405180910390fd5b6007849055836116dc5760405162461bcd60e51b8152600401808060200182810382526030815260200180614ffd6030913960400191505060405180910390fd5b60006116e78761119b565b9050801561173c576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611744612d41565b600955670de0b6b3a7640000600a5561175c86612d45565b9050801561179b5760405162461bcd60e51b815260040180806020018281038252602281526020018061502d6022913960400191505060405180910390fd5b83516117ae906001906020870190614e23565b5082516117c2906002906020860190614e23565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b6000806117f4612d41565b6009549091508082141561180d57600092505050611047565b600061181761299c565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561188557600080fd5b505afa158015611899573d6000803e3d6000fd5b505050506040513d60208110156118af57600080fd5b5051905065048c2739500081111561190e576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061191b8989612eba565b9092509050600082600381111561192e57fe5b14611980576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b611988614e10565b6000806000806119a660405180602001604052808a81525087612edd565b909750945060008760038111156119b957fe5b146119eb576119d6600960068960038111156119d157fe5b612f45565b9e505050505050505050505050505050611047565b6119f5858c612949565b90975093506000876003811115611a0857fe5b14611a20576119d6600960018960038111156119d157fe5b611a2a848c612fab565b90975092506000876003811115611a3d57fe5b14611a55576119d6600960048960038111156119d157fe5b611a706040518060200160405280600854815250858c612fd1565b90975091506000876003811115611a8357fe5b14611a9b576119d6600960058960038111156119d157fe5b611aa6858a8b612fd1565b90975090506000876003811115611ab957fe5b14611ad1576119d6600960038960038111156119d157fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b86576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611b9c333386866126bb565b1490506000805460ff1916600117905592915050565b600a5481565b6000611bc583348461302d565b509050611c0081604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610be3565b505050565b6000805460ff16611c4a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c603385858561315f565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c9c576111c1600160456121d4565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a160006112e9565b6000805460ff16611d47576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d596117e9565b14611da4576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611dac610fe7565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611de989612c8d565b935090506000816003811115611dfb57fe5b14611e195760095b975060009650869550859450611e4c9350505050565b611e2161260c565b925090506000816003811115611e3357fe5b14611e3f576009611e03565b5060009650919450925090505b9193509193565b6000610ed782613534565b6006546000906001600160a01b03166315f24053611e7a61299c565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611ec257600080fd5b505afa158015611ed6573d6000803e3d6000fd5b505050506040513d6020811015611eec57600080fd5b5051905090565b60095481565b6006546000906001600160a01b031663b8168816611f1561299c565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611ec257600080fd5b6000610ed7826135b3565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611fa9823461362d565b509050610ddf816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610be3565b6004546000906001600160a01b031633141580612006575033155b1561201e57612017600160006121d4565b9050611047565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120f96117e9565b9050801561211f5761211781601081111561211057fe5b60406121d4565b915050611187565b6112e983612d45565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6000805460ff16612190576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121a26117e9565b905080156121c0576113bc8160108111156121b957fe5b60466121d4565b6113cd836136d8565b600061119634613780565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561220357fe5b83605381111561220f57fe5b604080519283526020830191909152600082820152519081900360600190a18260108111156112e957fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050506040513d60208110156122c557600080fd5b5051905080156122e9576122dc6003601f83612f45565b9250600091506126059050565b6122f1612d41565b60095414612305576122dc600a60226121d4565b61230d614ea1565b61231561260c565b604083018190526020830182600381111561232c57fe5b600381111561233757fe5b905250600090508160200151600381111561234e57fe5b146123785761236a60096021836020015160038111156119d157fe5b935060009250612605915050565b6123828686613814565b60c08201819052604080516020810182529083015181526123a391906138b0565b60608301819052602083018260038111156123ba57fe5b60038111156123c557fe5b90525060009050816020015160038111156123dc57fe5b1461242e576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b61243e600d548260600151612fab565b608083018190526020830182600381111561245557fe5b600381111561246057fe5b905250600090508160200151600381111561247757fe5b146124b35760405162461bcd60e51b81526004018080602001828103825260288152602001806151a46028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516124db9190612fab565b60a08301819052602083018260038111156124f257fe5b60038111156124fd57fe5b905250600090508160200151600381111561251457fe5b146125505760405162461bcd60e51b815260040180806020018281038252602b81526020018061504f602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206150eb8339815191529181900360200190a360c00151600093509150505b9250929050565b600d54600090819080612627575050600754600091506126b7565b600061263161299c565b9050600061263d614e10565b600061264e84600b54600c546138c7565b93509050600081600381111561266057fe5b14612675579550600094506126b79350505050565b61267f8386613905565b92509050600081600381111561269157fe5b146126a6579550600094506126b79350505050565b50516000955093506126b792505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561272057600080fd5b505af1158015612734573d6000803e3d6000fd5b505050506040513d602081101561274a57600080fd5b505190508015612769576127616003604a83612f45565b915050612941565b836001600160a01b0316856001600160a01b0316141561278f576127616002604b6121d4565b60006001600160a01b0387811690871614156127ae57506000196127d6565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b6000806000806127e68589612eba565b909450925060008460038111156127f957fe5b146128175761280a6009604b6121d4565b9650505050505050612941565b6001600160a01b038a166000908152600e602052604090205461283a9089612eba565b9094509150600084600381111561284d57fe5b1461285e5761280a6009604c6121d4565b6001600160a01b0389166000908152600e60205260409020546128819089612fab565b9094509050600084600381111561289457fe5b146128a55761280a6009604d6121d4565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146128fd576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206150eb8339815191528a6040518082815260200191505060405180910390a3600096505050505050505b949350505050565b6000806000612956614e10565b6129608686612edd565b9092509050600082600381111561297357fe5b146129845750915060009050612605565b600061298f826139b5565b9350935050509250929050565b60008060006129ab4734612eba565b909250905060008260038111156129be57fe5b1461104357600080fd5b60008054819060ff16612a0f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612a216117e9565b90508015612a3f57610bb2816010811115612a3857fe5b60366121d4565b610bc93333866139c4565b600354600090819061010090046001600160a01b03163314612a7257612117600160316121d4565b612a7a612d41565b60095414612a8e57612117600a60336121d4565b82612a9761299c565b1015612aa957612117600e60326121d4565b600c54831115612abf57612117600260346121d4565b50600c5482810390811115612b055760405162461bcd60e51b81526004018080602001828103825260248152602001806152006024913960400191505060405180910390fd5b600c819055600354612b259061010090046001600160a01b031684613d12565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a160006112e9565b600354600090819061010090046001600160a01b03163314612ba557612117600160526121d4565b612bad612d41565b60095414612bc157612117600a60536121d4565b506011805490839055604080518281526020810185905281517ff5815f353a60e815cce7553e4f60c533a59d26b1b5504ea4b6db8d60da3e4da2929181900390910190a160006112e9565b6000805460ff16612c51576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c636117e9565b90508015612c81576113bc816010811115612c7a57fe5b60276121d4565b6113cd33600085613d48565b6001600160a01b038116600090815260106020526040812080548291829182918291612cc4575060009450849350612d3c92505050565b612cd48160000154600a54614288565b90945092506000846003811115612ce757fe5b14612cfc575091935060009250612d3c915050565b612d0a8382600101546142c7565b90945091506000846003811115612d1d57fe5b14612d32575091935060009250612d3c915050565b5060009450925050505b915091565b4290565b600354600090819061010090046001600160a01b03163314612d6d57612117600160426121d4565b612d75612d41565b60095414612d8957612117600a60416121d4565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612dda57600080fd5b505afa158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b5051612e57576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006112e9565b600080838311612ed1575060009050818303612605565b50600390506000612605565b6000612ee7614e10565b600080612ef8866000015186614288565b90925090506000826003811115612f0b57fe5b14612f2a57506040805160208101909152600081529092509050612605565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612f7457fe5b846053811115612f8057fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561294157fe5b600080838301848110612fc357600092509050612605565b506002915060009050612605565b6000806000612fde614e10565b612fe88787612edd565b90925090506000826003811115612ffb57fe5b1461300c5750915060009050613025565b61301e613018826139b5565b86612fab565b9350935050505b935093915050565b60008054819060ff16613074576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556130866117e9565b905080156130b1576130a481601081111561309d57fe5b600f6121d4565b9250600091506131489050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156130ec57600080fd5b505af1158015613100573d6000803e3d6000fd5b505050506040513d602081101561311657600080fd5b505190508015613136576130a481601081111561312f57fe5b60106121d4565b613142338787876142f2565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b1580156131cc57600080fd5b505af11580156131e0573d6000803e3d6000fd5b505050506040513d60208110156131f657600080fd5b50519050801561320d576127616003601b83612f45565b846001600160a01b0316846001600160a01b03161415613233576127616006601c6121d4565b61323b614edf565b6001600160a01b0385166000908152600e602052604090205461325e9085612eba565b602083018190528282600381111561327257fe5b600381111561327d57fe5b905250600090508151600381111561329157fe5b146132b6576132ad6009601a836000015160038111156119d157fe5b92505050612941565b6132d08460405180602001604052806011548152506147e4565b608082018190526132e290859061480c565b60608201526132ef61260c565b60c083018190528282600381111561330357fe5b600381111561330e57fe5b905250600090508151600381111561332257fe5b14613374576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61339460405180602001604052808360c001518152508260800151614846565b60a08201819052600c546133a791614865565b60e0820152600d5460808201516133be919061480c565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516133ec9190612fab565b604083018190528282600381111561340057fe5b600381111561340b57fe5b905250600090508151600381111561341f57fe5b1461343b576132ad60096019836000015160038111156119d157fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b168082529084902092909255606085015183519081529251919390926000805160206150eb833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206150eb8339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613579576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561358b6117e9565b905080156135a9576113bc8160108111156135a257fe5b60086121d4565b6113cd338461489b565b6000805460ff166135f8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561360a6117e9565b90508015613621576113bc816010811115612c7a57fe5b6113cd33846000613d48565b60008054819060ff16613674576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556136866117e9565b905080156136b1576136a481601081111561369d57fe5b60356121d4565b9250600091506136c29050565b6136bc3386866139c4565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b031633146136fe576111c1600160476121d4565b613706612d41565b6009541461371a576111c1600a60486121d4565b670de0b6b3a7640000821115613736576111c1600260496121d4565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a160006112e9565b6000805460ff166137c5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556137d76117e9565b905080156137f5576113bc8160108111156137ee57fe5b604e6121d4565b6137fe83614b2f565b509150506000805460ff19166001179055919050565b6000336001600160a01b03841614613865576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b8134146138aa576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006138bd614e10565b6129608686614c17565b6000806000806138d78787612fab565b909250905060008260038111156138ea57fe5b146138fb5750915060009050613025565b61301e8186612eba565b600061390f614e10565b60008061392486670de0b6b3a7640000614288565b9092509050600082600381111561393757fe5b1461395657506040805160208101909152600081529092509050612605565b60008061396383886142c7565b9092509050600082600381111561397657fe5b1461399857506040805160208101909152600081529094509250612605915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b158015613a2d57600080fd5b505af1158015613a41573d6000803e3d6000fd5b505050506040513d6020811015613a5757600080fd5b505190508015613a7b57613a6e6003603883612f45565b9250600091506130259050565b613a83612d41565b60095414613a9757613a6e600a60396121d4565b613a9f614f2c565b6001600160a01b0386166000908152601060205260409020600101546060820152613ac986612c8d565b6080830181905260208301826003811115613ae057fe5b6003811115613aeb57fe5b9052506000905081602001516003811115613b0257fe5b14613b2c57613b1e60096037836020015160038111156119d157fe5b935060009250613025915050565b600019851415613b455760808101516040820152613b4d565b604081018590525b613b5b878260400151613814565b60e082018190526080820151613b7091612eba565b60a0830181905260208301826003811115613b8757fe5b6003811115613b9257fe5b9052506000905081602001516003811115613ba957fe5b14613be55760405162461bcd60e51b815260040180806020018281038252603a8152602001806150b1603a913960400191505060405180910390fd5b613bf5600b548260e00151612eba565b60c0830181905260208301826003811115613c0c57fe5b6003811115613c1757fe5b9052506000905081602001516003811115613c2e57fe5b14613c6a5760405162461bcd60e51b815260040180806020018281038252603181526020018061510b6031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c00573d6000803e3d6000fd5b6000821580613d55575081155b613d905760405162461bcd60e51b81526004018080602001828103825260348152602001806151cc6034913960400191505060405180910390fd5b613d98614ea1565b613da061260c565b6040830181905260208301826003811115613db757fe5b6003811115613dc257fe5b9052506000905081602001516003811115613dd957fe5b14613dfd57613df56009602b836020015160038111156119d157fe5b9150506112e9565b8315613eb257600019841415613e30576001600160a01b0385166000908152600e60205260409020546060820152613e38565b606081018490525b613e58604051806020016040528083604001518152508260600151612949565b6080830181905260208301826003811115613e6f57fe5b6003811115613e7a57fe5b9052506000905081602001516003811115613e9157fe5b14613ead57613df560096029836020015160038111156119d157fe5b613f70565b600019831415613ef9576001600160a01b0385166000908152600e60209081526040918290205460608401908152825191820183529183015181529051613e589190612949565b6080810183905260408051602081018252908201518152613f1b9084906138b0565b6060830181905260208301826003811115613f3257fe5b6003811115613f3d57fe5b9052506000905081602001516003811115613f5457fe5b14613f7057613df56009602a836020015160038111156119d157fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613fd557600080fd5b505af1158015613fe9573d6000803e3d6000fd5b505050506040513d6020811015613fff57600080fd5b50519050801561401f576140166003602883612f45565b925050506112e9565b614027612d41565b6009541461403b57614016600a602c6121d4565b61404b600d548360600151612eba565b60a084018190526020840182600381111561406257fe5b600381111561406d57fe5b905250600090508260200151600381111561408457fe5b146140a0576140166009602e846020015160038111156119d157fe5b6001600160a01b0386166000908152600e602052604090205460608301516140c89190612eba565b60c08401819052602084018260038111156140df57fe5b60038111156140ea57fe5b905250600090508260200151600381111561410157fe5b1461411d576140166009602d846020015160038111156119d157fe5b816080015161412a61299c565b101561413c57614016600e602f6121d4565b61414a868360800151613d12565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206150eb833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561425d57600080fd5b505af1158015614271573d6000803e3d6000fd5b506000925061427e915050565b9695505050505050565b6000808361429b57506000905080612605565b838302838582816142a857fe5b04146142bc57506002915060009050612605565b600092509050612605565b600080826142db5750600190506000612605565b60008385816142e657fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561436357600080fd5b505af1158015614377573d6000803e3d6000fd5b505050506040513d602081101561438d57600080fd5b5051905080156143b1576143a46003601283612f45565b9250600091506147db9050565b6143b9612d41565b600954146143cd576143a4600a60166121d4565b6143d5612d41565b846001600160a01b031663cfa992016040518163ffffffff1660e01b815260040160206040518083038186803b15801561440e57600080fd5b505afa158015614422573d6000803e3d6000fd5b505050506040513d602081101561443857600080fd5b50511461444b576143a4600a60116121d4565b866001600160a01b0316866001600160a01b03161415614471576143a4600660176121d4565b84614482576143a4600760156121d4565b600019851415614498576143a4600760146121d4565b6000806144a68989896139c4565b909250905081156144d6576144c78260108111156144c057fe5b60186121d4565b9450600093506147db92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561453057600080fd5b505afa158015614544573d6000803e3d6000fd5b505050506040513d604081101561455a57600080fd5b508051602090910151909250905081156145a55760405162461bcd60e51b815260040180806020018281038252603381526020018061513c6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156145fc57600080fd5b505afa158015614610573d6000803e3d6000fd5b505050506040513d602081101561462657600080fd5b5051101561467b576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156146a15761469a308d8d8561315f565b905061472b565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156146fc57600080fd5b505af1158015614710573d6000803e3d6000fd5b505050506040513d602081101561472657600080fd5b505190505b8015614775576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b6000670de0b6b3a76400006147fd848460000151614c76565b8161480457fe5b049392505050565b60006112e98383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614cb8565b6000614850614e10565b61485a8484614d12565b9050612941816139b5565b60006112e98383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614d3c565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156148f857600080fd5b505af115801561490c573d6000803e3d6000fd5b505050506040513d602081101561492257600080fd5b505190508015614941576149396003600e83612f45565b915050610ed7565b614949612d41565b6009541461495c57614939600a806121d4565b8261496561299c565b101561497757614939600e60096121d4565b61497f614f72565b61498885612c8d565b602083018190528282600381111561499c57fe5b60038111156149a757fe5b90525060009050815160038111156149bb57fe5b146149e0576149d760096007836000015160038111156119d157fe5b92505050610ed7565b6149ee816020015185612fab565b6040830181905282826003811115614a0257fe5b6003811115614a0d57fe5b9052506000905081516003811115614a2157fe5b14614a3d576149d76009600c836000015160038111156119d157fe5b614a49600b5485612fab565b6060830181905282826003811115614a5d57fe5b6003811115614a6857fe5b9052506000905081516003811115614a7c57fe5b14614a98576149d76009600b836000015160038111156119d157fe5b614aa28585613d12565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b600080600080614b3d612d41565b60095414614b5c57614b51600a604f6121d4565b93509150612d3c9050565b614b663386613814565b905080600c54019150600c54821015614bc6576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6000614c21614e10565b600080614c36670de0b6b3a764000087614288565b90925090506000826003811115614c4957fe5b14614c6857506040805160208101909152600081529092509050612605565b61298f818660000151613905565b60006112e983836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250614d9a565b60008184841115614d0a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b505050900390565b614d1a614e10565b6040518060200160405280614d33856000015185614c76565b90529392505050565b60008383018285821015614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b50949350505050565b6000831580614da7575082155b15614db4575060006112e9565b83830283858281614dc157fe5b04148390614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e6457805160ff1916838001178555614e91565b82800160010185558215614e91579182015b82811115614e91578251825591602001919060010190614e76565b50614e9d929150614f9b565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b61104791905b80821115614e9d5760008155600101614fa156fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a72315820322ccac7730d149df7c4cf9c673eb0560f24bb7d8d46a5ad24a6572f73ebf03664736f6c63430005110032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000486af39519b4dc9a7fccd318217352830e8ad9b4000000000000000000000000f805e22c81ef330967eec52f7edb0c6b31fd5ccf000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000005423819b3b5bb38b0e9e9e59f22f9034e2d8819b000000000000000000000000000000000000000000000000000000000000000a42656e716920415641580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000067169415641580000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : comptroller_ (address): 0x486Af39519B4Dc9a7fCcd318217352830E8AD9b4
Arg [1] : interestRateModel_ (address): 0xF805e22C81EF330967EEC52f7eDb0C6B31Fd5cCf
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): Benqi AVAX
Arg [4] : symbol_ (string): qiAVAX
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0x5423819B3b5bb38b0E9E9e59F22f9034e2d8819b
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000486af39519b4dc9a7fccd318217352830e8ad9b4
Arg [1] : 000000000000000000000000f805e22c81ef330967eec52f7edb0c6b31fd5ccf
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000005423819b3b5bb38b0e9e9e59f22f9034e2d8819b
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [8] : 42656e7169204156415800000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [10] : 7169415641580000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
115739:6435:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120202:8;120215:23;120228:9;120215:12;:23::i;:::-;120201:37;;;120249:34;120264:3;120249:34;;;;;;;;;;;;;-1:-1:-1;;;120249:34:0;;;:14;:34::i;:::-;120161:130;115739:6435;7265:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7265:18:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7265:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51029:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51029:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51029:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;117099:134;;;:::i;:::-;;8570:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8570:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;55313:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55313:224:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9218:23:0;;;:::i;58159:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58159:261:0;;;:::i;50364:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50364:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50364:195:0;;;;;;;;;;;;;;;;;:::i;7992:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7992:35:0;;;:::i;:::-;;;;-1:-1:-1;;;;;7992:35:0;;;;;;;;;;;;;;7461:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7461:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52297:354;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52297:354:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60042:88:0;;;:::i;100335:735::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;100335:735:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8982:24:0;;;:::i;118681:155::-;;;:::i;8119:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8119:39:0;;;:::i;106320:571::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;106320:571:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;106320:571:0;;:::i;10191:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10191:38:0;;;:::i;51929:112::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51929:112:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54830:192:0;;;:::i;111952:659::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;111952:659:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111952:659:0;;:::i;10383:37::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10383:37:0;;;:::i;118056:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;118056:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118056:133:0;;:::i;9112:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9112:25:0;;;:::i;7361:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7361:20:0;;;:::i;55746:287::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55746:287:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45351:1547:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;45351:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-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;39:11;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;;21:11;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;39:11;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;60378:3885::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60378:3885:0;;;:::i;49872:185::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49872:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49872:185:0;;;;;;;;:::i;8847:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8847:23:0;;;:::i;119580:239::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;119580:239:0;;;;;;;;;;:::i;93677:194::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;93677:194:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93677:194:0;;;;;;;;;;;;;;;;;:::i;98443:647::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;98443:647:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57710:198:0;;;:::i;52997:705::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52997:705:0;;;;;;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;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118457:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;118457:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118457:113:0;;:::i;54147:165::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54147:165:0;;;:::i;8693:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8693:33:0;;;:::i;54496:188::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54496:188:0;;;:::i;117586:113::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;117586:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117586:113:0;;:::i;51596:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51596:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51596:143:0;;;;;;;;;;:::i;119027:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119027:199:0;-1:-1:-1;;;;;119027:199:0;;:::i;99368:742::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;99368:742:0;;;:::i;109296:633::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;109296:633:0;;;;;;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::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8260:42:0;;;:::i;7881:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7881:28:0;;;:::i;101373:607::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;101373:607:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101373:607:0;;:::i;119978:113::-;;;:::i;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;:::-;64964:71;-1:-1:-1;65033:1:0;;-1:-1:-1;64964:71:0;;-1:-1:-1;64964:71:0;64795:252;65168:33;65178:10;65190;65168:9;:33::i;:::-;65161:40;;;;;115496:1;115508:11;:18;;-1:-1:-1;;115508:18:0;115522:4;115508:18;;;64662:547;;;;-1:-1:-1;64662:547:0:o;121459:712::-;121549:31;121545:70;;121597:7;;121545:70;121627:24;121670:7;121664:21;121688:1;121664:25;121654:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;121654:36:0;87:34:-1;135:17;;-1:-1;121654:36:0;-1:-1:-1;121627:63:0;-1:-1:-1;121701:6:0;121720:105;121742:7;121736:21;121732:1;:25;121720:105;;;121802:7;121811:1;121796:17;;;;;;;;;;;;;;;;121779:11;121791:1;121779:14;;;;;;;;;;;:34;-1:-1:-1;;;;;121779:34:0;;;;;;;;-1:-1:-1;121759:3:0;;121720:105;;;121837:16;;-1:-1:-1;;;121856:15:0;121837:11;;121849:1;;121837:16;;;;;;;;;:34;-1:-1:-1;;;;;121837:34:0;;;;;;;;;121912:2;121901:15;;121882:11;121894:1;121896;121894:3;121882:16;;;;;;;;;;;:34;-1:-1:-1;;;;;121882:34:0;;;;;;;;-1:-1:-1;121974:2:0;121964:7;:12;121957:2;:21;121946:34;;121927:11;121939:1;121941;121939:3;121927:16;;;;;;;;;;;:53;-1:-1:-1;;;;;121927:53:0;;;;;;;;-1:-1:-1;122038:2:0;122028:7;:12;122021:2;:21;122010:34;;121991:11;122003:1;122005;122003:3;121991:16;;;;;;;;;;;:53;-1:-1:-1;;;;;121991:53:0;;;;;;;;;122085:2;122074:15;;122055:11;122067:1;122069;122067:3;122055:16;;;;;;;;;;;:34;-1:-1:-1;;;;;122055:34:0;;;;;;;;-1:-1:-1;122150:11:0;122110:31;;122102:61;;;;-1:-1:-1;;;122102:61: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;122102:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121459:712;;;;;:::o;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;117099:134::-;117144:8;117157:23;117170:9;117157:12;:23::i;:::-;117143:37;;;117191:34;117206:3;117191:34;;;;;;;;;;;;;-1:-1:-1;;;117191:34:0;;;:14;:34::i;:::-;117099:134;:::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;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;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;-1:-1:-1;;;52297:354:0;;;;:::o;60042:88::-;60084:4;60108:14;:12;:14::i;:::-;60101:21;;60042:88;:::o;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;118681:155::-;118733:8;118746:30;118766:9;118746:19;:30::i;:::-;118732:44;;;118787:41;118802:3;118787:41;;;;;;;;;;;;;-1:-1:-1;;;118787:41:0;;;:14;:41::i;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;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;118056:133::-;118119:4;118143:38;118168:12;118143: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;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;119580:239::-;119679:8;119692:63;119716:8;119726:9;119737:17;119692:23;:63::i;:::-;119678:77;;;119766:45;119781:3;119766:45;;;;;;;;;;;;;-1:-1:-1;;;119766:45:0;;;:14;:45::i;:::-;119580:239;;;:::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;;;;;;;;;;;;;;;;;;;;;;;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;118457:113::-;118510:4;118534:28;118549:12;118534: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;117586:113:0;117639:4;117663:28;117678:12;117663:14;:28::i;51596:143::-;-1:-1:-1;;;;;51697:25:0;;;51670:7;51697:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;51596:143::o;119027:199::-;119101:8;119114:46;119140:8;119150:9;119114:25;:46::i;:::-;119100:60;;;119171:47;119186:3;119171:47;;;;;;;;;;;;;;;;;:14;:47::i;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;;;;;;;;;;;;;;;;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;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;119978:113::-;120028:4;120052:31;120073:9;120052:20;:31::i;25206:153::-;25267:4;25289:33;25302:3;25297:9;;;;;;;;25313:4;25308:10;;;;;;;;25289:33;;;;;;;;;;;;;25320:1;25289:33;;;;;;;;;;;;;25347:3;25342:9;;;;;;;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;;-1:-1:-1;69114:21:0;-1:-1:-1;;65920:3224: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;;;;;;;;;;;;;;;;;;49588:14;49576:27;;;;;;;;47361:2250;;;;;;;:::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;120557:231::-;120604:4;120622:13;120637:20;120661:41;120669:21;120692:9;120661:7;:41::i;:::-;120621:81;;-1:-1:-1;120621:81:0;-1:-1:-1;120728:18:0;120721:3;:25;;;;;;;;;120713:34;;;;;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;81806:260::-;82176:53;82193:10;82205;82217:11;82176:16;:53::i;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;111306:17;:40;;-1:-1:-1;;;;;;111306:40:0;-1:-1:-1;;;;;111306:40:0;;;;;;;;;111452:70;;;;;;;;;;;;;;;;;;;;;;;;;;;111547:14;111542:20;;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;25589:43;25602:3;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;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;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;;;;;;;;;;;;;;;;;;;;;;;;;;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;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;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;;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;121026:245::-;121093:4;121144:10;-1:-1:-1;;;;;121144:18:0;;;121136:46;;;;;-1:-1:-1;;;121136:46:0;;;;;;;;;;;;-1:-1:-1;;;121136:46:0;;;;;;;;;;;;;;;121214:6;121201:9;:19;121193:46;;;;;-1:-1:-1;;;121193:46:0;;;;;;;;;;;;-1:-1:-1;;;121193:46:0;;;;;;;;;;;;;;;-1:-1:-1;121257:6:0;121026:245;-1:-1:-1;121026:245:0:o;39323:337::-;39411:9;39422:4;39440:13;39455:19;;:::i;:::-;39478:31;39493:6;39501:7;39478:14;:31::i;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;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;121279:172::-;121424:19;;-1:-1:-1;;;;;121424:11:0;;;:19;;;;;121436:6;;121424:19;;;;121436:6;121424:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;71835:5278:0;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;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;;;;;;;;;;;;;;;;;;;;;;;;;;;;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;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;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;;;;;;;;;;;;;;;;;;;;;;;;;106024:14;106011:46;-1:-1:-1;106041:15:0;-1:-1:-1;;104419:1646:0;;;:::o;38592:620::-;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;33054:122::-;33107:4;33131:37;33136:1;33139;33131:37;;;;;;;;;;;;;;;;;:4;:37::i;31984:158::-;32065:4;32098:12;32090:6;;;;32082:29;;;;-1:-1:-1;;;32082:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;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;;31468:29:0;-1:-1:-1;31515:1:0;31345:179;-1:-1:-1;;;;31345:179:0:o;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;;115739:6435:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;115739:6435:0;;;-1:-1:-1;115739:6435:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115739:6435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115739:6435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115739:6435:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115739:6435:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://322ccac7730d149df7c4cf9c673eb0560f24bb7d8d46a5ad24a6572f73ebf036
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.