Contract Overview
[ Download CSV Export ]
Latest 25 internal transaction
[ Download CSV Export ]
Contract Name:
MmCro
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2022-02-21 */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File contracts/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 mmTokens) external returns (uint[] memory); function exitMarket(address mmToken) external returns (uint); /*** Policy Hooks ***/ function mintAllowed(address mmToken, address minter, uint mintAmount) external returns (uint); function mintVerify(address mmToken, address minter, uint mintAmount, uint mintTokens) external; function redeemAllowed(address mmToken, address redeemer, uint redeemTokens) external returns (uint); function redeemVerify(address mmToken, address redeemer, uint redeemAmount, uint redeemTokens) external; function borrowAllowed(address mmToken, address borrower, uint borrowAmount) external returns (uint); function borrowVerify(address mmToken, address borrower, uint borrowAmount) external; function repayBorrowAllowed( address mmToken, address payer, address borrower, uint repayAmount) external returns (uint); function repayBorrowVerify( address mmToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external; function liquidateBorrowAllowed( address mmTokenBorrowed, address mmTokenCollateral, address liquidator, address borrower, uint repayAmount) external returns (uint); function liquidateBorrowVerify( address mmTokenBorrowed, address mmTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external; function seizeAllowed( address mmTokenCollateral, address mmTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external returns (uint); function seizeVerify( address mmTokenCollateral, address mmTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external; function transferAllowed(address mmToken, address src, address dst, uint transferTokens) external returns (uint); function transferVerify(address mmToken, address src, address dst, uint transferTokens) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address mmTokenBorrowed, address mmTokenCollateral, uint repayAmount) external view returns (uint, uint); } // File contracts/InterestRateModel.sol pragma solidity 0.5.17; /** * @title Tranquil's InterestRateModel Interface * @author Tranquil */ 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 contracts/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 contracts/MmTokenInterfaces.sol pragma solidity 0.5.17; contract MmTokenStorage { /** * @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-mmToken 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 MmTokens (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 MmTokenInterface is MmTokenStorage { /** * @notice Indicator that this is a MmToken contract (for inspection) */ bool public constant isMmToken = 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 mmTokenCollateral, 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 MmErc20Storage { /** * @notice Underlying asset for this MmToken */ address public underlying; } contract MmErc20Interface is MmErc20Storage { /*** 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, MmTokenInterface mmTokenCollateral) external returns (uint); function sweepToken(EIP20NonStandardInterface token) external; /*** Admin Functions ***/ function _addReserves(uint addAmount) external returns (uint); } contract MmDelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract MmDelegatorInterface is MmDelegationStorage { /** * @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 MmDelegateInterface is MmDelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; } // File contracts/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 contracts/CarefulMath.sol pragma solidity 0.5.17; /** * @title Careful Math * @author Tranquil * @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 contracts/ExponentialNoError.sol pragma solidity 0.5.17; /** * @title Exponential module for storing fixed-precision decimals * @author Tranquil * @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 contracts/Exponential.sol pragma solidity 0.5.17; /** * @title Exponential module for storing fixed-precision decimals * @author Tranquil * @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 contracts/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 contracts/MmToken.sol pragma solidity 0.5.17; /** * @title Mimas' MmToken Contract * @notice Abstract base for MmTokens * @author Mimas */ contract MmToken is MmTokenInterface, 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 srtqTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srtqTokensNew) = 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] = srtqTokensNew; 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 mmTokenBalance = 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), mmTokenBalance, 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 mmToken * @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 mmToken * @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 MmToken * @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 MmToken * @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 mmToken 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 mmTokens 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 mmTokens 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 mmToken must handle variations between ERC-20 and ONE 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 mmToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of mmTokens 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 mmTokens 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 mmTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of mmTokens 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 mmTokens 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 mmTokens * @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 mmTokens 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 mmTokens 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 mmTokens (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 mmToken must handle variations between ERC-20 and ONE underlying. * On success, the mmToken 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 mmToken must handle variations between ERC-20 and ONE underlying. * On success, the mmToken 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 mmToken must handle variations between ERC-20 and ONE underlying. * On success, the mmToken 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 mmToken to be liquidated * @param mmTokenCollateral 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, MmTokenInterface mmTokenCollateral) 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 = mmTokenCollateral.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, mmTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this mmToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param mmTokenCollateral 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, MmTokenInterface mmTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(mmTokenCollateral), 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 mmTokenCollateral market's block timestamp equals current block timestamp */ if (mmTokenCollateral.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(mmTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(mmTokenCollateral.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(mmTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = mmTokenCollateral.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(mmTokenCollateral), seizeTokens); /* We call the defense hook */ // unused function // comptroller.liquidateBorrowVerify(address(this), address(mmTokenCollateral), 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 mmToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed mmToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of mmTokens 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 MmToken. * Its absolutely critical to use msg.sender as the seizer mmToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed mmToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of mmTokens 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 mmToken must handle variations between ERC-20 and ONE underlying. * On success, the mmToken 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 contracts/MmCro.sol pragma solidity 0.5.17; /** * @title Mimas's MmCro Contract * @notice MmToken which wraps CRO * @author Mimas */ contract MmCro is MmToken { /** * @notice Construct a new MmCro 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 tqTokens in exchange * @dev Reverts upon any failure */ function mint() external payable { (uint err,) = mintInternal(msg.value); requireNoError(err, "mint failed"); } /** * @notice Sender redeems tqTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of tqTokens 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 tqTokens 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 tqToken to be liquidated * @param tqTokenCollateral The market in which to seize collateral from the borrower */ function liquidateBorrow(address borrower, MmToken tqTokenCollateral) external payable { (uint err,) = liquidateBorrowInternal(borrower, msg.value, tqTokenCollateral); 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 CRO to MmCro 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 CRO, before this message * @dev This excludes the value of the current message, if any * @return The quantity of CRO 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 CRO * @param amount Amount of CRO being sent * @return The actual amount of CRO 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 CRO, 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)); } }
[{"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":"mmTokenCollateral","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":"isMmToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"contract MmToken","name":"tqTokenCollateral","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
60806040523480156200001157600080fd5b5060405162005b5438038062005b54833981810160405260e08110156200003757600080fd5b8151602083015160408085015160608601805192519496939591949391820192846401000000008211156200006b57600080fd5b9083019060208201858111156200008157600080fd5b82516401000000008111828201881017156200009c57600080fd5b82525081516020918201929091019080838360005b83811015620000cb578181015183820152602001620000b1565b50505050905090810190601f168015620000f95780820380516001836020036101000a031916815260200191505b50604052602001805160405193929190846401000000008211156200011d57600080fd5b9083019060208201858111156200013357600080fd5b82516401000000008111828201881017156200014e57600080fd5b82525081516020918201929091019080838360005b838110156200017d57818101518382015260200162000163565b50505050905090810190601f168015620001ab5780820380516001836020036101000a031916815260200191505b506040908152602082015191015160038054610100600160a81b03191633610100021790559092509050620001e587878787878762000218565b600380546001600160a01b0390921661010002610100600160a81b03199092169190911790555062000853945050505050565b60035461010090046001600160a01b03163314620002685760405162461bcd60e51b815260040180806020018281038252602481526020018062005abb6024913960400191505060405180910390fd5b600954158015620002795750600a54155b620002b65760405162461bcd60e51b815260040180806020018281038252602381526020018062005adf6023913960400191505060405180910390fd5b600784905583620002f95760405162461bcd60e51b815260040180806020018281038252603081526020018062005b026030913960400191505060405180910390fd5b60006200030f876001600160e01b036200042e16565b9050801562000365576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b620003786001600160e01b036200059616565b600955670de0b6b3a7640000600a556200039b866001600160e01b036200059b16565b90508015620003dc5760405162461bcd60e51b815260040180806020018281038252602281526020018062005b326022913960400191505060405180910390fd5b8351620003f1906001906020870190620007b1565b50825162000407906002906020860190620007b1565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b60035460009061010090046001600160a01b031633146200046857620004606001603f6001600160e01b036200074116565b905062000591565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b158015620004ae57600080fd5b505afa158015620004c3573d6000803e3d6000fd5b505050506040513d6020811015620004da57600080fd5b50516200052e576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9150505b919050565b425b90565b600354600090819061010090046001600160a01b03163314620005d857620005cf600160426001600160e01b036200074116565b91505062000591565b620005eb6001600160e01b036200059616565b600954146200060b57620005cf600a60416001600160e01b036200074116565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200065d57600080fd5b505afa15801562000672573d6000803e3d6000fd5b505050506040513d60208110156200068957600080fd5b5051620006dd576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006200058d565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa08360108111156200077157fe5b8360538111156200077e57fe5b604080519283526020830191909152600082820152519081900360600190a1826010811115620007aa57fe5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620007f457805160ff191683800117855562000824565b8280016001018555821562000824579182015b828111156200082457825182559160200191906001019062000807565b506200083292915062000836565b5090565b6200059891905b808211156200083257600081556001016200083d565b61525880620008636000396000f3fe6080604052600436106102935760003560e01c806395d89b411161015a578063cd91801c116100c1578063e9c714f21161007a578063e9c714f214610a97578063f2b3abbd14610aac578063f3fdb15a14610adf578063f851a44014610af4578063fca7820b14610b09578063fcb6414714610b3357610293565b8063cd91801c146109cd578063cfa99201146109e2578063d3bd2c72146109f7578063db006a7514610a0c578063dd62ed3e14610a36578063e597461914610a7157610293565b8063aae40a2a11610113578063aae40a2a14610891578063b2a02ff1146108bf578063b71d1a0c14610902578063bd6d894d14610935578063c37f68e21461094a578063c5ebeaec146109a357610293565b806395d89b411461068757806395dd91931461069c57806399d8c1b4146106cf578063a6afed951461082e578063a9059cbb14610843578063aa5af0fd1461087c57610293565b80633b1d21a2116101fe5780636752e702116101b75780636752e702146105c157806370a08231146105d657806373acee9814610609578063830308461461061e578063852a12e3146106485780638f840ddd1461067257610293565b80633b1d21a21461051d5780634576b5db1461053257806347bd3718146105655780634e4d9fea1461057a5780635fe3b56714610582578063601a0bf11461059757610293565b806318160ddd1161025057806318160ddd14610421578063182df0f51461043657806323b872dd1461044b578063267822471461048e578063313ce567146104bf5780633af9e669146104ea57610293565b806306fdde03146102d1578063095ea7b31461035b5780630aaf5ea7146103a85780631249c58b146103bd578063173b9904146103c757806317bfdfbc146103ee575b600061029e34610b3b565b5090506102ce816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50005b3480156102dd57600080fd5b506102e6610de3565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610320578181015183820152602001610308565b50505050905090810190601f16801561034d5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561036757600080fd5b506103946004803603604081101561037e57600080fd5b506001600160a01b038135169060200135610e70565b604080519115158252519081900360200190f35b3480156103b457600080fd5b50610394610edd565b6103c5610ee2565b005b3480156103d357600080fd5b506103dc610f20565b60408051918252519081900360200190f35b3480156103fa57600080fd5b506103dc6004803603602081101561041157600080fd5b50356001600160a01b0316610f26565b34801561042d57600080fd5b506103dc610fe6565b34801561044257600080fd5b506103dc610fec565b34801561045757600080fd5b506103946004803603606081101561046e57600080fd5b506001600160a01b0381358116916020810135909116906040013561104f565b34801561049a57600080fd5b506104a36110c1565b604080516001600160a01b039092168252519081900360200190f35b3480156104cb57600080fd5b506104d46110d0565b6040805160ff9092168252519081900360200190f35b3480156104f657600080fd5b506103dc6004803603602081101561050d57600080fd5b50356001600160a01b03166110d9565b34801561052957600080fd5b506103dc611191565b34801561053e57600080fd5b506103dc6004803603602081101561055557600080fd5b50356001600160a01b03166111a0565b34801561057157600080fd5b506103dc6112f5565b6103c56112fb565b34801561058e57600080fd5b506104a361133d565b3480156105a357600080fd5b506103dc600480360360208110156105ba57600080fd5b503561134c565b3480156105cd57600080fd5b506103dc6113e7565b3480156105e257600080fd5b506103dc600480360360208110156105f957600080fd5b50356001600160a01b03166113ed565b34801561061557600080fd5b506103dc611408565b34801561062a57600080fd5b506103dc6004803603602081101561064157600080fd5b50356114be565b34801561065457600080fd5b506103dc6004803603602081101561066b57600080fd5b503561153c565b34801561067e57600080fd5b506103dc611547565b34801561069357600080fd5b506102e661154d565b3480156106a857600080fd5b506103dc600480360360208110156106bf57600080fd5b50356001600160a01b03166115a5565b3480156106db57600080fd5b506103c5600480360360c08110156106f257600080fd5b6001600160a01b0382358116926020810135909116916040820135919081019060808101606082013564010000000081111561072d57600080fd5b82018360208201111561073f57600080fd5b8035906020019184600183028401116401000000008311171561076157600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156107b457600080fd5b8201836020820111156107c657600080fd5b803590602001918460018302840111640100000000831117156107e857600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116029050565b34801561083a57600080fd5b506103dc6117e9565b34801561084f57600080fd5b506103946004803603604081101561086657600080fd5b506001600160a01b038135169060200135611b41565b34801561088857600080fd5b506103dc611bb2565b6103c5600480360360408110156108a757600080fd5b506001600160a01b0381358116916020013516611bb8565b3480156108cb57600080fd5b506103dc600480360360608110156108e257600080fd5b506001600160a01b03813581169160208101359091169060400135611c05565b34801561090e57600080fd5b506103dc6004803603602081101561092557600080fd5b50356001600160a01b0316611c76565b34801561094157600080fd5b506103dc611d02565b34801561095657600080fd5b5061097d6004803603602081101561096d57600080fd5b50356001600160a01b0316611dbe565b604080519485526020850193909352838301919091526060830152519081900360800190f35b3480156109af57600080fd5b506103dc600480360360208110156109c657600080fd5b5035611e53565b3480156109d957600080fd5b506103dc611e5e565b3480156109ee57600080fd5b506103dc611ef3565b348015610a0357600080fd5b506103dc611ef9565b348015610a1857600080fd5b506103dc60048036036020811015610a2f57600080fd5b5035611f67565b348015610a4257600080fd5b506103dc60048036036040811015610a5957600080fd5b506001600160a01b0381358116916020013516611f72565b6103c560048036036020811015610a8757600080fd5b50356001600160a01b0316611f9d565b348015610aa357600080fd5b506103dc611feb565b348015610ab857600080fd5b506103dc60048036036020811015610acf57600080fd5b50356001600160a01b03166120ee565b348015610aeb57600080fd5b506104a3612128565b348015610b0057600080fd5b506104a3612137565b348015610b1557600080fd5b506103dc60048036036020811015610b2c57600080fd5b503561214b565b6103dc6121c9565b60008054819060ff16610b82576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610b946117e9565b90508015610bbf57610bb2816010811115610bab57fe5b601e6121d4565b925060009150610bcf9050565b610bc9338561223a565b92509250505b6000805460ff191660011790559092909150565b81610bed57610ddf565b606081516005016040519080825280601f01601f191660200182016040528015610c1e576020820181803883390190505b50905060005b8251811015610c6f57828181518110610c3957fe5b602001015160f81c60f81b828281518110610c5057fe5b60200101906001600160f81b031916908160001a905350600101610c24565b8151600160fd1b90839083908110610c8357fe5b60200101906001600160f81b031916908160001a905350602860f81b828260010181518110610cae57fe5b60200101906001600160f81b031916908160001a905350600a840460300160f81b828260020181518110610cde57fe5b60200101906001600160f81b031916908160001a905350600a840660300160f81b828260030181518110610d0e57fe5b60200101906001600160f81b031916908160001a905350602960f81b828260040181518110610d3957fe5b60200101906001600160f81b031916908160001a905350818415610ddb5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b83811015610da0578181015183820152602001610d88565b50505050905090810190601f168015610dcd5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5050505b5050565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b820191906000526020600020905b815481529060010190602001808311610e4b57829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600181565b6000610eed34610b3b565b509050610f1d816040518060400160405280600b81526020016a1b5a5b9d0819985a5b195960aa1b815250610be3565b50565b60085481565b6000805460ff16610f6b576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610f7d6117e9565b14610fc8576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610fd1826115a5565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610ff961260c565b9092509050600082600381111561100c57fe5b146110485760405162461bcd60e51b815260040180806020018281038252603581526020018061516f6035913960400191505060405180910390fd5b9150505b90565b6000805460ff16611094576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110aa338686866126bb565b1490506000805460ff191660011790559392505050565b6004546001600160a01b031681565b60035460ff1681565b60006110e3614e10565b60405180602001604052806110f6611d02565b90526001600160a01b0384166000908152600e6020526040812054919250908190611122908490612949565b9092509050600082600381111561113557fe5b14611187576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b925050505b919050565b600061119b61299c565b905090565b60035460009061010090046001600160a01b031633146111cd576111c66001603f6121d4565b905061118c565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561121257600080fd5b505afa158015611226573d6000803e3d6000fd5b505050506040513d602081101561123c57600080fd5b505161128f576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b6000611306346129c8565b509050610f1d81604051806040016040528060128152602001711c995c185e509bdc9c9bddc819985a5b195960721b815250610be3565b6005546001600160a01b031681565b6000805460ff16611391576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556113a36117e9565b905080156113c9576113c18160108111156113ba57fe5b60306121d4565b915050610fd4565b6113d283612a4a565b9150506000805460ff19166001179055919050565b60115481565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff1661144d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561145f6117e9565b146114aa576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000805460ff16611503576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556115156117e9565b90508015611533576113c181601081111561152c57fe5b60516121d4565b6113d283612b7d565b6000610ed782612c0c565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610e685780601f10610e3d57610100808354040283529160200191610e68565b60008060006115b384612c8d565b909250905060008260038111156115c657fe5b146112ee5760405162461bcd60e51b815260040180806020018281038252603781526020018061507a6037913960400191505060405180910390fd5b60035461010090046001600160a01b031633146116505760405162461bcd60e51b8152600401808060200182810382526024815260200180614fb66024913960400191505060405180910390fd5b6009541580156116605750600a54155b61169b5760405162461bcd60e51b8152600401808060200182810382526023815260200180614fda6023913960400191505060405180910390fd5b6007849055836116dc5760405162461bcd60e51b8152600401808060200182810382526030815260200180614ffd6030913960400191505060405180910390fd5b60006116e7876111a0565b9050801561173c576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611744612d41565b600955670de0b6b3a7640000600a5561175c86612d45565b9050801561179b5760405162461bcd60e51b815260040180806020018281038252602281526020018061502d6022913960400191505060405180910390fd5b83516117ae906001906020870190614e23565b5082516117c2906002906020860190614e23565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b6000806117f4612d41565b6009549091508082141561180d5760009250505061104c565b600061181761299c565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561188557600080fd5b505afa158015611899573d6000803e3d6000fd5b505050506040513d60208110156118af57600080fd5b5051905065048c2739500081111561190e576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061191b8989612eba565b9092509050600082600381111561192e57fe5b14611980576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b611988614e10565b6000806000806119a660405180602001604052808a81525087612edd565b909750945060008760038111156119b957fe5b146119eb576119d6600960068960038111156119d157fe5b612f45565b9e50505050505050505050505050505061104c565b6119f5858c612949565b90975093506000876003811115611a0857fe5b14611a20576119d6600960018960038111156119d157fe5b611a2a848c612fab565b90975092506000876003811115611a3d57fe5b14611a55576119d6600960048960038111156119d157fe5b611a706040518060200160405280600854815250858c612fd1565b90975091506000876003811115611a8357fe5b14611a9b576119d6600960058960038111156119d157fe5b611aa6858a8b612fd1565b90975090506000876003811115611ab957fe5b14611ad1576119d6600960038960038111156119d157fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b86576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611b9c333386866126bb565b1490506000805460ff1916600117905592915050565b600a5481565b6000611bc583348461302d565b509050611c0081604051806040016040528060168152602001751b1a5c5d5a59185d19509bdc9c9bddc819985a5b195960521b815250610be3565b505050565b6000805460ff16611c4a576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611c603385858561315f565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611c9c576111c6600160456121d4565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a160006112ee565b6000805460ff16611d47576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611d596117e9565b14611da4576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611dac610fec565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611de989612c8d565b935090506000816003811115611dfb57fe5b14611e195760095b975060009650869550859450611e4c9350505050565b611e2161260c565b925090506000816003811115611e3357fe5b14611e3f576009611e03565b5060009650919450925090505b9193509193565b6000610ed782613534565b6006546000906001600160a01b03166315f24053611e7a61299c565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611ec257600080fd5b505afa158015611ed6573d6000803e3d6000fd5b505050506040513d6020811015611eec57600080fd5b5051905090565b60095481565b6006546000906001600160a01b031663b8168816611f1561299c565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611ec257600080fd5b6000610ed7826135b3565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b6000611fa9823461362d565b509050610ddf816040518060400160405280601881526020017f7265706179426f72726f77426568616c66206661696c65640000000000000000815250610be3565b6004546000906001600160a01b031633141580612006575033155b1561201e57612017600160006121d4565b905061104c565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120f96117e9565b9050801561211f5761211781601081111561211057fe5b60406121d4565b91505061118c565b6112ee83612d45565b6006546001600160a01b031681565b60035461010090046001600160a01b031681565b6000805460ff16612190576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121a26117e9565b905080156121c0576113c18160108111156121b957fe5b60466121d4565b6113d2836136d8565b600061119b34613780565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561220357fe5b83605381111561220f57fe5b604080519283526020830191909152600082820152519081900360600190a18260108111156112ee57fe5b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b15801561229b57600080fd5b505af11580156122af573d6000803e3d6000fd5b505050506040513d60208110156122c557600080fd5b5051905080156122e9576122dc6003601f83612f45565b9250600091506126059050565b6122f1612d41565b60095414612305576122dc600a60226121d4565b61230d614ea1565b61231561260c565b604083018190526020830182600381111561232c57fe5b600381111561233757fe5b905250600090508160200151600381111561234e57fe5b146123785761236a60096021836020015160038111156119d157fe5b935060009250612605915050565b6123828686613814565b60c08201819052604080516020810182529083015181526123a391906138b0565b60608301819052602083018260038111156123ba57fe5b60038111156123c557fe5b90525060009050816020015160038111156123dc57fe5b1461242e576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b61243e600d548260600151612fab565b608083018190526020830182600381111561245557fe5b600381111561246057fe5b905250600090508160200151600381111561247757fe5b146124b35760405162461bcd60e51b81526004018080602001828103825260288152602001806151a46028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516124db9190612fab565b60a08301819052602083018260038111156124f257fe5b60038111156124fd57fe5b905250600090508160200151600381111561251457fe5b146125505760405162461bcd60e51b815260040180806020018281038252602b81526020018061504f602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206150eb8339815191529181900360200190a360c00151600093509150505b9250929050565b600d54600090819080612627575050600754600091506126b7565b600061263161299c565b9050600061263d614e10565b600061264e84600b54600c546138c7565b93509050600081600381111561266057fe5b14612675579550600094506126b79350505050565b61267f8386613905565b92509050600081600381111561269157fe5b146126a6579550600094506126b79350505050565b50516000955093506126b792505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b15801561272057600080fd5b505af1158015612734573d6000803e3d6000fd5b505050506040513d602081101561274a57600080fd5b505190508015612769576127616003604a83612f45565b915050612941565b836001600160a01b0316856001600160a01b0316141561278f576127616002604b6121d4565b60006001600160a01b0387811690871614156127ae57506000196127d6565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b6000806000806127e68589612eba565b909450925060008460038111156127f957fe5b146128175761280a6009604b6121d4565b9650505050505050612941565b6001600160a01b038a166000908152600e602052604090205461283a9089612eba565b9094509150600084600381111561284d57fe5b1461285e5761280a6009604c6121d4565b6001600160a01b0389166000908152600e60205260409020546128819089612fab565b9094509050600084600381111561289457fe5b146128a55761280a6009604d6121d4565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146128fd576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206150eb8339815191528a6040518082815260200191505060405180910390a3600096505050505050505b949350505050565b6000806000612956614e10565b6129608686612edd565b9092509050600082600381111561297357fe5b146129845750915060009050612605565b600061298f826139b5565b9350935050509250929050565b60008060006129ab4734612eba565b909250905060008260038111156129be57fe5b1461104857600080fd5b60008054819060ff16612a0f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612a216117e9565b90508015612a3f57610bb2816010811115612a3857fe5b60366121d4565b610bc93333866139c4565b600354600090819061010090046001600160a01b03163314612a7257612117600160316121d4565b612a7a612d41565b60095414612a8e57612117600a60336121d4565b82612a9761299c565b1015612aa957612117600e60326121d4565b600c54831115612abf57612117600260346121d4565b50600c5482810390811115612b055760405162461bcd60e51b81526004018080602001828103825260248152602001806152006024913960400191505060405180910390fd5b600c819055600354612b259061010090046001600160a01b031684613d12565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a160006112ee565b600354600090819061010090046001600160a01b03163314612ba557612117600160526121d4565b612bad612d41565b60095414612bc157612117600a60536121d4565b506011805490839055604080518281526020810185905281517ff5815f353a60e815cce7553e4f60c533a59d26b1b5504ea4b6db8d60da3e4da2929181900390910190a160006112ee565b6000805460ff16612c51576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c636117e9565b90508015612c81576113c1816010811115612c7a57fe5b60276121d4565b6113d233600085613d48565b6001600160a01b038116600090815260106020526040812080548291829182918291612cc4575060009450849350612d3c92505050565b612cd48160000154600a54614288565b90945092506000846003811115612ce757fe5b14612cfc575091935060009250612d3c915050565b612d0a8382600101546142c7565b90945091506000846003811115612d1d57fe5b14612d32575091935060009250612d3c915050565b5060009450925050505b915091565b4290565b600354600090819061010090046001600160a01b03163314612d6d57612117600160426121d4565b612d75612d41565b60095414612d8957612117600a60416121d4565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612dda57600080fd5b505afa158015612dee573d6000803e3d6000fd5b505050506040513d6020811015612e0457600080fd5b5051612e57576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a160006112ee565b600080838311612ed1575060009050818303612605565b50600390506000612605565b6000612ee7614e10565b600080612ef8866000015186614288565b90925090506000826003811115612f0b57fe5b14612f2a57506040805160208101909152600081529092509050612605565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612f7457fe5b846053811115612f8057fe5b604080519283526020830191909152818101859052519081900360600190a183601081111561294157fe5b600080838301848110612fc357600092509050612605565b506002915060009050612605565b6000806000612fde614e10565b612fe88787612edd565b90925090506000826003811115612ffb57fe5b1461300c5750915060009050613025565b61301e613018826139b5565b86612fab565b9350935050505b935093915050565b60008054819060ff16613074576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556130866117e9565b905080156130b1576130a481601081111561309d57fe5b600f6121d4565b9250600091506131489050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156130ec57600080fd5b505af1158015613100573d6000803e3d6000fd5b505050506040513d602081101561311657600080fd5b505190508015613136576130a481601081111561312f57fe5b60106121d4565b613142338787876142f2565b92509250505b6000805460ff191660011790559094909350915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b1580156131cc57600080fd5b505af11580156131e0573d6000803e3d6000fd5b505050506040513d60208110156131f657600080fd5b50519050801561320d576127616003601b83612f45565b846001600160a01b0316846001600160a01b03161415613233576127616006601c6121d4565b61323b614edf565b6001600160a01b0385166000908152600e602052604090205461325e9085612eba565b602083018190528282600381111561327257fe5b600381111561327d57fe5b905250600090508151600381111561329157fe5b146132b6576132ad6009601a836000015160038111156119d157fe5b92505050612941565b6132d08460405180602001604052806011548152506147e4565b608082018190526132e290859061480c565b60608201526132ef61260c565b60c083018190528282600381111561330357fe5b600381111561330e57fe5b905250600090508151600381111561332257fe5b14613374576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61339460405180602001604052808360c001518152508260800151614846565b60a08201819052600c546133a791614865565b60e0820152600d5460808201516133be919061480c565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516133ec9190612fab565b604083018190528282600381111561340057fe5b600381111561340b57fe5b905250600090508151600381111561341f57fe5b1461343b576132ad60096019836000015160038111156119d157fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b168082529084902092909255606085015183519081529251919390926000805160206150eb833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206150eb8339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613579576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561358b6117e9565b905080156135a9576113c18160108111156135a257fe5b60086121d4565b6113d2338461489b565b6000805460ff166135f8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561360a6117e9565b90508015613621576113c1816010811115612c7a57fe5b6113d233846000613d48565b60008054819060ff16613674576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556136866117e9565b905080156136b1576136a481601081111561369d57fe5b60356121d4565b9250600091506136c29050565b6136bc3386866139c4565b92509250505b6000805460ff1916600117905590939092509050565b60035460009061010090046001600160a01b031633146136fe576111c6600160476121d4565b613706612d41565b6009541461371a576111c6600a60486121d4565b670de0b6b3a7640000821115613736576111c6600260496121d4565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a160006112ee565b6000805460ff166137c5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556137d76117e9565b905080156137f5576113c18160108111156137ee57fe5b604e6121d4565b6137fe83614b2f565b509150506000805460ff19166001179055919050565b6000336001600160a01b03841614613865576040805162461bcd60e51b815260206004820152600f60248201526e0e6cadcc8cae440dad2e6dac2e8c6d608b1b604482015290519081900360640190fd5b8134146138aa576040805162461bcd60e51b815260206004820152600e60248201526d0ecc2d8eaca40dad2e6dac2e8c6d60931b604482015290519081900360640190fd5b50919050565b60008060006138bd614e10565b6129608686614c17565b6000806000806138d78787612fab565b909250905060008260038111156138ea57fe5b146138fb5750915060009050613025565b61301e8186612eba565b600061390f614e10565b60008061392486670de0b6b3a7640000614288565b9092509050600082600381111561393757fe5b1461395657506040805160208101909152600081529092509050612605565b60008061396383886142c7565b9092509050600082600381111561397657fe5b1461399857506040805160208101909152600081529094509250612605915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b158015613a2d57600080fd5b505af1158015613a41573d6000803e3d6000fd5b505050506040513d6020811015613a5757600080fd5b505190508015613a7b57613a6e6003603883612f45565b9250600091506130259050565b613a83612d41565b60095414613a9757613a6e600a60396121d4565b613a9f614f2c565b6001600160a01b0386166000908152601060205260409020600101546060820152613ac986612c8d565b6080830181905260208301826003811115613ae057fe5b6003811115613aeb57fe5b9052506000905081602001516003811115613b0257fe5b14613b2c57613b1e60096037836020015160038111156119d157fe5b935060009250613025915050565b600019851415613b455760808101516040820152613b4d565b604081018590525b613b5b878260400151613814565b60e082018190526080820151613b7091612eba565b60a0830181905260208301826003811115613b8757fe5b6003811115613b9257fe5b9052506000905081602001516003811115613ba957fe5b14613be55760405162461bcd60e51b815260040180806020018281038252603a8152602001806150b1603a913960400191505060405180910390fd5b613bf5600b548260e00151612eba565b60c0830181905260208301826003811115613c0c57fe5b6003811115613c1757fe5b9052506000905081602001516003811115613c2e57fe5b14613c6a5760405162461bcd60e51b815260040180806020018281038252603181526020018061510b6031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015611c00573d6000803e3d6000fd5b6000821580613d55575081155b613d905760405162461bcd60e51b81526004018080602001828103825260348152602001806151cc6034913960400191505060405180910390fd5b613d98614ea1565b613da061260c565b6040830181905260208301826003811115613db757fe5b6003811115613dc257fe5b9052506000905081602001516003811115613dd957fe5b14613dfd57613df56009602b836020015160038111156119d157fe5b9150506112ee565b8315613eb257600019841415613e30576001600160a01b0385166000908152600e60205260409020546060820152613e38565b606081018490525b613e58604051806020016040528083604001518152508260600151612949565b6080830181905260208301826003811115613e6f57fe5b6003811115613e7a57fe5b9052506000905081602001516003811115613e9157fe5b14613ead57613df560096029836020015160038111156119d157fe5b613f70565b600019831415613ef9576001600160a01b0385166000908152600e60209081526040918290205460608401908152825191820183529183015181529051613e589190612949565b6080810183905260408051602081018252908201518152613f1b9084906138b0565b6060830181905260208301826003811115613f3257fe5b6003811115613f3d57fe5b9052506000905081602001516003811115613f5457fe5b14613f7057613df56009602a836020015160038111156119d157fe5b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613fd557600080fd5b505af1158015613fe9573d6000803e3d6000fd5b505050506040513d6020811015613fff57600080fd5b50519050801561401f576140166003602883612f45565b925050506112ee565b614027612d41565b6009541461403b57614016600a602c6121d4565b61404b600d548360600151612eba565b60a084018190526020840182600381111561406257fe5b600381111561406d57fe5b905250600090508260200151600381111561408457fe5b146140a0576140166009602e846020015160038111156119d157fe5b6001600160a01b0386166000908152600e602052604090205460608301516140c89190612eba565b60c08401819052602084018260038111156140df57fe5b60038111156140ea57fe5b905250600090508260200151600381111561410157fe5b1461411d576140166009602d846020015160038111156119d157fe5b816080015161412a61299c565b101561413c57614016600e602f6121d4565b61414a868360800151613d12565b60a0820151600d5560c08201516001600160a01b0387166000818152600e60209081526040918290209390935560608501518151908152905130936000805160206150eb833981519152928290030190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b15801561425d57600080fd5b505af1158015614271573d6000803e3d6000fd5b506000925061427e915050565b9695505050505050565b6000808361429b57506000905080612605565b838302838582816142a857fe5b04146142bc57506002915060009050612605565b600092509050612605565b600080826142db5750600190506000612605565b60008385816142e657fe5b04915091509250929050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b15801561436357600080fd5b505af1158015614377573d6000803e3d6000fd5b505050506040513d602081101561438d57600080fd5b5051905080156143b1576143a46003601283612f45565b9250600091506147db9050565b6143b9612d41565b600954146143cd576143a4600a60166121d4565b6143d5612d41565b846001600160a01b031663cfa992016040518163ffffffff1660e01b815260040160206040518083038186803b15801561440e57600080fd5b505afa158015614422573d6000803e3d6000fd5b505050506040513d602081101561443857600080fd5b50511461444b576143a4600a60116121d4565b866001600160a01b0316866001600160a01b03161415614471576143a4600660176121d4565b84614482576143a4600760156121d4565b600019851415614498576143a4600760146121d4565b6000806144a68989896139c4565b909250905081156144d6576144c78260108111156144c057fe5b60186121d4565b9450600093506147db92505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038981166024830152604482018590528251600094859492169263c488847b926064808301939192829003018186803b15801561453057600080fd5b505afa158015614544573d6000803e3d6000fd5b505050506040513d604081101561455a57600080fd5b508051602090910151909250905081156145a55760405162461bcd60e51b815260040180806020018281038252603381526020018061513c6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b1580156145fc57600080fd5b505afa158015614610573d6000803e3d6000fd5b505050506040513d602081101561462657600080fd5b5051101561467b576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b0389163014156146a15761469a308d8d8561315f565b905061472b565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b1580156146fc57600080fd5b505af1158015614710573d6000803e3d6000fd5b505050506040513d602081101561472657600080fd5b505190505b8015614775576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b6000670de0b6b3a76400006147fd848460000151614c76565b8161480457fe5b049392505050565b60006112ee8383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b815250614cb8565b6000614850614e10565b61485a8484614d12565b9050612941816139b5565b60006112ee8383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b815250614d3c565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b1580156148f857600080fd5b505af115801561490c573d6000803e3d6000fd5b505050506040513d602081101561492257600080fd5b505190508015614941576149396003600e83612f45565b915050610ed7565b614949612d41565b6009541461495c57614939600a806121d4565b8261496561299c565b101561497757614939600e60096121d4565b61497f614f72565b61498885612c8d565b602083018190528282600381111561499c57fe5b60038111156149a757fe5b90525060009050815160038111156149bb57fe5b146149e0576149d760096007836000015160038111156119d157fe5b92505050610ed7565b6149ee816020015185612fab565b6040830181905282826003811115614a0257fe5b6003811115614a0d57fe5b9052506000905081516003811115614a2157fe5b14614a3d576149d76009600c836000015160038111156119d157fe5b614a49600b5485612fab565b6060830181905282826003811115614a5d57fe5b6003811115614a6857fe5b9052506000905081516003811115614a7c57fe5b14614a98576149d76009600b836000015160038111156119d157fe5b614aa28585613d12565b604080820180516001600160a01b03881660008181526010602090815290859020928355600a54600190930192909255606080860151600b81905593518551928352928201899052818501929092529081019190915290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b600080600080614b3d612d41565b60095414614b5c57614b51600a604f6121d4565b93509150612d3c9050565b614b663386613814565b905080600c54019150600c54821015614bc6576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6000614c21614e10565b600080614c36670de0b6b3a764000087614288565b90925090506000826003811115614c4957fe5b14614c6857506040805160208101909152600081529092509050612605565b61298f818660000151613905565b60006112ee83836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f77000000000000000000815250614d9a565b60008184841115614d0a5760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b505050900390565b614d1a614e10565b6040518060200160405280614d33856000015185614c76565b90529392505050565b60008383018285821015614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b50949350505050565b6000831580614da7575082155b15614db4575060006112ee565b83830283858281614dc157fe5b04148390614d915760405162461bcd60e51b8152602060048201818152835160248401528351909283926044909101919085019080838360008315610da0578181015183820152602001610d88565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614e6457805160ff1916838001178555614e91565b82800160010185558215614e91579182015b82811115614e91578251825591602001919060010190614e76565b50614e9d929150614f9b565b5090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b61104c91905b80821115614e9d5760008155600101614fa156fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65644d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c454465786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f77a265627a7a7231582084dce131614b93131658e092b13f1d69dc28eeda196966c1db4472b9e90d98fa64736f6c634300051100326f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e6365696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c6564000000000000000000000000dd8c94211dd19155effbd57eab6d4e0de31a3b9e0000000000000000000000006712b37bd0b112113d4323bf01bce67e88c1b02c000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000006a13f1700e97535a6b6bc5c0d5b3266290583c9200000000000000000000000000000000000000000000000000000000000000094d696d61732043726f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056d6d43524f000000000000000000000000000000000000000000000000000000
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000dd8c94211dd19155effbd57eab6d4e0de31a3b9e0000000000000000000000006712b37bd0b112113d4323bf01bce67e88c1b02c000000000000000000000000000000000000000000a56fa5b99019a5c800000000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000000080000000000000000000000006a13f1700e97535a6b6bc5c0d5b3266290583c9200000000000000000000000000000000000000000000000000000000000000094d696d61732043726f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000056d6d43524f000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : comptroller_ (address): 0xdd8c94211dd19155effbd57eab6d4e0de31a3b9e
Arg [1] : interestRateModel_ (address): 0x6712b37bd0b112113d4323bf01bce67e88c1b02c
Arg [2] : initialExchangeRateMantissa_ (uint256): 200000000000000000000000000
Arg [3] : name_ (string): Mimas Cro
Arg [4] : symbol_ (string): mmCRO
Arg [5] : decimals_ (uint8): 8
Arg [6] : admin_ (address): 0x6a13f1700e97535a6b6bc5c0d5b3266290583c92
-----Encoded View---------------
11 Constructor Arguments found :
Arg [0] : 000000000000000000000000dd8c94211dd19155effbd57eab6d4e0de31a3b9e
Arg [1] : 0000000000000000000000006712b37bd0b112113d4323bf01bce67e88c1b02c
Arg [2] : 000000000000000000000000000000000000000000a56fa5b99019a5c8000000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 0000000000000000000000006a13f1700e97535a6b6bc5c0d5b3266290583c92
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000009
Arg [8] : 4d696d61732043726f0000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [10] : 6d6d43524f000000000000000000000000000000000000000000000000000000
Deployed ByteCode Sourcemap
115810:6425:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120269:8;120282:23;120295:9;120282:12;:23::i;:::-;120268:37;;;120316:34;120331:3;120316:34;;;;;;;;;;;;;-1:-1:-1;;;120316:34:0;;;:14;:34::i;:::-;120228:130;115810:6425;7333:18;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7333: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;7333:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51111:237;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51111:237:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51111:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;10451:37;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10451:37:0;;;:::i;117168:134::-;;;:::i;:::-;;8638:33;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8638:33:0;;;:::i;:::-;;;;;;;;;;;;;;;;55395:224;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55395:224:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55395:224:0;-1:-1:-1;;;;;55395:224:0;;:::i;9286:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9286:23:0;;;:::i;58241:261::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58241:261:0;;;:::i;50446:195::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;50446:195:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;50446:195:0;;;;;;;;;;;;;;;;;:::i;8060:35::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8060:35:0;;;:::i;:::-;;;;-1:-1:-1;;;;;8060:35:0;;;;;;;;;;;;;;7529:21;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7529:21:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;;52379:354;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52379:354:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52379:354:0;-1:-1:-1;;;;;52379:354:0;;:::i;60124:88::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60124:88:0;;;:::i;100413:735::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;100413:735:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100413:735:0;-1:-1:-1;;;;;100413:735:0;;:::i;9050:24::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9050:24:0;;;:::i;118750:155::-;;;:::i;8187:39::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8187:39:0;;;:::i;106397:571::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;106397:571:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;106397:571:0;;:::i;10259:38::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;10259:38:0;;;:::i;52011:112::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;52011:112:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;52011:112:0;-1:-1:-1;;;;;52011:112:0;;:::i;54912:192::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54912:192:0;;;:::i;112029:659::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;112029:659:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;112029:659:0;;:::i;118125:133::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;118125:133:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118125:133:0;;:::i;9180:25::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;9180:25:0;;;:::i;7429:20::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7429:20:0;;;:::i;55828:287::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55828:287:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55828:287:0;-1:-1:-1;;;;;55828:287:0;;:::i;45433:1547::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;45433:1547:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;45433:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;45433:1547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45433: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;45433:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45433:1547:0;;;;;;;;-1:-1:-1;45433:1547:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;45433:1547:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;45433: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;45433:1547:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;45433:1547:0;;-1:-1:-1;;;45433:1547:0;;;;;-1:-1:-1;45433:1547:0;;-1:-1:-1;45433:1547:0:i;60460:3885::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60460:3885:0;;;:::i;49954:185::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;49954:185:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;49954:185:0;;;;;;;;:::i;8915:23::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8915:23:0;;;:::i;119649:239::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;119649:239:0;;;;;;;;;;:::i;93755:194::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;93755:194:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;93755:194:0;;;;;;;;;;;;;;;;;:::i;98521:647::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;98521:647:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;98521:647:0;-1:-1:-1;;;;;98521:647:0;;:::i;57792:198::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;57792:198:0;;;:::i;53079:705::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53079:705:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53079:705:0;-1:-1:-1;;;;;53079:705:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118526:113;;8:9:-1;5:2;;;30:1;27;20:12;5:2;118526:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118526:113:0;;:::i;54229:165::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54229:165:0;;;:::i;8761:33::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8761:33:0;;;:::i;54578:188::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54578:188:0;;;:::i;117655:113::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;117655:113:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117655:113:0;;:::i;51678:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;51678:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51678:143:0;;;;;;;;;;:::i;119096:199::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119096:199:0;-1:-1:-1;;;;;119096:199:0;;:::i;99446:742::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;99446:742:0;;;:::i;109373:633::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;109373:633:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;109373:633:0;-1:-1:-1;;;;;109373:633:0;;:::i;8328:42::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;8328:42:0;;;:::i;7949:28::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7949:28:0;;;:::i;101451:607::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;101451:607:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101451:607:0;;:::i;120047:113::-;;;:::i;64744:547::-;64814:4;115506:11;;64814:4;;115506:11;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;64850:16;:14;:16::i;:::-;64837:29;-1:-1:-1;64881:29:0;;64877:252;;65054:59;65065:5;65059:12;;;;;;;;65073:39;65054:4;:59::i;:::-;65046:71;-1:-1:-1;65115:1:0;;-1:-1:-1;65046:71:0;;-1:-1:-1;65046:71:0;64877:252;65250:33;65260:10;65272;65250:9;:33::i;:::-;65243:40;;;;;115573:1;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;64744:547;;;;-1:-1:-1;64744:547:0:o;121520:712::-;121610:31;121606:70;;121658:7;;121606:70;121688:24;121731:7;121725:21;121749:1;121725:25;121715:36;;;;;;;;;;;;;;;;;;;;;;;;;21:6:-1;;104:10;121715:36:0;87:34:-1;135:17;;-1:-1;121715:36:0;-1:-1:-1;121688:63:0;-1:-1:-1;121762:6:0;121781:105;121803:7;121797:21;121793:1;:25;121781:105;;;121863:7;121872:1;121857:17;;;;;;;;;;;;;;;;121840:11;121852:1;121840:14;;;;;;;;;;;:34;-1:-1:-1;;;;;121840:34:0;;;;;;;;-1:-1:-1;121820:3:0;;121781:105;;;121898:16;;-1:-1:-1;;;121917:15:0;121898:11;;121910:1;;121898:16;;;;;;;;;:34;-1:-1:-1;;;;;121898:34:0;;;;;;;;;121973:2;121962:15;;121943:11;121955:1;121957;121955:3;121943:16;;;;;;;;;;;:34;-1:-1:-1;;;;;121943:34:0;;;;;;;;-1:-1:-1;122035:2:0;122025:7;:12;122018:2;:21;122007:34;;121988:11;122000:1;122002;122000:3;121988:16;;;;;;;;;;;:53;-1:-1:-1;;;;;121988:53:0;;;;;;;;-1:-1:-1;122099:2:0;122089:7;:12;122082:2;:21;122071:34;;122052:11;122064:1;122066;122064:3;122052:16;;;;;;;;;;;:53;-1:-1:-1;;;;;122052:53:0;;;;;;;;;122146:2;122135:15;;122116:11;122128:1;122130;122128:3;122116:16;;;;;;;;;;;:34;-1:-1:-1;;;;;122116:34:0;;;;;;;;-1:-1:-1;122211:11:0;122171:31;;122163:61;;;;-1:-1:-1;;;122163: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;122163:61:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121520:712;;;;;:::o;7333:18::-;;;;;;;;;;;;;;;-1:-1:-1;;7333:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;51111:237::-;51210:10;51179:4;51231:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;51231:32:0;;;;;;;;;;;:41;;;51288:30;;;;;;;51179:4;;51210:10;51231:32;;51210:10;;51288:30;;;;;;;;;;;51336:4;51329:11;;;51111:237;;;;;:::o;10451:37::-;10484:4;10451:37;:::o;117168:134::-;117213:8;117226:23;117239:9;117226:12;:23::i;:::-;117212:37;;;117260:34;117275:3;117260:34;;;;;;;;;;;;;-1:-1:-1;;;117260:34:0;;;:14;:34::i;:::-;117168:134;:::o;8638:33::-;;;;:::o;55395:224::-;55473:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;55498:16;:14;:16::i;:::-;:40;55490:75;;;;;-1:-1:-1;;;55490:75:0;;;;;;;;;;;;-1:-1:-1;;;55490:75:0;;;;;;;;;;;;;;;55583:28;55603:7;55583:19;:28::i;:::-;55576:35;;115573:1;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;55395:224;;-1:-1:-1;55395:224:0:o;9286:23::-;;;;:::o;58241:261::-;58292:4;58310:13;58325:11;58340:28;:26;:28::i;:::-;58309:59;;-1:-1:-1;58309:59:0;-1:-1:-1;58394:18:0;58387:3;:25;;;;;;;;;58379:91;;;;-1:-1:-1;;;58379:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58488:6;-1:-1:-1;;58241:261:0;;:::o;50446:195::-;50541:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;50565:44;50580:10;50592:3;50597;50602:6;50565:14;:44::i;:::-;:68;50558:75;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;50446:195;;-1:-1:-1;;;50446:195:0:o;8060:35::-;;;-1:-1:-1;;;;;8060:35:0;;:::o;7529:21::-;;;;;;:::o;52379:354::-;52441:4;52458:23;;:::i;:::-;52484:38;;;;;;;;52499:21;:19;:21::i;:::-;52484:38;;-1:-1:-1;;;;;52598:20:0;;52534:14;52598:20;;;:13;:20;;;;;;52458:64;;-1:-1:-1;52534:14:0;;;52566:53;;52458:64;;52566:17;:53::i;:::-;52533:86;;-1:-1:-1;52533:86:0;-1:-1:-1;52646:18:0;52638:4;:26;;;;;;;;;52630:70;;;;;-1:-1:-1;;;52630:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;52718:7;-1:-1:-1;;;52379:354:0;;;;:::o;60124:88::-;60166:4;60190:14;:12;:14::i;:::-;60183:21;;60124:88;:::o;100413:735::-;100560:5;;100491:4;;100560:5;;;-1:-1:-1;;;;;100560:5:0;100546:10;:19;100542:124;;100589:65;100594:18;100614:39;100589:4;:65::i;:::-;100582:72;;;;100542:124;100716:11;;100813:30;;;-1:-1:-1;;;100813:30:0;;;;-1:-1:-1;;;;;100716:11:0;;;;100813:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;100813:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;100813:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100813:30:0;100805:71;;;;;-1:-1:-1;;;100805:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;100944:11;:28;;-1:-1:-1;;;;;;100944:28:0;-1:-1:-1;;;;;100944:28:0;;;;;;;;;101054:46;;;;;;;;;;;;;;;;;;;;;;;;;;;101125:14;101120:20;101113:27;100413:735;-1:-1:-1;;;100413:735:0:o;9050:24::-;;;;:::o;118750:155::-;118802:8;118815:30;118835:9;118815:19;:30::i;:::-;118801:44;;;118856:41;118871:3;118856:41;;;;;;;;;;;;;-1:-1:-1;;;118856:41:0;;;:14;:41::i;8187:39::-;;;-1:-1:-1;;;;;8187:39:0;;:::o;106397:571::-;106472:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;106502:16;:14;:16::i;:::-;106489:29;-1:-1:-1;106533:29:0;;106529:277;;106724:70;106735:5;106729:12;;;;;;;;106743:50;106724:4;:70::i;:::-;106717:77;;;;;106529:277;106926:34;106947:12;106926:20;:34::i;:::-;106919:41;;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;106397:571;;-1:-1:-1;106397:571:0:o;10259:38::-;;;;:::o;52011:112::-;-1:-1:-1;;;;;52095:20:0;52068:7;52095:20;;;:13;:20;;;;;;;52011:112::o;54912:192::-;54974:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;54999:16;:14;:16::i;:::-;:40;54991:75;;;;;-1:-1:-1;;;54991:75:0;;;;;;;;;;;;-1:-1:-1;;;54991:75:0;;;;;;;;;;;;;;;-1:-1:-1;55084:12:0;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;54912:192;:::o;112029:659::-;112128:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;112158:16;:14;:16::i;:::-;112145:29;-1:-1:-1;112189:29:0;;112185:300;;112394:79;112405:5;112399:12;;;;;;;;112413:59;112394:4;:79::i;112185:300::-;112622:58;112650:29;112622:27;:58::i;118125:133::-;118188:4;118212:38;118237:12;118212:24;:38::i;9180:25::-;;;;:::o;7429:20::-;;;;;;;;;;;;;;-1:-1:-1;;7429:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55828:287;55895:4;55913:13;55928:11;55943:36;55971:7;55943:27;:36::i;:::-;55912:67;;-1:-1:-1;55912:67:0;-1:-1:-1;56005:18:0;55998:3;:25;;;;;;;;;55990:93;;;;-1:-1:-1;;;55990:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45433:1547;45787:5;;;;;-1:-1:-1;;;;;45787:5:0;45773:10;:19;45765:68;;;;-1:-1:-1;;;45765:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45852:21;;:26;:46;;;;-1:-1:-1;45882:11:0;;:16;45852:46;45844:94;;;;-1:-1:-1;;;45844:94:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45989:27;:58;;;46066:31;46058:92;;;;-1:-1:-1;;;46058:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46195:8;46206:29;46222:12;46206:15;:29::i;:::-;46195:40;-1:-1:-1;46254:27:0;;46246:66;;;;;-1:-1:-1;;;46246:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;46461:19;:17;:19::i;:::-;46437:21;:43;28526:4;46491:11;:25;46619:46;46646:18;46619:26;:46::i;:::-;46613:52;-1:-1:-1;46684:27:0;;46676:74;;;;-1:-1:-1;;;46676:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46763:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;46786:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;46813:8:0;:20;;;;;;-1:-1:-1;;46813:20:0;;;;;;:8;46954:18;;;;;46813:20;46954:18;;;-1:-1:-1;;;;;45433:1547:0:o;60460:3885::-;60502:4;60571:26;60600:19;:17;:19::i;:::-;60664:21;;60571:48;;-1:-1:-1;60755:51:0;;;60751:111;;;60835:14;60823:27;;;;;;60751:111;60929:14;60946;:12;:14::i;:::-;60991:12;;61035:13;;61083:11;;61191:17;;:71;;;-1:-1:-1;;;61191:71:0;;;;;;;;;;;;;;;;;;;;;;60929:31;;-1:-1:-1;60991:12:0;;61035:13;;61083:11;;60971:17;;-1:-1:-1;;;;;61191:17:0;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;61191:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61191:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;61191:71:0;;-1:-1:-1;7704:9:0;61281:43;;;61273:84;;;;;-1:-1:-1;;;61273:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;61448:17;61467:15;61486:58;61494:21;61517:26;61486:7;:58::i;:::-;61447:97;;-1:-1:-1;61447:97:0;-1:-1:-1;61574:18:0;61563:7;:29;;;;;;;;;61555:73;;;;;-1:-1:-1;;;61555:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62120:31;;:::i;:::-;62162:24;62197:20;62228:21;62260:19;62326:58;62336:35;;;;;;;;62351:18;62336:35;;;62373:10;62326:9;:58::i;:::-;62292:92;;-1:-1:-1;62292:92:0;-1:-1:-1;62410:18:0;62399:7;:29;;;;;;;;;62395:183;;62452:114;62463:16;62481:69;62557:7;62552:13;;;;;;;;62452:10;:114::i;:::-;62445:121;;;;;;;;;;;;;;;;;;62395:183;62623:53;62641:20;62663:12;62623:17;:53::i;:::-;62590:86;;-1:-1:-1;62590:86:0;-1:-1:-1;62702:18:0;62691:7;:29;;;;;;;;;62687:181;;62744:112;62755:16;62773:67;62847:7;62842:13;;;;;;;62687:181;62909:42;62917:19;62938:12;62909:7;:42::i;:::-;62880:71;;-1:-1:-1;62880:71:0;-1:-1:-1;62977:18:0;62966:7;:29;;;;;;;;;62962:178;;63019:109;63030:16;63048:64;63119:7;63114:13;;;;;;;62962:178;63182:100;63207:38;;;;;;;;63222:21;;63207:38;;;63247:19;63268:13;63182:24;:100::i;:::-;63152:130;;-1:-1:-1;63152:130:0;-1:-1:-1;63308:18:0;63297:7;:29;;;;;;;;;63293:179;;63350:110;63361:16;63379:65;63451:7;63446:13;;;;;;;63293:179;63512:82;63537:20;63559:16;63577;63512:24;:82::i;:::-;63484:110;;-1:-1:-1;63484:110:0;-1:-1:-1;63620:18:0;63609:7;:29;;;;;;;;;63605:177;;63662:108;63673:16;63691:63;63761:7;63756:13;;;;;;;63605:177;63985:21;:45;;;64041:11;:28;;;64080:12;:30;;;64121:13;:32;;;64218:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64322:14;64310:27;;;;;;;;;;;;;;;;60460:3885;:::o;49954:185::-;50032:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;50056:51;50071:10;50083;50095:3;50100:6;50056:14;:51::i;:::-;:75;50049:82;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;49954:185;;-1:-1:-1;;49954:185:0:o;8915:23::-;;;;:::o;119649:239::-;119748:8;119761:63;119785:8;119795:9;119806:17;119761:23;:63::i;:::-;119747:77;;;119835:45;119850:3;119835:45;;;;;;;;;;;;;-1:-1:-1;;;119835:45:0;;;:14;:45::i;:::-;119649:239;;;:::o;93755:194::-;93857:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;93881:60;93895:10;93907;93919:8;93929:11;93881:13;:60::i;:::-;93874:67;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;93755:194;;-1:-1:-1;;;93755:194:0:o;98521:647::-;98666:5;;98598:4;;98666:5;;;-1:-1:-1;;;;;98666:5:0;98652:10;:19;98648:126;;98695:67;98700:18;98720:41;98695:4;:67::i;98648:126::-;98873:12;;;-1:-1:-1;;;;;98956:30:0;;;-1:-1:-1;;;;;;98956:30:0;;;;;;;99071:49;;;98873:12;;;;99071:49;;;;;;;;;;;;;;;;;;;;;;;99145:14;99140:20;;57792:198;57852:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;57877:16;:14;:16::i;:::-;:40;57869:75;;;;;-1:-1:-1;;;57869:75:0;;;;;;;;;;;;-1:-1:-1;;;57869:75:0;;;;;;;;;;;;;;;57962:20;:18;:20::i;:::-;57955:27;;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;57792:198;:::o;53079:705::-;-1:-1:-1;;;;;53204:22:0;;53147:4;53204:22;;;:13;:22;;;;;;53147:4;;;;;;;;;53355:36;53218:7;53355:27;:36::i;:::-;53331:60;-1:-1:-1;53331:60:0;-1:-1:-1;53414:18:0;53406:4;:26;;;;;;;;;53402:99;;53462:16;53457:22;53449:40;-1:-1:-1;53481:1:0;;-1:-1:-1;53481:1:0;;-1:-1:-1;53481:1:0;;-1:-1:-1;53449:40:0;;-1:-1:-1;;;;53449:40:0;53402:99;53544:28;:26;:28::i;:::-;53513:59;-1:-1:-1;53513:59:0;-1:-1:-1;53595:18:0;53587:4;:26;;;;;;;;;53583:99;;53643:16;53638:22;;53583:99;-1:-1:-1;53707:14:0;;-1:-1:-1;53724:14:0;;-1:-1:-1;53740:13:0;-1:-1:-1;53740:13:0;-1:-1:-1;53079:705:0;;;;;;:::o;118526:113::-;118579:4;118603:28;118618:12;118603:14;:28::i;54229:165::-;54310:17;;54286:4;;-1:-1:-1;;;;;54310:17:0;:31;54342:14;:12;:14::i;:::-;54358:12;;54372:13;;54310:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54310:76:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54310:76:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54310:76:0;;-1:-1:-1;54229:165:0;:::o;8761:33::-;;;;:::o;54578:188::-;54659:17;;54635:4;;-1:-1:-1;;;;;54659:17:0;:31;54691:14;:12;:14::i;:::-;54707:12;;54721:13;;54736:21;;54659:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;117655:113:0;117708:4;117732:28;117747:12;117732:14;:28::i;51678:143::-;-1:-1:-1;;;;;51779:25:0;;;51752:7;51779:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;51678:143::o;119096:199::-;119170:8;119183:46;119209:8;119219:9;119183:25;:46::i;:::-;119169:60;;;119240:47;119255:3;119240:47;;;;;;;;;;;;;;;;;:14;:47::i;99446:742::-;99596:12;;99488:4;;-1:-1:-1;;;;;99596:12:0;99582:10;:26;;;:54;;-1:-1:-1;99612:10:0;:24;99582:54;99578:164;;;99660:70;99665:18;99685:44;99660:4;:70::i;:::-;99653:77;;;;99578:164;99826:5;;;99868:12;;;-1:-1:-1;;;;;99868:12:0;;;99826:5;99941:20;;;-1:-1:-1;;;;;;99941:20:0;;;;;;;-1:-1:-1;;;;;;100010:25:0;;;;;;100053;;;99826:5;;;;;;100053:25;;;100072:5;;;;;100053:25;;;;;;99826:5;;99868:12;;100053:25;;;;;;;;;100127:12;;100094:46;;;-1:-1:-1;;;;;100094:46:0;;;;;100127:12;;;100094:46;;;;;;;;;;;;;;;;100165:14;100153:27;;;;99446:742;:::o;109373:633::-;109460:4;109477:10;109490:16;:14;:16::i;:::-;109477:29;-1:-1:-1;109521:29:0;;109517:298;;109725:78;109736:5;109730:12;;;;;;;;109744:58;109725:4;:78::i;:::-;109718:85;;;;;109517:298;109950:48;109977:20;109950:26;:48::i;8328:42::-;;;-1:-1:-1;;;;;8328:42:0;;:::o;7949:28::-;;;;;;-1:-1:-1;;;;;7949:28:0;;:::o;101451:607::-;101540:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;101570:16;:14;:16::i;:::-;101557:29;-1:-1:-1;101601:29:0;;101597:286;;101798:73;101809:5;101803:12;;;;;;;;101817:53;101798:4;:73::i;101597:286::-;102002:48;102025:24;102002:22;:48::i;120047:113::-;120097:4;120121:31;120142:9;120121:20;:31::i;25273:153::-;25334:4;25356:33;25369:3;25364:9;;;;;;;;25380:4;25375:10;;;;;;;;25356:33;;;;;;;;;;;;;25387:1;25356:33;;;;;;;;;;;;;25414:3;25409:9;;;;;;;66002:3223;66150:11;;:58;;;-1:-1:-1;;;66150:58:0;;66182:4;66150:58;;;;-1:-1:-1;;;;;66150:58:0;;;;;;;;;;;;;;;66072:4;;;;;;66150:11;;;:23;;:58;;;;;;;;;;;;;;;66072:4;66150:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;66150:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;66150:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;66150:58:0;;-1:-1:-1;66223:12:0;;66219:145;;66260:88;66271:27;66300:38;66340:7;66260:10;:88::i;:::-;66252:100;-1:-1:-1;66350:1:0;;-1:-1:-1;66252:100:0;;-1:-1:-1;66252:100:0;66219:145;66483:19;:17;:19::i;:::-;66458:21;;:44;66454:151;;66527:62;66532:22;66556:32;66527:4;:62::i;66454:151::-;66617:25;;:::i;:::-;66699:28;:26;:28::i;:::-;66670:25;;;66655:72;;;66656:12;;;66655:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;66758:18:0;;-1:-1:-1;66742:4:0;:12;;;:34;;;;;;;;;66738:171;;66801:92;66812:16;66830:42;66879:4;:12;;;66874:18;;;;;;;66801:92;66793:104;-1:-1:-1;66895:1:0;;-1:-1:-1;66793:104:0;;-1:-1:-1;;66793:104:0;66738:171;67543:32;67556:6;67564:10;67543:12;:32::i;:::-;67519:21;;;:56;;;67849:42;;;;;;;;67864:25;;;;67849:42;;67803:89;;67519:56;67803:22;:89::i;:::-;67784:15;;;67769:123;;;67770:12;;;67769:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;67927:18:0;;-1:-1:-1;67911:4:0;:12;;;:34;;;;;;;;;67903:79;;;;;-1:-1:-1;;;67903:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68287:37;68295:11;;68308:4;:15;;;68287:7;:37::i;:::-;68264:19;;;68249:75;;;68250:12;;;68249:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;68359:18:0;;-1:-1:-1;68343:4:0;:12;;;:34;;;;;;;;;68335:87;;;;-1:-1:-1;;;68335:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;68483:21:0;;;;;;:13;:21;;;;;;68506:15;;;;68475:47;;68483:21;68475:7;:47::i;:::-;68450:21;;;68435:87;;;68436:12;;;68435:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;68557:18:0;;-1:-1:-1;68541:4:0;:12;;;:34;;;;;;;;;68533:90;;;;-1:-1:-1;;;68533:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68716:19;;;;68702:11;:33;68770:21;;;;-1:-1:-1;;;;;68746:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;68880:21;;;;68903:15;;;;;68867:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68967:15;;;;68935:48;;;;;;;-1:-1:-1;;;;;68935:48:0;;;68952:4;;-1:-1:-1;;;;;;;;;;;68935:48:0;;;;;;;;69195:21;;;69178:14;;-1:-1:-1;69195:21:0;-1:-1:-1;;66002:3223:0;;;;;;:::o;58767:1186::-;58876:11;;58828:9;;;;58902:17;58898:1048;;-1:-1:-1;;59096:27:0;;59076:18;;-1:-1:-1;59068:56:0;;58898:1048;59306:14;59323;:12;:14::i;:::-;59306:31;;59352:33;59400:23;;:::i;:::-;59438:17;59514:54;59529:9;59540:12;;59554:13;;59514:14;:54::i;:::-;59472:96;-1:-1:-1;59472:96:0;-1:-1:-1;59598:18:0;59587:7;:29;;;;;;;;;59583:89;;59645:7;-1:-1:-1;59654:1:0;;-1:-1:-1;59637:19:0;;-1:-1:-1;;;;59637:19:0;59583:89;59714:50;59721:28;59751:12;59714:6;:50::i;:::-;59688:76;-1:-1:-1;59688:76:0;-1:-1:-1;59794:18:0;59783:7;:29;;;;;;;;;59779:89;;59841:7;-1:-1:-1;59850:1:0;;-1:-1:-1;59833:19:0;;-1:-1:-1;;;;59833:19:0;59779:89;-1:-1:-1;59912:21:0;59892:18;;-1:-1:-1;59912:21:0;-1:-1:-1;59884:50:0;;-1:-1:-1;;;59884:50:0;58767:1186;;;:::o;47443:2250::-;47617:11;;:60;;;-1:-1:-1;;;47617:60:0;;47653:4;47617:60;;;;-1:-1:-1;;;;;47617:60:0;;;;;;;;;;;;;;;;;;;;;;47541:4;;;;47617:11;;:27;;:60;;;;;;;;;;;;;;47541:4;47617:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;47617:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;47617:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;47617:60:0;;-1:-1:-1;47692:12:0;;47688:144;;47728:92;47739:27;47768:42;47812:7;47728:10;:92::i;:::-;47721:99;;;;;47688:144;47898:3;-1:-1:-1;;;;;47891:10:0;:3;-1:-1:-1;;;;;47891:10:0;;47887:105;;;47925:55;47930:15;47947:32;47925:4;:55::i;47887:105::-;48069:22;-1:-1:-1;;;;;48110:14:0;;;;;;;48106:160;;;-1:-1:-1;;;48106:160:0;;;-1:-1:-1;;;;;;48222:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;48106:160;48344:17;48372;48400:18;48429:17;48485:34;48493:17;48512:6;48485:7;:34::i;:::-;48459:60;;-1:-1:-1;48459:60:0;-1:-1:-1;48545:18:0;48534:7;:29;;;;;;;;;48530:125;;48587:56;48592:16;48610:32;48587:4;:56::i;:::-;48580:63;;;;;;;;;;48530:125;-1:-1:-1;;;;;48702:18:0;;;;;;:13;:18;;;;;;48694:35;;48722:6;48694:7;:35::i;:::-;48667:62;;-1:-1:-1;48667:62:0;-1:-1:-1;48755:18:0;48744:7;:29;;;;;;;;;48740:124;;48797:55;48802:16;48820:31;48797:4;:55::i;48740:124::-;-1:-1:-1;;;;;48910:18:0;;;;;;:13;:18;;;;;;48902:35;;48930:6;48902:7;:35::i;:::-;48876:61;;-1:-1:-1;48876:61:0;-1:-1:-1;48963:18:0;48952:7;:29;;;;;;;;;48948:122;;49005:53;49010:16;49028:29;49005:4;:53::i;48948:122::-;-1:-1:-1;;;;;49203:18:0;;;;;;;:13;:18;;;;;;:34;;;49248:18;;;;;;:33;;;-1:-1:-1;;49354:29:0;;49350:109;;-1:-1:-1;;;;;49400:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;49350:109;49530:3;-1:-1:-1;;;;;49516:26:0;49525:3;-1:-1:-1;;;;;49516:26:0;-1:-1:-1;;;;;;;;;;;49535:6:0;49516:26;;;;;;;;;;;;;;;;;;49670:14;49658:27;;;;;;;;47443:2250;;;;;;;:::o;37352:313::-;37429:9;37440:4;37458:13;37473:18;;:::i;:::-;37495:20;37505:1;37508:6;37495:9;:20::i;:::-;37457:58;;-1:-1:-1;37457:58:0;-1:-1:-1;37537:18:0;37530:3;:25;;;;;;;;;37526:73;;-1:-1:-1;37580:3:0;-1:-1:-1;37585:1:0;;-1:-1:-1;37572:15:0;;37526:73;37619:18;37639:17;37648:7;37639:8;:17::i;:::-;37611:46;;;;;;37352:313;;;;;:::o;120622:231::-;120669:4;120687:13;120702:20;120726:41;120734:21;120757:9;120726:7;:41::i;:::-;120686:81;;-1:-1:-1;120686:81:0;-1:-1:-1;120793:18:0;120786:3;:25;;;;;;;;;120778:34;;;;;81744:572;81822:4;115506:11;;81822:4;;115506:11;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;81858:16;:14;:16::i;:::-;81845:29;-1:-1:-1;81889:29:0;;81885:260;;82062:67;82073:5;82067:12;;;;;;;;82081:47;82062:4;:67::i;81885:260::-;82255:53;82272:10;82284;82296:11;82255:16;:53::i;107245:1759::-;107456:5;;107312:4;;;;107456:5;;;-1:-1:-1;;;;;107456:5:0;107442:10;:19;107438:124;;107485:65;107490:18;107510:39;107485:4;:65::i;107438:124::-;107697:19;:17;:19::i;:::-;107672:21;;:44;107668:153;;107740:69;107745:22;107769:39;107740:4;:69::i;107668:153::-;107927:12;107910:14;:12;:14::i;:::-;:29;107906:152;;;107963:83;107968:29;107999:46;107963:4;:83::i;107906:152::-;108152:13;;108137:12;:28;108133:129;;;108189:61;108194:15;108211:38;108189:4;:61::i;108133:129::-;-1:-1:-1;108414:13:0;;:28;;;;108550:33;;;108542:82;;;;-1:-1:-1;;;108542:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;108698:13;:32;;;108864:5;;108850:34;;108864:5;;;-1:-1:-1;;;;;108864:5:0;108871:12;108850:13;:34::i;:::-;108918:5;;108902:54;;;108918:5;;;;-1:-1:-1;;;;;108918:5:0;108902:54;;;;;;;;;;;;;;;;;;;;;;;;;108981:14;108976:20;;113030:1209;113323:5;;113121:4;;;;113323:5;;;-1:-1:-1;;;;;113323:5:0;113309:10;:19;113305:133;;113352:74;113357:18;113377:48;113352:4;:74::i;113305:133::-;113573:19;:17;:19::i;:::-;113548:21;;:44;113544:162;;113616:78;113621:22;113645:48;113616:4;:78::i;113544:162::-;-1:-1:-1;113810:26:0;;;113923:58;;;;114108:83;;;;;;;;;;;;;;;;;;;;;;;;;114216:14;114211:20;;70487:537;70571:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;70601:16;:14;:16::i;:::-;70588:29;-1:-1:-1;70632:29:0;;70628:249;;70804:61;70815:5;70809:12;;;;;;;;70823:41;70804:4;:61::i;70628:249::-;70976:40;70988:10;71000:1;71003:12;70976:11;:40::i;56369:1268::-;-1:-1:-1;;;;;56718:23:0;;56446:9;56718:23;;;:14;:23;;;;;56947:24;;56446:9;;;;;;;;56943:92;;-1:-1:-1;57001:18:0;;-1:-1:-1;57001:18:0;;-1:-1:-1;56993:30:0;;-1:-1:-1;;;56993:30:0;56943:92;57262:46;57270:14;:24;;;57296:11;;57262:7;:46::i;:::-;57229:79;;-1:-1:-1;57229:79:0;-1:-1:-1;57334:18:0;57323:7;:29;;;;;;;;;57319:81;;-1:-1:-1;57377:7:0;;-1:-1:-1;57386:1:0;;-1:-1:-1;57369:19:0;;-1:-1:-1;;57369:19:0;57319:81;57432:58;57440:19;57461:14;:28;;;57432:7;:58::i;:::-;57412:78;;-1:-1:-1;57412:78:0;-1:-1:-1;57516:18:0;57505:7;:29;;;;;;;;;57501:81;;-1:-1:-1;57559:7:0;;-1:-1:-1;57568:1:0;;-1:-1:-1;57551:19:0;;-1:-1:-1;;57551:19:0;57501:81;-1:-1:-1;57602:18:0;;-1:-1:-1;57622:6:0;-1:-1:-1;;;56369:1268:0;;;;:::o;53946:99::-;54022:15;53946:99;:::o;110336:1311::-;110636:5;;110430:4;;;;110636:5;;;-1:-1:-1;;;;;110636:5:0;110622:10;:19;110618:132;;110665:73;110670:18;110690:47;110665:4;:73::i;110618:132::-;110885:19;:17;:19::i;:::-;110860:21;;:44;110856:161;;110928:77;110933:22;110957:47;110928:4;:77::i;110856:161::-;111111:17;;;;;;;;;-1:-1:-1;;;;;111111:17:0;111088:40;;111231:20;-1:-1:-1;;;;;111231:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;111231:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;111231:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;111231:42:0;111223:83;;;;;-1:-1:-1;;;111223:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;111383:17;:40;;-1:-1:-1;;;;;;111383:40:0;-1:-1:-1;;;;;111383:40:0;;;;;;;;;111529:70;;;;;;;;;;;;;;;;;;;;;;;;;;;111624:14;111619:20;;27135:236;27191:9;27202:4;27228:1;27223;:6;27219:145;;-1:-1:-1;27254:18:0;;-1:-1:-1;27274:5:0;;;27246:34;;27219:145;-1:-1:-1;27321:27:0;;-1:-1:-1;27350:1:0;27313:39;;36886:353;36955:9;36966:10;;:::i;:::-;36990:14;37006:19;37029:27;37037:1;:10;;;37049:6;37029:7;:27::i;:::-;36989:67;;-1:-1:-1;36989:67:0;-1:-1:-1;37079:18:0;37071:4;:26;;;;;;;;;37067:92;;-1:-1:-1;37128:18:0;;;;;;;;;-1:-1:-1;37128:18:0;;37122:4;;-1:-1:-1;37128:18:0;-1:-1:-1;37114:33:0;;37067:92;37199:31;;;;;;;;;;;;-1:-1:-1;;37199:31:0;;-1:-1:-1;36886:353:0;-1:-1:-1;;;;36886:353:0:o;25549:187::-;25634:4;25656:43;25669:3;25664:9;;;;;;;;25680:4;25675:10;;;;;;;;25656:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;25724:3;25719:9;;;;;;;27456:258;27512:9;;27549:5;;;27571:6;;;27567:140;;27602:18;;-1:-1:-1;27622:1:0;-1:-1:-1;27594:30:0;;27567:140;-1:-1:-1;27665:26:0;;-1:-1:-1;27693:1:0;;-1:-1:-1;27657:38:0;;37810:328;37907:9;37918:4;37936:13;37951:18;;:::i;:::-;37973:20;37983:1;37986:6;37973:9;:20::i;:::-;37935:58;;-1:-1:-1;37935:58:0;-1:-1:-1;38015:18:0;38008:3;:25;;;;;;;;;38004:73;;-1:-1:-1;38058:3:0;-1:-1:-1;38063:1:0;;-1:-1:-1;38050:15:0;;38004:73;38096:34;38104:17;38113:7;38104:8;:17::i;:::-;38123:6;38096:7;:34::i;:::-;38089:41;;;;;;37810:328;;;;;;;:::o;87931:998::-;88067:4;115506:11;;88067:4;;115506:11;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;88103:16;:14;:16::i;:::-;88090:29;-1:-1:-1;88134:29:0;;88130:269;;88312:71;88323:5;88317:12;;;;;;;;88331:51;88312:4;:71::i;:::-;88304:83;-1:-1:-1;88385:1:0;;-1:-1:-1;88304:83:0;;-1:-1:-1;88304:83:0;88130:269;88419:17;-1:-1:-1;;;;;88419:32:0;;:34;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88419:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88419:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88419:34:0;;-1:-1:-1;88468:29:0;;88464:273;;88646:75;88657:5;88651:12;;;;;;;;88665:55;88646:4;:75::i;88464:273::-;88847:74;88868:10;88880:8;88890:11;88903:17;88847:20;:74::i;:::-;88840:81;;;;;115573:1;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;87931:998;;;;-1:-1:-1;87931:998:0;-1:-1:-1;;87931:998:0:o;94975:3097::-;95166:11;;:87;;;-1:-1:-1;;;95166:87:0;;95199:4;95166:87;;;;-1:-1:-1;;;;;95166:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;95093:4;;;;95166:11;;:24;;:87;;;;;;;;;;;;;;95093:4;95166:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;95166:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;95166:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;95166:87:0;;-1:-1:-1;95268:12:0;;95264:151;;95304:99;95315:27;95344:49;95395:7;95304:10;:99::i;95264:151::-;95488:10;-1:-1:-1;;;;;95476:22:0;:8;-1:-1:-1;;;;;95476:22:0;;95472:146;;;95522:84;95527:26;95555:50;95522:4;:84::i;95472:146::-;95630:34;;:::i;:::-;-1:-1:-1;;;;;96001:23:0;;;;;;:13;:23;;;;;;95993:45;;96026:11;95993:7;:45::i;:::-;95967:22;;;95952:86;;;95953:4;95952:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;96069:18:0;;-1:-1:-1;96053:12:0;;:34;;;;;;;;;96049:176;;96111:102;96122:16;96140:52;96199:4;:12;;;96194:18;;;;;;;96111:102;96104:109;;;;;;96049:176;96264:62;96269:11;96282:43;;;;;;;;96297:26;;96282:43;;;96264:4;:62::i;:::-;96237:24;;;:89;;;96366:43;;96371:11;;96366:4;:43::i;:::-;96337:26;;;:72;96466:28;:26;:28::i;:::-;96437:25;;;96422:72;;;96423:4;96422:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;96529:18:0;;-1:-1:-1;96513:12:0;;:34;;;;;;;;;96505:71;;;;;-1:-1:-1;;;96505:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;96616:88;96635:42;;;;;;;;96650:4;:25;;;96635:42;;;96679:4;:24;;;96616:18;:88::i;:::-;96589:24;;;:115;;;96746:13;;96741:45;;:4;:45::i;:::-;96717:21;;;:69;96824:11;;96837:24;;;;96819:43;;96824:11;96819:4;:43::i;:::-;96797:19;;;:65;-1:-1:-1;;;;;96926:25:0;;;;;;:13;:25;;;;;;96953:26;;;;96918:62;;96926:25;96918:7;:62::i;:::-;96890:24;;;96875:105;;;96876:4;96875:105;;;;;;;;;;;;;;;;;;;-1:-1:-1;97011:18:0;;-1:-1:-1;96995:12:0;;:34;;;;;;;;;96991:176;;97053:102;97064:16;97082:52;97141:4;:12;;;97136:18;;;;;;;96991:176;97386:21;;;;97370:13;:37;97432:19;;;;97418:11;:33;97488:22;;;;;-1:-1:-1;;;;;97462:23:0;;;-1:-1:-1;97462:23:0;;;:13;:23;;;;;;:48;;;;97549:24;;;;97521:25;;;;;;;;;;:52;;;;97659:26;;;;97628:58;;;;;;;97521:25;;97462:23;;-1:-1:-1;;;;;;;;;;;97628:58:0;;;;;;;;;;97736:24;;;;97702:59;;;;;;;97729:4;;-1:-1:-1;;;;;97702:59:0;;;-1:-1:-1;;;;;;;;;;;97702:59:0;;;;;;;;97806:24;;;;97832:21;;;;97777:77;;;97799:4;97777:77;;;;;;;;;;;;;;;;;;;;;;;;;;98049:14;98037:27;94975:3097;-1:-1:-1;;;;;;;94975:3097:0:o;77461:524::-;77535:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;77565:16;:14;:16::i;:::-;77552:29;-1:-1:-1;77596:29:0;;77592:249;;77768:61;77779:5;77773:12;;;;;;;;77787:41;77768:4;:61::i;77592:249::-;77940:37;77952:10;77964:12;77940:11;:37::i;69578:527::-;69652:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;69682:16;:14;:16::i;:::-;69669:29;-1:-1:-1;69713:29:0;;69709:249;;69885:61;69896:5;69890:12;;;;;;;69709:249;70057:40;70069:10;70081:12;70095:1;70057:11;:40::i;82649:594::-;82751:4;115506:11;;82751:4;;115506:11;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;82787:16;:14;:16::i;:::-;82774:29;-1:-1:-1;82818:29:0;;82814:260;;82991:67;83002:5;82996:12;;;;;;;;83010:47;82991:4;:67::i;:::-;82983:79;-1:-1:-1;83060:1:0;;-1:-1:-1;82983:79:0;;-1:-1:-1;82983:79:0;82814:260;83184:51;83201:10;83213:8;83223:11;83184:16;:51::i;:::-;83177:58;;;;;115573:1;115585:11;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;82649:594;;;;-1:-1:-1;82649:594:0;-1:-1:-1;82649:594:0:o;102326:985::-;102476:5;;102407:4;;102476:5;;;-1:-1:-1;;;;;102476:5:0;102462:10;:19;102458:127;;102505:68;102510:18;102530:42;102505:4;:68::i;102458:127::-;102701:19;:17;:19::i;:::-;102676:21;;:44;102672:156;;102744:72;102749:22;102773:42;102744:4;:72::i;102672:156::-;7870:4;102900:24;:51;102896:157;;;102975:66;102980:15;102997:43;102975:4;:66::i;102896:157::-;103097:21;;;103129:48;;;;103195:68;;;;;;;;;;;;;;;;;;;;;;;;;103288:14;103283:20;;103567:590;103644:4;115506:11;;;;115498:34;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;-1:-1:-1;;;115498:34:0;;;;;;;;;;;;;;;115557:5;115543:19;;-1:-1:-1;;115543:19:0;;;103674:16;:14;:16::i;:::-;103661:29;-1:-1:-1;103705:29:0;;103701:274;;103896:67;103907:5;103901:12;;;;;;;;103915:47;103896:4;:67::i;103701:274::-;104098:28;104116:9;104098:17;:28::i;:::-;-1:-1:-1;104086:40:0;-1:-1:-1;;115585:11:0;:18;;-1:-1:-1;;115585:18:0;115599:4;115585:18;;;103567:590;;-1:-1:-1;103567:590:0:o;121088:245::-;121155:4;121206:10;-1:-1:-1;;;;;121206:18:0;;;121198:46;;;;;-1:-1:-1;;;121198:46:0;;;;;;;;;;;;-1:-1:-1;;;121198:46:0;;;;;;;;;;;;;;;121276:6;121263:9;:19;121255:46;;;;;-1:-1:-1;;;121255:46:0;;;;;;;;;;;;-1:-1:-1;;;121255:46:0;;;;;;;;;;;;;;;-1:-1:-1;121319:6:0;121088:245;-1:-1:-1;121088:245:0:o;39400:337::-;39488:9;39499:4;39517:13;39532:19;;:::i;:::-;39555:31;39570:6;39578:7;39555:14;:31::i;27783:271::-;27854:9;27865:4;27883:14;27899:8;27911:13;27919:1;27922;27911:7;:13::i;:::-;27882:42;;-1:-1:-1;27882:42:0;-1:-1:-1;27949:18:0;27941:4;:26;;;;;;;;;27937:75;;-1:-1:-1;27992:4:0;-1:-1:-1;27998:1:0;;-1:-1:-1;27984:16:0;;27937:75;28031:15;28039:3;28044:1;28031:7;:15::i;35645:515::-;35706:9;35717:10;;:::i;:::-;35741:14;35757:20;35781:22;35789:3;28526:4;35781:7;:22::i;:::-;35740:63;;-1:-1:-1;35740:63:0;-1:-1:-1;35826:18:0;35818:4;:26;;;;;;;;;35814:92;;-1:-1:-1;35875:18:0;;;;;;;;;-1:-1:-1;35875:18:0;;35869:4;;-1:-1:-1;35875:18:0;-1:-1:-1;35861:33:0;;35814:92;35919:14;35935:13;35952:31;35960:15;35977:5;35952:7;:31::i;:::-;35918:65;;-1:-1:-1;35918:65:0;-1:-1:-1;36006:18:0;35998:4;:26;;;;;;;;;35994:92;;-1:-1:-1;36055:18:0;;;;;;;;;-1:-1:-1;36055:18:0;;36049:4;;-1:-1:-1;36055:18:0;-1:-1:-1;36041:33:0;;-1:-1:-1;;36041:33:0;35994:92;36126:25;;;;;;;;;;;;-1:-1:-1;;36126:25:0;;-1:-1:-1;35645:515:0;-1:-1:-1;;;;;;35645:515:0:o;28922:213::-;29104:12;28526:4;29104:23;;;28922:213::o;83948:3454::-;84128:11;;:75;;;-1:-1:-1;;;84128:75:0;;84167:4;84128:75;;;;-1:-1:-1;;;;;84128:75:0;;;;;;;;;;;;;;;;;;;;;;84043:4;;;;;;84128:11;;;:30;;:75;;;;;;;;;;;;;;;84043:4;84128:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;84128:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84128:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84128:75:0;;-1:-1:-1;84218:12:0;;84214:153;;84255:96;84266:27;84295:46;84343:7;84255:10;:96::i;:::-;84247:108;-1:-1:-1;84353:1:0;;-1:-1:-1;84247:108:0;;-1:-1:-1;84247:108:0;84214:153;84486:19;:17;:19::i;:::-;84461:21;;:44;84457:159;;84530:70;84535:22;84559:40;84530:4;:70::i;84457:159::-;84628:32;;:::i;:::-;-1:-1:-1;;;;;84774:24:0;;;;;;:14;:24;;;;;:38;;;84753:18;;;:59;84943:37;84789:8;84943:27;:37::i;:::-;84920:19;;;84905:75;;;84906:12;;;84905:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;85011:18:0;;-1:-1:-1;84995:4:0;:12;;;:34;;;;;;;;;84991:192;;85054:113;85065:16;85083:63;85153:4;:12;;;85148:18;;;;;;;85054:113;85046:125;-1:-1:-1;85169:1:0;;-1:-1:-1;85046:125:0;;-1:-1:-1;;85046:125:0;84991:192;-1:-1:-1;;85265:11:0;:23;85261:157;;;85324:19;;;;85305:16;;;:38;85261:157;;;85376:16;;;:30;;;85261:157;86018:37;86031:5;86038:4;:16;;;86018:12;:37::i;:::-;85993:22;;;:62;;;86365:19;;;;86357:52;;:7;:52::i;:::-;86331:22;;;86316:93;;;86317:12;;;86316:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;86444:18:0;;-1:-1:-1;86428:4:0;:12;;;:34;;;;;;;;;86420:105;;;;-1:-1:-1;;;86420:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86577:45;86585:12;;86599:4;:22;;;86577:7;:45::i;:::-;86553:20;;;86538:84;;;86539:12;;;86538:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;86657:18:0;;-1:-1:-1;86641:4:0;:12;;;:34;;;;;;;;;86633:96;;;;-1:-1:-1;;;86633:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86849:22;;;;;;-1:-1:-1;;;;;86812:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;86923:11;;86882:38;;;;:52;;;;86960:20;;;;86945:12;:35;;;87070:22;;;;87094;;87041:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87371:22;;;87354:14;;87371:22;;-1:-1:-1;83948:3454:0;-1:-1:-1;;;;;83948:3454:0:o;121341:171::-;121485:19;;-1:-1:-1;;;;;121485:11:0;;;:19;;;;;121497:6;;121485:19;;;;121497:6;121485:11;:19;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;71916:5277:0;72023:4;72048:19;;;:42;;-1:-1:-1;72071:19:0;;72048:42;72040:107;;;;-1:-1:-1;;;72040:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;72160:27;;:::i;:::-;72304:28;:26;:28::i;:::-;72275:25;;;72260:72;;;72261:12;;;72260:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;72363:18:0;;-1:-1:-1;72347:4:0;:12;;;:34;;;;;;;;;72343:168;;72405:94;72416:16;72434:44;72485:4;:12;;;72480:18;;;;;;;72405:94;72398:101;;;;;72343:168;72565:18;;72561:1955;;-1:-1:-1;;72845:14:0;:26;72841:185;;;-1:-1:-1;;;;;72912:23:0;;;;;;:13;:23;;;;;;72892:17;;;:43;72841:185;;;72976:17;;;:34;;;72841:185;73078:80;73096:42;;;;;;;;73111:4;:25;;;73096:42;;;73140:4;:17;;;73078;:80::i;:::-;73057:17;;;73042:116;;;73043:12;;;73042:116;;;;;;;;;;;;;;;;;;;-1:-1:-1;73193:18:0;;-1:-1:-1;73177:4:0;:12;;;:34;;;;;;;;;73173:185;;73239:103;73250:16;73268:53;73328:4;:12;;;73323:18;;;;;;;73173:185;72561:1955;;;-1:-1:-1;;73626:14:0;:26;73622:883;;;-1:-1:-1;;;;;73693:23:0;;;;;;:13;:23;;;;;;;;;;73673:17;;;:43;;;73791:42;;;;;;;73806:25;;;;73791:42;;73835:17;;73773:80;;73791:42;73773:17;:80::i;73622:883::-;74105:17;;;:34;;;74235:42;;;;;;;;-1:-1:-1;;;74250:25:0;74235:42;;74196:82;;74125:14;;74196:22;:82::i;:::-;74175:17;;;74160:118;;;74161:12;;;74160:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;74317:18:0;;-1:-1:-1;74301:4:0;:12;;;:34;;;;;;;;;74297:193;;74367:103;74378:16;74396:53;74456:4;:12;;;74451:18;;;;;;;74297:193;74585:11;;74636:17;;;;74585:69;;;-1:-1:-1;;;74585:69:0;;74619:4;74585:69;;;;-1:-1:-1;;;;;74585:69:0;;;;;;;;;;;;;;;;74570:12;;74585:11;;;;;:25;;:69;;;;;;;;;;;;;;;74570:12;74585:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;74585:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74585:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74585:69:0;;-1:-1:-1;74669:12:0;;74665:142;;74705:90;74716:27;74745:40;74787:7;74705:10;:90::i;:::-;74698:97;;;;;;74665:142;74926:19;:17;:19::i;:::-;74901:21;;:44;74897:148;;74969:64;74974:22;74998:34;74969:4;:64::i;74897:148::-;75340:39;75348:11;;75361:4;:17;;;75340:7;:39::i;:::-;75317:19;;;75302:77;;;75303:12;;;75302:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;75410:18:0;;-1:-1:-1;75394:4:0;:12;;;:34;;;;;;;;;75390:178;;75452:104;75463:16;75481:54;75542:4;:12;;;75537:18;;;;;;;75390:178;-1:-1:-1;;;;;75628:23:0;;;;;;:13;:23;;;;;;75653:17;;;;75620:51;;75628:23;75620:7;:51::i;:::-;75595:21;;;75580:91;;;75581:12;;;75580:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;75702:18:0;;-1:-1:-1;75686:4:0;:12;;;:34;;;;;;;;;75682:181;;75744:107;75755:16;75773:57;75837:4;:12;;;75832:18;;;;;;;75682:181;75961:4;:17;;;75944:14;:12;:14::i;:::-;:34;75940:155;;;76002:81;76007:29;76038:44;76002:4;:81::i;75940:155::-;76593:42;76607:8;76617:4;:17;;;76593:13;:42::i;:::-;76728:19;;;;76714:11;:33;76784:21;;;;-1:-1:-1;;;;;76758:23:0;;;;;;:13;:23;;;;;;;;;:47;;;;76917:17;;;;76883:52;;;;;;;76910:4;;-1:-1:-1;;;;;;;;;;;76883:52:0;;;;;;;76968:17;;;;76987;;;;;76951:54;;;-1:-1:-1;;;;;76951:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77058:11;;77108:17;;;;77127;;;;77058:87;;;-1:-1:-1;;;77058:87:0;;77091:4;77058:87;;;;-1:-1:-1;;;;;77058:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;77058:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77170:14:0;;-1:-1:-1;77165:20:0;;-1:-1:-1;;77165:20:0;;77158:27;71916:5277;-1:-1:-1;;;;;;71916:5277:0:o;26347:343::-;26403:9;;26435:6;26431:69;;-1:-1:-1;26466:18:0;;-1:-1:-1;26466:18:0;26458:30;;26431:69;26521:5;;;26525:1;26521;:5;:1;26543:5;;;;;:10;26539:144;;-1:-1:-1;26578:26:0;;-1:-1:-1;26606:1:0;;-1:-1:-1;26570:38:0;;26539:144;26649:18;;-1:-1:-1;26669:1:0;-1:-1:-1;26641:30:0;;26785:215;26841:9;;26873:6;26869:77;;-1:-1:-1;26904:26:0;;-1:-1:-1;26932:1:0;26896:38;;26869:77;26966:18;26990:1;26986;:5;;;;;;26958:34;;;;26785:215;;;;;:::o;89543:3648::-;89766:11;;:112;;;-1:-1:-1;;;89766:112:0;;89809:4;89766:112;;;;-1:-1:-1;;;;;89766:112:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;89683:4;;;;;;89766:11;;;:34;;:112;;;;;;;;;;;;;;;89683:4;89766:11;:112;;;5:2:-1;;;;30:1;27;20:12;5:2;89766:112:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;89766:112:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;89766:112:0;;-1:-1:-1;89893:12:0;;89889:150;;89930:93;89941:27;89970:43;90015:7;89930:10;:93::i;:::-;89922:105;-1:-1:-1;90025:1:0;;-1:-1:-1;89922:105:0;;-1:-1:-1;89922:105:0;89889:150;90158:19;:17;:19::i;:::-;90133:21;;:44;90129:156;;90202:67;90207:22;90231:37;90202:4;:67::i;90129:156::-;90442:19;:17;:19::i;:::-;90397:17;-1:-1:-1;;;;;90397:39:0;;:41;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90397:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90397:41:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90397:41:0;:64;90393:187;;90486:78;90491:22;90515:48;90486:4;:78::i;90393:187::-;90653:10;-1:-1:-1;;;;;90641:22:0;:8;-1:-1:-1;;;;;90641:22:0;;90637:145;;;90688:78;90693:26;90721:44;90688:4;:78::i;90637:145::-;90837:16;90833:147;;90878:86;90883:36;90921:42;90878:4;:86::i;90833:147::-;-1:-1:-1;;91036:11:0;:23;91032:158;;;91084:90;91089:36;91127:46;91084:4;:90::i;91032:158::-;91246:21;91269:22;91295:51;91312:10;91324:8;91334:11;91295:16;:51::i;:::-;91245:101;;-1:-1:-1;91245:101:0;-1:-1:-1;91361:40:0;;91357:163;;91426:78;91437:16;91431:23;;;;;;;;91456:47;91426:4;:78::i;:::-;91418:90;-1:-1:-1;91506:1:0;;-1:-1:-1;91418:90:0;;-1:-1:-1;;;91418:90:0;91357:163;91777:11;;:103;;;-1:-1:-1;;;91777:103:0;;91827:4;91777:103;;;;-1:-1:-1;;;;;91777:103:0;;;;;;;;;;;;;;;91734:21;;;;91777:11;;;:41;;:103;;;;;;;;;;;;:11;:103;;;5:2:-1;;;;30:1;27;20:12;5:2;91777:103:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91777:103:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91777:103:0;;;;;;;;;-1:-1:-1;91777:103:0;-1:-1:-1;91899:40:0;;91891:104;;;;-1:-1:-1;;;91891:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92130:11;92089:17;-1:-1:-1;;;;;92089:27:0;;92117:8;92089:37;;;;;;;;;;;;;-1:-1:-1;;;;;92089:37:0;-1:-1:-1;;;;;92089:37:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;92089:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92089:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92089:37:0;:52;;92081:89;;;;;-1:-1:-1;;;92081:89:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;92299:15;-1:-1:-1;;;;;92329:43:0;;92367:4;92329:43;92325:256;;;92402:63;92424:4;92431:10;92443:8;92453:11;92402:13;:63::i;:::-;92389:76;;92325:256;;;92511:58;;;-1:-1:-1;;;92511:58:0;;-1:-1:-1;;;;;92511:58:0;;;;;;;;;;;;;;;;;;;;;;:23;;;;;;:58;;;;;;;;;;;;;;;-1:-1:-1;92511:23:0;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;92511:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92511:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92511:58:0;;-1:-1:-1;92325:256:0;92687:34;;92679:67;;;;;-1:-1:-1;;;92679:67:0;;;;;;;;;;;;-1:-1:-1;;;92679:67:0;;;;;;;;;;;;;;;92811:97;;;-1:-1:-1;;;;;92811:97:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93148:14;93135:48;-1:-1:-1;93165:17:0;;-1:-1:-1;;;;;;89543:3648:0;;;;;;;;:::o;32533:121::-;32592:4;28526;32616:19;32621:1;32624;:10;;;32616:4;:19::i;:::-;:30;;;;;;;32533:121;-1:-1:-1;;;32533:121:0:o;31931:120::-;31984:4;32008:35;32013:1;32016;32008:35;;;;;;;;;;;;;-1:-1:-1;;;32008:35:0;;;:4;:35::i;29248:174::-;29326:4;29343:18;;:::i;:::-;29364:15;29369:1;29372:6;29364:4;:15::i;:::-;29343:36;;29397:17;29406:7;29397:8;:17::i;31296:116::-;31349:4;31373:31;31378:1;31381;31373:31;;;;;;;;;;;;;-1:-1:-1;;;31373:31:0;;;:4;:31::i;78412:3079::-;78570:11;;:64;;;-1:-1:-1;;;78570:64:0;;78604:4;78570:64;;;;-1:-1:-1;;;;;78570:64:0;;;;;;;;;;;;;;;78496:4;;;;78570:11;;:25;;:64;;;;;;;;;;;;;;78496:4;78570:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;78570:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78570:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;78570:64:0;;-1:-1:-1;78649:12:0;;78645:142;;78685:90;78696:27;78725:40;78767:7;78685:10;:90::i;:::-;78678:97;;;;;78645:142;78906:19;:17;:19::i;:::-;78881:21;;:44;78877:148;;78949:64;78954:22;78978:34;78949:4;:64::i;78877:148::-;79134:12;79117:14;:12;:14::i;:::-;:29;79113:143;;;79170:74;79175:29;79206:37;79170:4;:74::i;79113:143::-;79268:27;;:::i;:::-;79583:37;79611:8;79583:27;:37::i;:::-;79560:19;;;79545:75;;;79546:4;79545:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;79651:18:0;;-1:-1:-1;79635:12:0;;:34;;;;;;;;;79631:181;;79693:107;79704:16;79722:57;79786:4;:12;;;79781:18;;;;;;;79693:107;79686:114;;;;;;79631:181;79865:42;79873:4;:19;;;79894:12;79865:7;:42::i;:::-;79839:22;;;79824:83;;;79825:4;79824:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;79938:18:0;;-1:-1:-1;79922:12:0;;:34;;;;;;;;;79918:188;;79980:114;79991:16;80009:64;80080:4;:12;;;80075:18;;;;;;;79918:188;80157:35;80165:12;;80179;80157:7;:35::i;:::-;80133:20;;;80118:74;;;80119:4;80118:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;80223:18:0;;-1:-1:-1;80207:12:0;;:34;;;;;;;;;80203:179;;80265:105;80276:16;80294:55;80356:4;:12;;;80351:18;;;;;;;80203:179;80876:37;80890:8;80900:12;80876:13;:37::i;:::-;81033:22;;;;;;-1:-1:-1;;;;;80996:24:0;;;;;;:14;:24;;;;;;;;:59;;;81107:11;;81066:38;;;;:52;;;;81144:20;;;;;81129:12;:35;;;81251:22;;81220:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81468:14;81456:27;78412:3079;-1:-1:-1;;;;;78412:3079:0:o;104497:1645::-;104558:4;104564;104625:21;104657:20;104813:19;:17;:19::i;:::-;104788:21;;:44;104784:169;;104857:66;104862:22;104886:36;104857:4;:66::i;:::-;104849:92;-1:-1:-1;104925:15:0;-1:-1:-1;104849:92:0;;-1:-1:-1;104849:92:0;104784:169;105544:35;105557:10;105569:9;105544:12;:35::i;:::-;105526:53;;105627:15;105611:13;;:31;105592:50;;105717:13;;105697:16;:33;;105689:78;;;;;-1:-1:-1;;;105689:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105844:13;:32;;;105965:60;;;105979:10;105965:60;;;;;;;;;;;;;;;;;;;;;;;;;106101:14;106088:46;-1:-1:-1;106118:15:0;-1:-1:-1;;104497:1645:0;;;:::o;38669:620::-;38749:9;38760:10;;:::i;:::-;39067:14;39083;39101:25;28526:4;39119:6;39101:7;:25::i;:::-;39066:60;;-1:-1:-1;39066:60:0;-1:-1:-1;39149:18:0;39141:4;:26;;;;;;;;;39137:92;;-1:-1:-1;39198:18:0;;;;;;;;;-1:-1:-1;39198:18:0;;39192:4;;-1:-1:-1;39198:18:0;-1:-1:-1;39184:33:0;;39137:92;39246:35;39253:9;39264:7;:16;;;39246:6;:35::i;33129:122::-;33182:4;33206:37;33211:1;33214;33206:37;;;;;;;;;;;;;;;;;:4;:37::i;32059:158::-;32140:4;32173:12;32165:6;;;;32157:29;;;;-1:-1:-1;;;32157:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;32157:29:0;-1:-1:-1;;;32204:5:0;;;32059:158::o;32392:133::-;32451:10;;:::i;:::-;32481:36;;;;;;;;32496:19;32501:1;:10;;;32513:1;32496:4;:19::i;:::-;32481:36;;32474:43;32392:133;-1:-1:-1;;;32392:133:0:o;31420:179::-;31501:4;31527:5;;;31559:12;31551:6;;;;31543:29;;;;-1:-1:-1;;;31543:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;31543:29:0;-1:-1:-1;31590:1:0;31420:179;-1:-1:-1;;;;31420:179:0:o;33259:250::-;33340:4;33361:6;;;:16;;-1:-1:-1;33371:6:0;;33361:16;33357:57;;;-1:-1:-1;33401:1:0;33394:8;;33357:57;33433:5;;;33437:1;33433;:5;:1;33457:5;;;;;:10;33469:12;33449:33;;;;;-1:-1:-1;;;33449:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;115810:6425:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;115810:6425:0;;;-1:-1:-1;115810:6425:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115810:6425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115810:6425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115810:6425:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;115810:6425:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://84dce131614b93131658e092b13f1d69dc28eeda196966c1db4472b9e90d98fa
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.