Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
_set Pending Adm... | 16879688 | 619 days ago | IN | 0 ETH | 0.00040368 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
OErc20Delegate
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-01 */ // File: contracts/ComptrollerInterface.sol pragma solidity ^0.5.16; contract ComptrollerInterface { /// @notice Indicator that this is a Comptroller contract (for inspection) bool public constant isComptroller = true; /*** Assets You Are In ***/ function enterMarkets(address[] calldata oTokens) external returns (uint[] memory); function exitMarket(address oToken) external returns (uint); /*** Policy Hooks ***/ function mintAllowed(address oToken, address minter, uint mintAmount) external returns (uint); function mintVerify(address oToken, address minter, uint mintAmount, uint mintTokens) external; function redeemAllowed(address oToken, address redeemer, uint redeemTokens) external returns (uint); function redeemVerify(address oToken, address redeemer, uint redeemAmount, uint redeemTokens) external; function borrowAllowed(address oToken, address borrower, uint borrowAmount) external returns (uint); function borrowVerify(address oToken, address borrower, uint borrowAmount) external; function repayBorrowAllowed( address oToken, address payer, address borrower, uint repayAmount) external returns (uint); function repayBorrowVerify( address oToken, address payer, address borrower, uint repayAmount, uint borrowerIndex) external; function liquidateBorrowAllowed( address oTokenBorrowed, address oTokenCollateral, address liquidator, address borrower, uint repayAmount) external returns (uint); function liquidateBorrowVerify( address oTokenBorrowed, address oTokenCollateral, address liquidator, address borrower, uint repayAmount, uint seizeTokens) external; function seizeAllowed( address oTokenCollateral, address oTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external returns (uint); function seizeVerify( address oTokenCollateral, address oTokenBorrowed, address liquidator, address borrower, uint seizeTokens) external; function transferAllowed(address oToken, address src, address dst, uint transferTokens) external returns (uint); function transferVerify(address oToken, address src, address dst, uint transferTokens) external; /*** Liquidity/Liquidation Calculations ***/ function liquidateCalculateSeizeTokens( address oTokenBorrowed, address oTokenCollateral, uint repayAmount) external view returns (uint, uint); } // File: contracts/ComptrollerExInterface.sol pragma solidity ^0.5.16; contract ComptrollerExInterface { function liquidateCalculateSeizeTokensEx( address oTokenBorrowed, address oTokenExCollateral, uint repayAmount) external view returns (uint, uint, uint); function getLiquidationSeizeIndexes() external view returns (uint[] memory) {} } interface ILiquidationProxy { function isNFTLiquidation() external view returns(bool); function extraRepayAmount() external view returns(uint); function seizeIndexes() external view returns(uint[] memory); } // File: contracts/InterestRateModel.sol pragma solidity ^0.5.16; /** * @title Onyx's InterestRateModel Interface * @author Onyx */ contract InterestRateModel { /// @notice Indicator that this is an InterestRateModel contract (for inspection) bool public constant isInterestRateModel = true; /** * @notice Calculates the current borrow interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @return The borrow rate per block (as a percentage, and scaled by 1e18) */ function getBorrowRate(uint cash, uint borrows, uint reserves) external view returns (uint); /** * @notice Calculates the current supply interest rate per block * @param cash The total amount of cash the market has * @param borrows The total amount of borrows the market has outstanding * @param reserves The total amount of reserves the market has * @param reserveFactorMantissa The current reserve factor the market has * @return The supply rate per block (as a percentage, and scaled by 1e18) */ function getSupplyRate(uint cash, uint borrows, uint reserves, uint reserveFactorMantissa) external view returns (uint); } // File: contracts/EIP20NonStandardInterface.sol pragma solidity ^0.5.16; /** * @title EIP20NonStandardInterface * @dev Version of ERC20 with no return values for `transfer` and `transferFrom` * See https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ interface EIP20NonStandardInterface { /** * @notice Get the total number of tokens in circulation * @return The supply of tokens */ function totalSupply() external view returns (uint256); /** * @notice Gets the balance of the specified address * @param owner The address from which the balance will be retrieved * @return The balance */ function balanceOf(address owner) external view returns (uint256 balance); /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transfer` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `msg.sender` to `dst` * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transfer(address dst, uint256 amount) external; /// /// !!!!!!!!!!!!!! /// !!! NOTICE !!! `transferFrom` does not return a value, in violation of the ERC-20 specification /// !!!!!!!!!!!!!! /// /** * @notice Transfer `amount` tokens from `src` to `dst` * @param src The address of the source account * @param dst The address of the destination account * @param amount The number of tokens to transfer */ function transferFrom(address src, address dst, uint256 amount) external; /** * @notice Approve `spender` to transfer up to `amount` from `src` * @dev This will overwrite the approval amount for `spender` * and is subject to issues noted [here](https://eips.ethereum.org/EIPS/eip-20#approve) * @param spender The address of the account which may transfer tokens * @param amount The number of tokens that are approved * @return Whether or not the approval succeeded */ function approve(address spender, uint256 amount) external returns (bool success); /** * @notice Get the current allowance from `owner` for `spender` * @param owner The address of the account which owns the tokens to be spent * @param spender The address of the account which may transfer tokens * @return The number of tokens allowed to be spent */ function allowance(address owner, address spender) external view returns (uint256 remaining); event Transfer(address indexed from, address indexed to, uint256 amount); event Approval(address indexed owner, address indexed spender, uint256 amount); } // File: contracts/OTokenInterfaces.sol pragma solidity ^0.5.16; contract OTokenStorage { /** * @dev Guard variable for re-entrancy checks */ bool internal _notEntered; /** * @notice EIP-20 token name for this token */ string public name; /** * @notice EIP-20 token symbol for this token */ string public symbol; /** * @notice EIP-20 token decimals for this token */ uint8 public decimals; /** * @notice Maximum borrow rate that can ever be applied (.0005% / block) */ uint internal constant borrowRateMaxMantissa = 0.0005e16; /** * @notice Maximum fraction of interest that can be set aside for reserves */ uint internal constant reserveFactorMaxMantissa = 1e18; /** * @notice Administrator for this contract */ address payable public admin; /** * @notice Pending administrator for this contract */ address payable public pendingAdmin; /** * @notice Contract which oversees inter-oToken operations */ ComptrollerInterface public comptroller; /** * @notice Model which tells what the current interest rate should be */ InterestRateModel public interestRateModel; /** * @notice Initial exchange rate used when minting the first OTokens (used when totalSupply = 0) */ uint internal initialExchangeRateMantissa; /** * @notice Fraction of interest currently set aside for reserves */ uint public reserveFactorMantissa; /** * @notice Block number that interest was last accrued at */ uint public accrualBlockNumber; /** * @notice Accumulator of the total earned interest rate since the opening of the market */ uint public borrowIndex; /** * @notice Total amount of outstanding borrows of the underlying in this market */ uint public totalBorrows; /** * @notice Total amount of reserves of the underlying held in this market */ uint public totalReserves; /** * @notice Total number of tokens in circulation */ uint public totalSupply; /** * @notice Official record of token balances for each account */ mapping (address => uint) internal accountTokens; /** * @notice Approved token transfer amounts on behalf of others */ mapping (address => mapping (address => uint)) internal transferAllowances; /** * @notice Container for borrow balance information * @member principal Total balance (with accrued interest), after applying the most recent balance-changing action * @member interestIndex Global borrowIndex as of the most recent balance-changing action */ struct BorrowSnapshot { uint principal; uint interestIndex; } /** * @notice Mapping of account addresses to outstanding borrow balances */ mapping(address => BorrowSnapshot) internal accountBorrows; /** * @notice Share of seized collateral that is added to reserves */ uint public constant protocolSeizeShareMantissa = 2.8e16; //2.8% } contract OTokenInterface is OTokenStorage { /** * @notice Indicator that this is a OToken contract (for inspection) */ bool public constant isOToken = true; /*** Market Events ***/ /** * @notice Event emitted when interest is accrued */ event AccrueInterest(uint cashPrior, uint interestAccumulated, uint borrowIndex, uint totalBorrows); /** * @notice Event emitted when tokens are minted */ event Mint(address minter, uint mintAmount, uint mintTokens); /** * @notice Event emitted when tokens are redeemed */ event Redeem(address redeemer, uint redeemAmount, uint redeemTokens); /** * @notice Event emitted when underlying is borrowed */ event Borrow(address borrower, uint borrowAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is repaid */ event RepayBorrow(address payer, address borrower, uint repayAmount, uint accountBorrows, uint totalBorrows); /** * @notice Event emitted when a borrow is liquidated */ event LiquidateBorrow(address liquidator, address borrower, uint repayAmount, address oTokenCollateral, uint seizeTokens); /*** Admin Events ***/ /** * @notice Event emitted when pendingAdmin is changed */ event NewPendingAdmin(address oldPendingAdmin, address newPendingAdmin); /** * @notice Event emitted when pendingAdmin is accepted, which means admin is updated */ event NewAdmin(address oldAdmin, address newAdmin); /** * @notice Event emitted when comptroller is changed */ event NewComptroller(ComptrollerInterface oldComptroller, ComptrollerInterface newComptroller); /** * @notice Event emitted when interestRateModel is changed */ event NewMarketInterestRateModel(InterestRateModel oldInterestRateModel, InterestRateModel newInterestRateModel); /** * @notice Event emitted when the reserve factor is changed */ event NewReserveFactor(uint oldReserveFactorMantissa, uint newReserveFactorMantissa); /** * @notice Event emitted when the reserves are added */ event ReservesAdded(address benefactor, uint addAmount, uint newTotalReserves); /** * @notice Event emitted when the reserves are reduced */ event ReservesReduced(address admin, uint reduceAmount, uint newTotalReserves); /** * @notice EIP20 Transfer event */ event Transfer(address indexed from, address indexed to, uint amount); /** * @notice EIP20 Approval event */ event Approval(address indexed owner, address indexed spender, uint amount); /** * @notice Failure event */ event Failure(uint error, uint info, uint detail); /*** User Interface ***/ function transfer(address dst, uint amount) external returns (bool); function transferFrom(address src, address dst, uint amount) external returns (bool); function approve(address spender, uint amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint); function balanceOf(address owner) external view returns (uint); function balanceOfUnderlying(address owner) external returns (uint); function getAccountSnapshot(address account) external view returns (uint, uint, uint, uint); function borrowRatePerBlock() external view returns (uint); function supplyRatePerBlock() external view returns (uint); function totalBorrowsCurrent() external returns (uint); function borrowBalanceCurrent(address account) external returns (uint); function borrowBalanceStored(address account) public view returns (uint); function exchangeRateCurrent() public returns (uint); function exchangeRateStored() public view returns (uint); function getCash() external view returns (uint); function accrueInterest() public returns (uint); function seize(address liquidator, address borrower, uint seizeTokens) external returns (uint); /*** Admin Functions ***/ function _setPendingAdmin(address payable newPendingAdmin) external returns (uint); function _acceptAdmin() external returns (uint); function _setComptroller(ComptrollerInterface newComptroller) public returns (uint); function _setReserveFactor(uint newReserveFactorMantissa) external returns (uint); function _reduceReserves(uint reduceAmount) external returns (uint); function _setInterestRateModel(InterestRateModel newInterestRateModel) public returns (uint); } contract OErc20Storage { /** * @notice Underlying asset for this OToken */ address public underlying; } contract OErc20Interface is OErc20Storage { /*** User Interface ***/ function mint(uint mintAmount) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint); function sweepToken(EIP20NonStandardInterface token) external; /*** Admin Functions ***/ function _addReserves(uint addAmount) external returns (uint); } contract OErc721Storage { /** * @notice Underlying asset for this OToken */ address public underlying; /** * @dev User deposit tokens map */ mapping (address => uint256[]) public userTokens; } contract OErc721Interface is OErc721Storage { /*** User Interface ***/ function mint(uint tokenId) external returns (uint); function redeem(uint redeemTokens) external returns (uint); function mints(uint[] calldata tokenIds) external returns (uint[] memory); function redeems(uint[] calldata redeemTokenIds) external returns (uint[] memory); function redeemUnderlying(uint redeemAmount) external returns (uint); function borrow(uint borrowAmount) external returns (uint); function repayBorrow(uint repayAmount) external returns (uint); function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint); function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint); function sweepToken(EIP20NonStandardInterface token) external; } contract ODelegationStorage { /** * @notice Implementation address for this contract */ address public implementation; } contract ODelegatorInterface is ODelegationStorage { /** * @notice Emitted when implementation is changed */ event NewImplementation(address oldImplementation, address newImplementation); /** * @notice Called by the admin to update the implementation of the delegator * @param implementation_ The address of the new implementation for delegation * @param allowResign Flag to indicate whether to call _resignImplementation on the old implementation * @param becomeImplementationData The encoded bytes data to be passed to _becomeImplementation */ function _setImplementation(address implementation_, bool allowResign, bytes memory becomeImplementationData) public; } contract ODelegateInterface is ODelegationStorage { /** * @notice Called by the delegator on a delegate to initialize it for duty * @dev Should revert if any issues arise which make it unfit for delegation * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public; /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public; } // File: contracts/ErrorReporter.sol pragma solidity ^0.5.16; 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 } /** * @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.16; /** * @title Careful Math * @author Onyx * @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.16; /** * @title Exponential module for storing fixed-precision decimals * @author Onyx * @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.16; /** * @title Exponential module for storing fixed-precision decimals * @author Onyx * @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.16; /** * @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/OToken.sol pragma solidity ^0.5.16; /** * @title Onyx's OToken Contract * @notice Abstract base for OTokens * @author Onyx */ contract OToken is OTokenInterface, 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(accrualBlockNumber == 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 number and borrow index (block number mocks depend on comptroller being set) accrualBlockNumber = getBlockNumber(); borrowIndex = mantissaOne; // Set the interest rate model (depends on block number / 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 srcTokensNew; uint dstTokensNew; (mathErr, allowanceNew) = subUInt(startingAllowance, tokens); if (mathErr != MathError.NO_ERROR) { return fail(Error.MATH_ERROR, FailureInfo.TRANSFER_NOT_ALLOWED); } (mathErr, srcTokensNew) = 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] = srcTokensNew; 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 oTokenBalance = 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), oTokenBalance, borrowBalance, exchangeRateMantissa); } /** * @dev Function to simply retrieve block number * This exists mainly for inheriting test contracts to stub this result. */ function getBlockNumber() internal view returns (uint) { return block.number; } /** * @notice Returns the current per-block borrow interest rate for this oToken * @return The borrow interest rate per block, scaled by 1e18 */ function borrowRatePerBlock() external view returns (uint) { return interestRateModel.getBorrowRate(getCashPrior(), totalBorrows, totalReserves); } /** * @notice Returns the current per-block supply interest rate for this oToken * @return The supply interest rate per block, scaled by 1e18 */ function supplyRatePerBlock() external view returns (uint) { 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 OToken * @dev This function does not accrue interest before calculating the exchange rate * @return Calculated exchange rate scaled by 1e18 */ function exchangeRateStored() public view returns (uint) { (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 OToken * @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 oToken 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 number */ uint currentBlockNumber = getBlockNumber(); uint accrualBlockNumberPrior = accrualBlockNumber; /* Short-circuit accumulating 0 interest */ if (accrualBlockNumberPrior == currentBlockNumber) { 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(currentBlockNumber, accrualBlockNumberPrior); 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 */ accrualBlockNumber = currentBlockNumber; 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 oTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return (uint, 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 oTokens 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 number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { 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 oToken must handle variations between ERC-20 and ETH 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 oToken holds an additional `actualMintAmount` * of cash. */ vars.actualMintAmount = doTransferIn(minter, mintAmount); /* * We get the current exchange rate and calculate the number of oTokens 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 oTokens 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 oTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of oTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function 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 oTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to receive from redeeming oTokens * @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 oTokens 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 oTokens 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 oTokens (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 */ vars.redeemTokens = redeemTokensIn; (vars.mathErr, vars.redeemAmount) = mulScalarTruncate(Exp({mantissa: vars.exchangeRateMantissa}), redeemTokensIn); 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 */ (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)); } vars.redeemAmount = redeemAmountIn; } /* 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 number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { 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 write previously calculated values into storage */ totalSupply = vars.totalSupplyNew; accountTokens[redeemer] = vars.accountTokensNew; /* * We invoke doTransferOut for the redeemer and the redeemAmount. * Note: The oToken must handle variations between ERC-20 and ETH underlying. * On success, the oToken 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 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 number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { 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 write the previously calculated values into storage */ accountBorrows[borrower].principal = vars.accountBorrowsNew; accountBorrows[borrower].interestIndex = borrowIndex; totalBorrows = vars.totalBorrowsNew; /* * We invoke doTransferOut for the borrower and the borrowAmount. * Note: The oToken must handle variations between ERC-20 and ETH underlying. * On success, the oToken borrowAmount less of cash. * doTransferOut reverts if anything goes wrong, since we can't be sure if side effects occurred. */ doTransferOut(borrower, borrowAmount); /* 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 number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { 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 oToken must handle variations between ERC-20 and ETH underlying. * On success, the oToken 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 oToken to be liquidated * @param oTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, uint) An error code (0=success, otherwise a failure, see ErrorReporter.sol), and the actual repayment amount. */ function liquidateBorrowInternal(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) 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 = oTokenCollateral.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, oTokenCollateral); } /** * @notice The liquidator liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this oToken to be liquidated * @param liquidator The address repaying the borrow and seizing collateral * @param oTokenCollateral The market in which to seize collateral from the borrower * @param repayAmount The amount of the underlying borrowed asset to repay * @return (uint, 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, OTokenInterface oTokenCollateral) internal returns (uint, uint) { /* Fail if liquidate not allowed */ uint allowed = comptroller.liquidateBorrowAllowed(address(this), address(oTokenCollateral), liquidator, borrower, repayAmount); if (allowed != 0) { return (failOpaque(Error.COMPTROLLER_REJECTION, FailureInfo.LIQUIDATE_COMPTROLLER_REJECTION, allowed), 0); } /* Verify market's block number equals current block number */ if (accrualBlockNumber != getBlockNumber()) { return (fail(Error.MARKET_NOT_FRESH, FailureInfo.LIQUIDATE_FRESHNESS_CHECK), 0); } /* Verify oTokenCollateral market's block number equals current block number */ if (oTokenCollateral.accrualBlockNumber() != getBlockNumber()) { 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); } uint repayBorrowError; uint actualRepayAmount; uint amountSeizeError; uint seizeTokens; // If collateral is ERC721, we calculate(floor) possible repay and refund based on ERC721 token price if (oTokenCollateral.decimals() == 0) { ///////////////////////// // EFFECTS & INTERACTIONS // (No safe failures beyond this point) /* We calculate the possible number of collateral tokens that will be seized */ (uint possibleAmountSeizeError, , uint possibleRepayAmount) = ComptrollerExInterface(address(comptroller)).liquidateCalculateSeizeTokensEx(address(this), address(oTokenCollateral), repayAmount); require(possibleAmountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_EX_FAILED"); /* We only try to repay only possible repay amount here, and the others won't be transfer in in repay // TODO: We should check if actual repay and possible repay is different here /* Fail if repayBorrow fails */ (repayBorrowError, actualRepayAmount) = repayBorrowFresh(liquidator, borrower, possibleRepayAmount); } else { /* Fail if repayBorrow fails */ (repayBorrowError, 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 */ (amountSeizeError, seizeTokens) = comptroller.liquidateCalculateSeizeTokens(address(this), address(oTokenCollateral), actualRepayAmount); require(amountSeizeError == uint(Error.NO_ERROR), "LIQUIDATE_COMPTROLLER_CALCULATE_AMOUNT_SEIZE_FAILED"); /* Revert if borrower collateral token balance < seizeTokens */ require(oTokenCollateral.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(oTokenCollateral) == address(this)) { seizeError = seizeInternal(address(this), liquidator, borrower, seizeTokens); } else { seizeError = oTokenCollateral.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(oTokenCollateral), seizeTokens); /* We call the defense hook */ // unused function // comptroller.liquidateBorrowVerify(address(this), address(oTokenCollateral), 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 oToken during the process of liquidation. * Its absolutely critical to use msg.sender as the borrowed oToken and not a parameter. * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of oTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function seize(address liquidator, address borrower, uint seizeTokens) external 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 OToken. * Its absolutely critical to use msg.sender as the seizer oToken and not a parameter. * @param seizerToken The contract seizing the collateral (i.e. borrowed oToken) * @param liquidator The account receiving seized collateral * @param borrower The account having collateral seized * @param seizeTokens The number of oTokens to seize * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function 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 number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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 number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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 oToken must handle variations between ERC-20 and ETH underlying. * On success, the oToken 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 number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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 number equals current block number if (accrualBlockNumber != getBlockNumber()) { 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); } /*** 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/OErc20.sol pragma solidity ^0.5.16; interface XcnLike { function delegate(address delegatee) external; } /** * @title Onyx's OErc20 Contract * @notice OTokens which wrap an EIP-20 underlying * @author Onyx */ contract OErc20 is OToken, OErc20Interface { /** * @notice Initialize the new money market * @param underlying_ The address of the underlying asset * @param comptroller_ The address of the Comptroller * @param interestRateModel_ The address of the interest rate model * @param initialExchangeRateMantissa_ The initial exchange rate, scaled by 1e18 * @param name_ ERC-20 name of this token * @param symbol_ ERC-20 symbol of this token * @param decimals_ ERC-20 decimal precision of this token */ function initialize(address underlying_, ComptrollerInterface comptroller_, InterestRateModel interestRateModel_, uint initialExchangeRateMantissa_, string memory name_, string memory symbol_, uint8 decimals_) public { // OToken initialize does the bulk of the work super.initialize(comptroller_, interestRateModel_, initialExchangeRateMantissa_, name_, symbol_, decimals_); // Set underlying and sanity check it underlying = underlying_; EIP20Interface(underlying).totalSupply(); } /*** User Interface ***/ /** * @notice Sender supplies assets into the market and receives oTokens in exchange * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param mintAmount The amount of the underlying asset to supply * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function mint(uint mintAmount) external returns (uint) { (uint err,) = mintInternal(mintAmount); return err; } /** * @notice Sender redeems oTokens in exchange for the underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemTokens The number of oTokens to redeem into underlying * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeem(uint redeemTokens) external returns (uint) { return redeemInternal(redeemTokens); } /** * @notice Sender redeems oTokens in exchange for a specified amount of underlying asset * @dev Accrues interest whether or not the operation succeeds, unless reverted * @param redeemAmount The amount of underlying to redeem * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function redeemUnderlying(uint redeemAmount) external returns (uint) { return redeemUnderlyingInternal(redeemAmount); } /** * @notice Sender borrows assets from the protocol to their own address * @param borrowAmount The amount of the underlying asset to borrow * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function borrow(uint borrowAmount) external returns (uint) { return borrowInternal(borrowAmount); } /** * @notice Sender repays their own borrow * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrow(uint repayAmount) external returns (uint) { (uint err,) = repayBorrowInternal(repayAmount); return err; } /** * @notice Sender repays a borrow belonging to borrower * @param borrower the account with the debt being payed off * @param repayAmount The amount to repay * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function repayBorrowBehalf(address borrower, uint repayAmount) external returns (uint) { (uint err,) = repayBorrowBehalfInternal(borrower, repayAmount); return err; } /** * @notice The sender liquidates the borrowers collateral. * The collateral seized is transferred to the liquidator. * @param borrower The borrower of this oToken to be liquidated * @param repayAmount The amount of the underlying borrowed asset to repay * @param oTokenCollateral The market in which to seize collateral from the borrower * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function liquidateBorrow(address borrower, uint repayAmount, OTokenInterface oTokenCollateral) external returns (uint) { (uint err,) = liquidateBorrowInternal(borrower, repayAmount, oTokenCollateral); return err; } /** * @notice A public function to sweep accidental ERC-20 transfers to this contract. Tokens are sent to admin (timelock) * @param token The address of the ERC-20 token to sweep */ function sweepToken(EIP20NonStandardInterface token) external { require(address(token) != underlying, "OErc20::sweepToken: can not sweep underlying token"); uint256 balance = token.balanceOf(address(this)); token.transfer(admin, balance); } /** * @notice The sender adds to reserves. * @param addAmount The amount fo underlying token to add as reserves * @return uint 0=success, otherwise a failure (see ErrorReporter.sol for details) */ function _addReserves(uint addAmount) external returns (uint) { return _addReservesInternal(addAmount); } /*** Safe Token ***/ /** * @notice Gets balance of this contract in terms of the underlying * @dev This excludes the value of the current message, if any * @return The quantity of underlying tokens owned by this contract */ function getCashPrior() internal view returns (uint) { EIP20Interface token = EIP20Interface(underlying); return token.balanceOf(address(this)); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom` and reverts in that case. * This will revert due to insufficient balance or insufficient allowance. * This function returns the actual amount received, * which may be less than `amount` if there is a fee attached to the transfer. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferIn(address from, uint amount) internal returns (uint) { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); uint balanceBefore = EIP20Interface(underlying).balanceOf(address(this)); token.transferFrom(from, address(this), amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_IN_FAILED"); // Calculate the amount that was *actually* transferred uint balanceAfter = EIP20Interface(underlying).balanceOf(address(this)); require(balanceAfter >= balanceBefore, "TOKEN_TRANSFER_IN_OVERFLOW"); return balanceAfter - balanceBefore; // underflow already checked above, just subtract } /** * @dev Similar to EIP20 transfer, except it handles a False success from `transfer` and returns an explanatory * error code rather than reverting. If caller has not called checked protocol's balance, this may revert due to * insufficient cash held in this contract. If caller has checked protocol's balance prior to this call, and verified * it is >= amount, this should not revert in normal conditions. * * Note: This wrapper safely handles non-standard ERC-20 tokens that do not return a value. * See here: https://medium.com/coinmonks/missing-return-value-bug-at-least-130-tokens-affected-d67bf08521ca */ function doTransferOut(address payable to, uint amount) internal { EIP20NonStandardInterface token = EIP20NonStandardInterface(underlying); token.transfer(to, amount); bool success; assembly { switch returndatasize() case 0 { // This is a non-standard ERC-20 success := not(0) // set success to true } case 32 { // This is a compliant ERC-20 returndatacopy(0, 0, 32) success := mload(0) // Set `success = returndata` of external call } default { // This is an excessively non-compliant ERC-20, revert. revert(0, 0) } } require(success, "TOKEN_TRANSFER_OUT_FAILED"); } /** * @notice Admin call to delegate the votes of the XCN-like underlying * @param xcnLikeDelegatee The address to delegate votes to * @dev OTokens whose underlying are not XcnLike should revert here */ function _delegateXcnLikeTo(address xcnLikeDelegatee) external { require(msg.sender == admin, "only the admin may set the xcn-like delegate"); XcnLike(underlying).delegate(xcnLikeDelegatee); } } // File: contracts/OErc20Delegate.sol pragma solidity ^0.5.16; /** * @title Onyx's OErc20Delegate Contract * @notice OTokens which wrap an EIP-20 underlying and are delegated to * @author Onyx */ contract OErc20Delegate is OErc20, ODelegateInterface { /** * @notice Construct an empty delegate */ constructor() public {} /** * @notice Called by the delegator on a delegate to initialize it for duty * @param data The encoded bytes data for any initialization */ function _becomeImplementation(bytes memory data) public { // Shh -- currently unused data; // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _becomeImplementation"); } /** * @notice Called by the delegator on a delegate to forfeit its responsibility */ function _resignImplementation() public { // Shh -- we don't ever want this hook to be marked pure if (false) { implementation = address(0); } require(msg.sender == admin, "only the admin may call _resignImplementation"); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"cashPrior","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"AccrueInterest","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"borrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"error","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"info","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"detail","type":"uint256"}],"name":"Failure","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"liquidator","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"oTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintTokens","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newAdmin","type":"address"}],"name":"NewAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract ComptrollerInterface","name":"oldComptroller","type":"address"},{"indexed":false,"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"NewComptroller","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract InterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewMarketInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldPendingAdmin","type":"address"},{"indexed":false,"internalType":"address","name":"newPendingAdmin","type":"address"}],"name":"NewPendingAdmin","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveFactorMantissa","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"NewReserveFactor","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"redeemer","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"Redeem","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"payer","type":"address"},{"indexed":false,"internalType":"address","name":"borrower","type":"address"},{"indexed":false,"internalType":"uint256","name":"repayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"accountBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"benefactor","type":"address"},{"indexed":false,"internalType":"uint256","name":"addAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"reduceAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"}],"name":"ReservesReduced","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Transfer","type":"event"},{"constant":false,"inputs":[],"name":"_acceptAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"addAmount","type":"uint256"}],"name":"_addReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes","name":"data","type":"bytes"}],"name":"_becomeImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"xcnLikeDelegatee","type":"address"}],"name":"_delegateXcnLikeTo","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reduceAmount","type":"uint256"}],"name":"_reduceReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"_resignImplementation","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"newComptroller","type":"address"}],"name":"_setComptroller","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract InterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"newPendingAdmin","type":"address"}],"name":"_setPendingAdmin","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"newReserveFactorMantissa","type":"uint256"}],"name":"_setReserveFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"accrueInterest","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"admin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"borrowAmount","type":"uint256"}],"name":"borrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"borrowRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"comptroller","outputs":[{"internalType":"contract ComptrollerInterface","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getAccountSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"underlying_","type":"address"},{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract ComptrollerInterface","name":"comptroller_","type":"address"},{"internalType":"contract InterestRateModel","name":"interestRateModel_","type":"address"},{"internalType":"uint256","name":"initialExchangeRateMantissa_","type":"uint256"},{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint8","name":"decimals_","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract InterestRateModel","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isOToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"},{"internalType":"contract OTokenInterface","name":"oTokenCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pendingAdmin","outputs":[{"internalType":"address payable","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"protocolSeizeShareMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemTokens","type":"uint256"}],"name":"redeem","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"redeemAmount","type":"uint256"}],"name":"redeemUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"reserveFactorMantissa","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"liquidator","type":"address"},{"internalType":"address","name":"borrower","type":"address"},{"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"seize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"supplyRatePerBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract EIP20NonStandardInterface","name":"token","type":"address"}],"name":"sweepToken","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"src","type":"address"},{"internalType":"address","name":"dst","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"underlying","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061577b806100206000396000f3fe608060405234801561001057600080fd5b50600436106103425760003560e01c806373acee98116101b8578063b71d1a0c11610104578063e9c714f2116100a2578063f5e3c4621161007c578063f5e3c46214610ba9578063f851a44014610bdf578063f8f9da2814610be7578063fca7820b14610bef57610342565b8063e9c714f214610b73578063f2b3abbd14610b7b578063f3fdb15a14610ba157610342565b8063c5ebeaec116100de578063c5ebeaec14610ae5578063db006a7514610b02578063dd62ed3e14610b1f578063e15ea5a914610b4d57610342565b8063b71d1a0c14610a6b578063bd6d894d14610a91578063c37f68e214610a9957610342565b806399d8c1b411610171578063a9059cbb1161014b578063a9059cbb146109f9578063aa5af0fd14610a25578063ae9d70b014610a2d578063b2a02ff114610a3557610342565b806399d8c1b414610886578063a0712d68146109d4578063a6afed95146109f157610342565b806373acee9814610823578063852a12e31461082b5780638f840ddd1461084857806395d89b411461085057806395dd91931461085857806397de9d111461087e57610342565b8063313ce567116102925780635c60da1b116102305780636752e7021161020a5780636752e702146107e55780636c540baf146107ed5780636f307dc3146107f557806370a08231146107fd57610342565b80635c60da1b146107b85780635fe3b567146107c0578063601a0bf1146107c857610342565b80633e9410101161026c5780633e941010146106c95780634576b5db146106e657806347bd37181461070c57806356e677281461071457610342565b8063313ce5671461067d5780633af9e6691461069b5780633b1d21a2146106c157610342565b806318160ddd116102ff5780631be19560116102d95780631be19560146105d157806323b872dd146105f75780632608f8181461062d578063267822471461065957610342565b806318160ddd1461046b578063182df0f5146104735780631a31d4651461047b57610342565b806306fdde0314610347578063095ea7b3146103c45780630e75270214610404578063153ab50514610433578063173b99041461043d57806317bfdfbc14610445575b600080fd5b61034f610c0c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610389578181015183820152602001610371565b50505050905090810190601f1680156103b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f0600480360360408110156103da57600080fd5b506001600160a01b038135169060200135610c99565b604080519115158252519081900360200190f35b6104216004803603602081101561041a57600080fd5b5035610d06565b60408051918252519081900360200190f35b61043b610d1c565b005b610421610d6c565b6104216004803603602081101561045b57600080fd5b50356001600160a01b0316610d72565b610421610e32565b610421610e38565b61043b600480360360e081101561049157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b8111156104d357600080fd5b8201836020820111156104e557600080fd5b803590602001918460018302840111600160201b8311171561050657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561055857600080fd5b82018360208201111561056a57600080fd5b803590602001918460018302840111600160201b8311171561058b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610e9b9050565b61043b600480360360208110156105e757600080fd5b50356001600160a01b0316610f3a565b6103f06004803603606081101561060d57600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b6104216004803603604081101561064357600080fd5b506001600160a01b0381351690602001356110e8565b6106616110fe565b604080516001600160a01b039092168252519081900360200190f35b61068561110d565b6040805160ff9092168252519081900360200190f35b610421600480360360208110156106b157600080fd5b50356001600160a01b0316611116565b6104216111cc565b610421600480360360208110156106df57600080fd5b50356111db565b610421600480360360208110156106fc57600080fd5b50356001600160a01b03166111e6565b61042161133b565b61043b6004803603602081101561072a57600080fd5b810190602081018135600160201b81111561074457600080fd5b82018360208201111561075657600080fd5b803590602001918460018302840111600160201b8311171561077757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611341945050505050565b610661611392565b6106616113a1565b610421600480360360208110156107de57600080fd5b50356113b0565b61042161144b565b610421611456565b61066161145c565b6104216004803603602081101561081357600080fd5b50356001600160a01b031661146b565b610421611486565b6104216004803603602081101561084157600080fd5b503561153c565b610421611547565b61034f61154d565b6104216004803603602081101561086e57600080fd5b50356001600160a01b03166115a5565b6103f0611602565b61043b600480360360c081101561089c57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156108d657600080fd5b8201836020820111156108e857600080fd5b803590602001918460018302840111600160201b8311171561090957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561095b57600080fd5b82018360208201111561096d57600080fd5b803590602001918460018302840111600160201b8311171561098e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116079050565b610421600480360360208110156109ea57600080fd5b50356117ee565b6104216117fa565b6103f060048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611b52565b610421611bc3565b610421611bc9565b61042160048036036060811015610a4b57600080fd5b506001600160a01b03813581169160208101359091169060400135611c68565b61042160048036036020811015610a8157600080fd5b50356001600160a01b0316611cd9565b610421611d65565b610abf60048036036020811015610aaf57600080fd5b50356001600160a01b0316611e21565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61042160048036036020811015610afb57600080fd5b5035611eb6565b61042160048036036020811015610b1857600080fd5b5035611ec1565b61042160048036036040811015610b3557600080fd5b506001600160a01b0381358116916020013516611ecc565b61043b60048036036020811015610b6357600080fd5b50356001600160a01b0316611ef7565b610421611fae565b61042160048036036020811015610b9157600080fd5b50356001600160a01b03166120b1565b6106616120eb565b61042160048036036060811015610bbf57600080fd5b506001600160a01b038135811691602081013591604090910135166120fa565b610661612112565b610421612126565b61042160048036036020811015610c0557600080fd5b503561218a565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610d1283612208565b509150505b919050565b60035461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260040180806020018281038252602d8152602001806154b0602d913960400191505060405180910390fd5b565b60085481565b6000805460ff16610db7576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610dc96117fa565b14610e14576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610e1d826115a5565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610e456122b1565b90925090506000826003811115610e5857fe5b14610e945760405162461bcd60e51b815260040180806020018281038252603581526020018061562f6035913960400191505060405180910390fd5b9150505b90565b610ea9868686868686611607565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610f0557600080fd5b505afa158015610f19573d6000803e3d6000fd5b505050506040513d6020811015610f2f57600080fd5b505050505050505050565b6011546001600160a01b0382811691161415610f875760405162461bcd60e51b81526004018080602001828103825260328152602001806155fd6032913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015610fd157600080fd5b505afa158015610fe5573d6000803e3d6000fd5b505050506040513d6020811015610ffb57600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505050565b6000805460ff166110bb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110d133868686612360565b1490506000805460ff191660011790559392505050565b6000806110f584846125ec565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000611120615245565b6040518060200160405280611133611d65565b90526001600160a01b0384166000908152600e602052604081205491925090819061115f908490612697565b9092509050600082600381111561117257fe5b146111c4576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b60006111d66126eb565b905090565b6000610d008261276b565b60035460009061010090046001600160a01b031633146112135761120c6001603f6127ff565b9050610d17565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561125857600080fd5b505afa15801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b50516112d5576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b0316331461138f5760405162461bcd60e51b815260040180806020018281038252602d8152602001806156e4602d913960400191505060405180910390fd5b50565b6012546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff166113f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114076117fa565b9050801561142d5761142581601081111561141e57fe5b60306127ff565b915050610e20565b61143683612865565b9150506000805460ff19166001179055919050565b666379da05b6000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166114cb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114dd6117fa565b14611528576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610d0082612998565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b60008060006115b384612a19565b909250905060008260038111156115c657fe5b146113345760405162461bcd60e51b81526004018080602001828103825260378152602001806155086037913960400191505060405180910390fd5b600181565b60035461010090046001600160a01b031633146116555760405162461bcd60e51b81526004018080602001828103825260248152602001806153eb6024913960400191505060405180910390fd5b6009541580156116655750600a54155b6116a05760405162461bcd60e51b815260040180806020018281038252602381526020018061540f6023913960400191505060405180910390fd5b6007849055836116e15760405162461bcd60e51b815260040180806020018281038252603081526020018061545e6030913960400191505060405180910390fd5b60006116ec876111e6565b90508015611741576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611749612acd565b600955670de0b6b3a7640000600a5561176186612ad1565b905080156117a05760405162461bcd60e51b815260040180806020018281038252602281526020018061548e6022913960400191505060405180910390fd5b83516117b3906001906020870190615258565b5082516117c7906002906020860190615258565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610d1283612c46565b600080611805612acd565b6009549091508082141561181e57600092505050610e98565b60006118286126eb565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d60208110156118c057600080fd5b5051905065048c2739500081111561191f576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061192c8989612cc7565b9092509050600082600381111561193f57fe5b14611991576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b611999615245565b6000806000806119b760405180602001604052808a81525087612cea565b909750945060008760038111156119ca57fe5b146119fc576119e7600960068960038111156119e257fe5b612d52565b9e505050505050505050505050505050610e98565b611a06858c612697565b90975093506000876003811115611a1957fe5b14611a31576119e7600960018960038111156119e257fe5b611a3b848c612db8565b90975092506000876003811115611a4e57fe5b14611a66576119e7600960048960038111156119e257fe5b611a816040518060200160405280600854815250858c612dde565b90975091506000876003811115611a9457fe5b14611aac576119e7600960058960038111156119e257fe5b611ab7858a8b612dde565b90975090506000876003811115611aca57fe5b14611ae2576119e7600960038960038111156119e257fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b97576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611bad33338686612360565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b8168816611be56126eb565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611c3757600080fd5b505afa158015611c4b573d6000803e3d6000fd5b505050506040513d6020811015611c6157600080fd5b5051905090565b6000805460ff16611cad576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611cc333858585612e3a565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611cff5761120c600160456127ff565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611334565b6000805460ff16611daa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611dbc6117fa565b14611e07576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e0f610e38565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611e4c89612a19565b935090506000816003811115611e5e57fe5b14611e7c5760095b975060009650869550859450611eaf9350505050565b611e846122b1565b925090506000816003811115611e9657fe5b14611ea2576009611e66565b5060009650919450925090505b9193509193565b6000610d0082613214565b6000610d0082613293565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b60035461010090046001600160a01b03163314611f455760405162461bcd60e51b815260040180806020018281038252602c815260200180615432602c913960400191505060405180910390fd5b601154604080516317066a5760e21b81526001600160a01b03848116600483015291519190921691635c19a95c91602480830192600092919082900301818387803b158015611f9357600080fd5b505af1158015611fa7573d6000803e3d6000fd5b5050505050565b6004546000906001600160a01b031633141580611fc9575033155b15611fe157611fda600160006127ff565b9050610e98565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120bc6117fa565b905080156120e2576120da8160108111156120d357fe5b60406127ff565b915050610d17565b61133483612ad1565b6006546001600160a01b031681565b60008061210885858561330d565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536121426126eb565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611c3757600080fd5b6000805460ff166121cf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121e16117fa565b905080156121ff576114258160108111156121f857fe5b60466127ff565b6114368361343f565b60008054819060ff1661224f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556122616117fa565b9050801561228c5761227f81601081111561227857fe5b60366127ff565b92506000915061229d9050565b6122973333866134e7565b92509250505b6000805460ff191660011790559092909150565b600d546000908190806122cc5750506007546000915061235c565b60006122d66126eb565b905060006122e2615245565b60006122f384600b54600c54613835565b93509050600081600381111561230557fe5b1461231a5795506000945061235c9350505050565b6123248386613873565b92509050600081600381111561233657fe5b1461234b5795506000945061235c9350505050565b505160009550935061235c92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156123c557600080fd5b505af11580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b50519050801561240e576124066003604a83612d52565b9150506111c4565b836001600160a01b0316856001600160a01b03161415612434576124066002604b6127ff565b60006001600160a01b038781169087161415612453575060001961247b565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061248b8589612cc7565b9094509250600084600381111561249e57fe5b146124bc576124af6009604b6127ff565b96505050505050506111c4565b6001600160a01b038a166000908152600e60205260409020546124df9089612cc7565b909450915060008460038111156124f257fe5b14612503576124af6009604c6127ff565b6001600160a01b0389166000908152600e60205260409020546125269089612db8565b9094509050600084600381111561253957fe5b1461254a576124af6009604d6127ff565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146125a2576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206155798339815191528a6040518082815260200191505060405180910390a35060009a9950505050505050505050565b60008054819060ff16612633576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126456117fa565b905080156126705761266381601081111561265c57fe5b60356127ff565b9250600091506126819050565b61267b3386866134e7565b92509250505b6000805460ff1916600117905590939092509050565b60008060006126a4615245565b6126ae8686612cea565b909250905060008260038111156126c157fe5b146126d257509150600090506126e4565b60006126dd82613923565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561273957600080fd5b505afa15801561274d573d6000803e3d6000fd5b505050506040513d602081101561276357600080fd5b505191505090565b6000805460ff166127b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556127c26117fa565b905080156127e0576114258160108111156127d957fe5b604e6127ff565b6127e983613932565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561282e57fe5b83605081111561283a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561133457fe5b600354600090819061010090046001600160a01b0316331461288d576120da600160316127ff565b612895612acd565b600954146128a9576120da600a60336127ff565b826128b26126eb565b10156128c4576120da600e60326127ff565b600c548311156128da576120da600260346127ff565b50600c54828103908111156129205760405162461bcd60e51b81526004018080602001828103825260248152602001806156c06024913960400191505060405180910390fd5b600c8190556003546129409061010090046001600160a01b031684613a1a565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611334565b6000805460ff166129dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556129ef6117fa565b90508015612a0d57611425816010811115612a0657fe5b60276127ff565b61143633600085613b11565b6001600160a01b038116600090815260106020526040812080548291829182918291612a50575060009450849350612ac892505050565b612a608160000154600a54613fe1565b90945092506000846003811115612a7357fe5b14612a88575091935060009250612ac8915050565b612a96838260010154614020565b90945091506000846003811115612aa957fe5b14612abe575091935060009250612ac8915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612af9576120da600160426127ff565b612b01612acd565b60095414612b15576120da600a60416127ff565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b6657600080fd5b505afa158015612b7a573d6000803e3d6000fd5b505050506040513d6020811015612b9057600080fd5b5051612be3576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611334565b60008054819060ff16612c8d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c9f6117fa565b90508015612cbd5761227f816010811115612cb657fe5b601e6127ff565b612297338561404b565b600080838311612cde5750600090508183036126e4565b506003905060006126e4565b6000612cf4615245565b600080612d05866000015186613fe1565b90925090506000826003811115612d1857fe5b14612d37575060408051602081019091526000815290925090506126e4565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612d8157fe5b846050811115612d8d57fe5b604080519283526020830191909152818101859052519081900360600190a18360108111156111c457fe5b600080838301848110612dd0576000925090506126e4565b5060029150600090506126e4565b6000806000612deb615245565b612df58787612cea565b90925090506000826003811115612e0857fe5b14612e195750915060009050612e32565b612e2b612e2582613923565b86612db8565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ea757600080fd5b505af1158015612ebb573d6000803e3d6000fd5b505050506040513d6020811015612ed157600080fd5b505190508015612ee8576124066003601b83612d52565b846001600160a01b0316846001600160a01b03161415612f0e576124066006601c6127ff565b612f166152d6565b6001600160a01b0385166000908152600e6020526040902054612f399085612cc7565b6020830181905282826003811115612f4d57fe5b6003811115612f5857fe5b9052506000905081516003811115612f6c57fe5b14612f9157612f886009601a836000015160038111156119e257fe5b925050506111c4565b612fb0846040518060200160405280666379da05b6000081525061441b565b60808201819052612fc2908590614443565b6060820152612fcf6122b1565b60c0830181905282826003811115612fe357fe5b6003811115612fee57fe5b905250600090508151600381111561300257fe5b14613054576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61307460405180602001604052808360c00151815250826080015161447d565b60a08201819052600c546130879161449c565b60e0820152600d54608082015161309e9190614443565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516130cc9190612db8565b60408301819052828260038111156130e057fe5b60038111156130eb57fe5b90525060009050815160038111156130ff57fe5b1461311b57612f8860096019836000015160038111156119e257fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b16808252908490209290925560608501518351908152925191939092600080516020615579833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206155798339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613259576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561326b6117fa565b905080156132895761142581601081111561328257fe5b60086127ff565b61143633846144d2565b6000805460ff166132d8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556132ea6117fa565b9050801561330157611425816010811115612a0657fe5b61143633846000613b11565b60008054819060ff16613354576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133666117fa565b905080156133915761338481601081111561337d57fe5b600f6127ff565b9250600091506134289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156133cc57600080fd5b505af11580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b5051905080156134165761338481601081111561340f57fe5b60106127ff565b6134223387878761476e565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b031633146134655761120c600160476127ff565b61346d612acd565b600954146134815761120c600a60486127ff565b670de0b6b3a764000082111561349d5761120c600260496127ff565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611334565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561355057600080fd5b505af1158015613564573d6000803e3d6000fd5b505050506040513d602081101561357a57600080fd5b50519050801561359e576135916003603883612d52565b925060009150612e329050565b6135a6612acd565b600954146135ba57613591600a60396127ff565b6135c2615323565b6001600160a01b03861660009081526010602052604090206001015460608201526135ec86612a19565b608083018190526020830182600381111561360357fe5b600381111561360e57fe5b905250600090508160200151600381111561362557fe5b1461364f5761364160096037836020015160038111156119e257fe5b935060009250612e32915050565b6000198514156136685760808101516040820152613670565b604081018590525b61367e878260400151614db7565b60e08201819052608082015161369391612cc7565b60a08301819052602083018260038111156136aa57fe5b60038111156136b557fe5b90525060009050816020015160038111156136cc57fe5b146137085760405162461bcd60e51b815260040180806020018281038252603a81526020018061553f603a913960400191505060405180910390fd5b613718600b548260e00151612cc7565b60c083018190526020830182600381111561372f57fe5b600381111561373a57fe5b905250600090508160200151600381111561375157fe5b1461378d5760405162461bcd60e51b81526004018080602001828103825260318152602001806155996031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6000806000806138458787612db8565b9092509050600082600381111561385857fe5b146138695750915060009050612e32565b612e2b8186612cc7565b600061387d615245565b60008061389286670de0b6b3a7640000613fe1565b909250905060008260038111156138a557fe5b146138c4575060408051602081019091526000815290925090506126e4565b6000806138d18388614020565b909250905060008260038111156138e457fe5b14613906575060408051602081019091526000815290945092506126e4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b600080600080613940612acd565b6009541461395f57613954600a604f6127ff565b93509150612ac89050565b6139693386614db7565b905080600c54019150600c548210156139c9576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b158015613a7257600080fd5b505af1158015613a86573d6000803e3d6000fd5b5050505060003d60008114613aa25760208114613aac57600080fd5b6000199150613ab8565b60206000803e60005191505b5080613b0b576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613b1e575081155b613b595760405162461bcd60e51b815260040180806020018281038252603481526020018061568c6034913960400191505060405180910390fd5b613b61615369565b613b696122b1565b6040830181905260208301826003811115613b8057fe5b6003811115613b8b57fe5b9052506000905081602001516003811115613ba257fe5b14613bc657613bbe6009602b836020015160038111156119e257fe5b915050611334565b8315613c47576060810184905260408051602081018252908201518152613bed9085612697565b6080830181905260208301826003811115613c0457fe5b6003811115613c0f57fe5b9052506000905081602001516003811115613c2657fe5b14613c4257613bbe60096029836020015160038111156119e257fe5b613cc0565b613c638360405180602001604052808460400151815250615001565b6060830181905260208301826003811115613c7a57fe5b6003811115613c8557fe5b9052506000905081602001516003811115613c9c57fe5b14613cb857613bbe6009602a836020015160038111156119e257fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613d2557600080fd5b505af1158015613d39573d6000803e3d6000fd5b505050506040513d6020811015613d4f57600080fd5b505190508015613d6f57613d666003602883612d52565b92505050611334565b613d77612acd565b60095414613d8b57613d66600a602c6127ff565b613d9b600d548360600151612cc7565b60a0840181905260208401826003811115613db257fe5b6003811115613dbd57fe5b9052506000905082602001516003811115613dd457fe5b14613df057613d666009602e846020015160038111156119e257fe5b6001600160a01b0386166000908152600e60205260409020546060830151613e189190612cc7565b60c0840181905260208401826003811115613e2f57fe5b6003811115613e3a57fe5b9052506000905082602001516003811115613e5157fe5b14613e6d57613d666009602d846020015160038111156119e257fe5b8160800151613e7a6126eb565b1015613e8c57613d66600e602f6127ff565b60a0820151600d5560c08201516001600160a01b0387166000908152600e60205260409020556080820151613ec2908790613a1a565b6060820151604080519182525130916001600160a01b038916916000805160206155798339815191529181900360200190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613fb657600080fd5b505af1158015613fca573d6000803e3d6000fd5b5060009250613fd7915050565b9695505050505050565b60008083613ff4575060009050806126e4565b8383028385828161400157fe5b0414614015575060029150600090506126e4565b6000925090506126e4565b6000808261403457506001905060006126e4565b600083858161403f57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156140ac57600080fd5b505af11580156140c0573d6000803e3d6000fd5b505050506040513d60208110156140d657600080fd5b5051905080156140fa576140ed6003601f83612d52565b9250600091506126e49050565b614102612acd565b60095414614116576140ed600a60226127ff565b61411e615369565b6141266122b1565b604083018190526020830182600381111561413d57fe5b600381111561414857fe5b905250600090508160200151600381111561415f57fe5b146141895761417b60096021836020015160038111156119e257fe5b9350600092506126e4915050565b6141938686614db7565b60c08201819052604080516020810182529083015181526141b49190615001565b60608301819052602083018260038111156141cb57fe5b60038111156141d657fe5b90525060009050816020015160038111156141ed57fe5b1461423f576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b61424f600d548260600151612db8565b608083018190526020830182600381111561426657fe5b600381111561427157fe5b905250600090508160200151600381111561428857fe5b146142c45760405162461bcd60e51b81526004018080602001828103825260288152602001806156646028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516142ec9190612db8565b60a083018190526020830182600381111561430357fe5b600381111561430e57fe5b905250600090508160200151600381111561432557fe5b146143615760405162461bcd60e51b815260040180806020018281038252602b8152602001806154dd602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206155798339815191529181900360200190a360c001516000969095509350505050565b6000670de0b6b3a7640000614434848460000151615018565b8161443b57fe5b049392505050565b60006113348383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b81525061505a565b6000614487615245565b61449184846150f1565b90506111c481613923565b60006113348383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b81525061511b565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561452f57600080fd5b505af1158015614543573d6000803e3d6000fd5b505050506040513d602081101561455957600080fd5b505190508015614578576145706003600e83612d52565b915050610d00565b614580612acd565b6009541461459357614570600a806127ff565b8261459c6126eb565b10156145ae57614570600e60096127ff565b6145b66153a7565b6145bf85612a19565b60208301819052828260038111156145d357fe5b60038111156145de57fe5b90525060009050815160038111156145f257fe5b146146175761460e60096007836000015160038111156119e257fe5b92505050610d00565b614625816020015185612db8565b604083018190528282600381111561463957fe5b600381111561464457fe5b905250600090508151600381111561465857fe5b146146745761460e6009600c836000015160038111156119e257fe5b614680600b5485612db8565b606083018190528282600381111561469457fe5b600381111561469f57fe5b90525060009050815160038111156146b357fe5b146146cf5761460e6009600b836000015160038111156119e257fe5b6040808201516001600160a01b0387166000908152601060205291909120908155600a546001909101556060810151600b5561470b8585613a1a565b60408082015160608084015183516001600160a01b038a16815260208101899052808501939093529082015290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156147df57600080fd5b505af11580156147f3573d6000803e3d6000fd5b505050506040513d602081101561480957600080fd5b50519050801561482d576148206003601283612d52565b925060009150614dae9050565b614835612acd565b6009541461484957614820600a60166127ff565b614851612acd565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561488a57600080fd5b505afa15801561489e573d6000803e3d6000fd5b505050506040513d60208110156148b457600080fd5b5051146148c757614820600a60116127ff565b866001600160a01b0316866001600160a01b031614156148ed57614820600660176127ff565b846148fe57614820600760156127ff565b60001985141561491457614820600760146127ff565b600080600080876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561495357600080fd5b505afa158015614967573d6000803e3d6000fd5b505050506040513d602081101561497d57600080fd5b505160ff16614a6f5760055460408051630438cec560e31b81523060048201526001600160a01b038b81166024830152604482018d90529151600093849316916321c67628916064808301926060929190829003018186803b1580156149e257600080fd5b505afa1580156149f6573d6000803e3d6000fd5b505050506040513d6060811015614a0c57600080fd5b50805160409091015190925090508115614a575760405162461bcd60e51b81526004018080602001828103825260368152602001806157116036913960400191505060405180910390fd5b614a628d8d836134e7565b9096509450614a80915050565b614a7a8b8b8b6134e7565b90945092505b8315614aad57614a9c846010811115614a9557fe5b60186127ff565b965060009550614dae945050505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038b8116602483015260448201879052825193169263c488847b92606480840193919291829003018186803b158015614b0357600080fd5b505afa158015614b17573d6000803e3d6000fd5b505050506040513d6040811015614b2d57600080fd5b50805160209091015190925090508115614b785760405162461bcd60e51b81526004018080602001828103825260338152602001806155ca6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614bcf57600080fd5b505afa158015614be3573d6000803e3d6000fd5b505050506040513d6020811015614bf957600080fd5b50511015614c4e576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614c7457614c6d308d8d85612e3a565b9050614cfe565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614ccf57600080fd5b505af1158015614ce3573d6000803e3d6000fd5b505050506040513d6020811015614cf957600080fd5b505190505b8015614d48576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614e0657600080fd5b505afa158015614e1a573d6000803e3d6000fd5b505050506040513d6020811015614e3057600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614e8d57600080fd5b505af1158015614ea1573d6000803e3d6000fd5b5050505060003d60008114614ebd5760208114614ec757600080fd5b6000199150614ed3565b60206000803e60005191505b5080614f26576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614f7157600080fd5b505afa158015614f85573d6000803e3d6000fd5b505050506040513d6020811015614f9b57600080fd5b5051905082811015614ff4576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b600080600061500e615245565b6126ae8686615170565b600061133483836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f770000000000000000008152506151cf565b600081848411156150e95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156150ae578181015183820152602001615096565b50505050905090810190601f1680156150db5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6150f9615245565b6040518060200160405280615112856000015185615018565b90529392505050565b600083830182858210156110f55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156150ae578181015183820152602001615096565b600061517a615245565b60008061518f670de0b6b3a764000087613fe1565b909250905060008260038111156151a257fe5b146151c1575060408051602081019091526000815290925090506126e4565b6126dd818660000151613873565b60008315806151dc575082155b156151e957506000611334565b838302838582816151f657fe5b041483906110f55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156150ae578181015183820152602001615096565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061529957805160ff19168380011785556152c6565b828001600101855582156152c6579182015b828111156152c65782518255916020019190600101906152ab565b506152d29291506153d0565b5090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610e9891905b808211156152d257600081556001016153d656fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e63656f6e6c79207468652061646d696e206d617920736574207468652078636e2d6c696b652064656c6567617465696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c45444f45726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e65786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6e4c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f45585f4641494c4544a265627a7a72315820936147f6002f6239da522afab299737f78b1db5a8fa4084767e1f549e0d8cbbc64736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106103425760003560e01c806373acee98116101b8578063b71d1a0c11610104578063e9c714f2116100a2578063f5e3c4621161007c578063f5e3c46214610ba9578063f851a44014610bdf578063f8f9da2814610be7578063fca7820b14610bef57610342565b8063e9c714f214610b73578063f2b3abbd14610b7b578063f3fdb15a14610ba157610342565b8063c5ebeaec116100de578063c5ebeaec14610ae5578063db006a7514610b02578063dd62ed3e14610b1f578063e15ea5a914610b4d57610342565b8063b71d1a0c14610a6b578063bd6d894d14610a91578063c37f68e214610a9957610342565b806399d8c1b411610171578063a9059cbb1161014b578063a9059cbb146109f9578063aa5af0fd14610a25578063ae9d70b014610a2d578063b2a02ff114610a3557610342565b806399d8c1b414610886578063a0712d68146109d4578063a6afed95146109f157610342565b806373acee9814610823578063852a12e31461082b5780638f840ddd1461084857806395d89b411461085057806395dd91931461085857806397de9d111461087e57610342565b8063313ce567116102925780635c60da1b116102305780636752e7021161020a5780636752e702146107e55780636c540baf146107ed5780636f307dc3146107f557806370a08231146107fd57610342565b80635c60da1b146107b85780635fe3b567146107c0578063601a0bf1146107c857610342565b80633e9410101161026c5780633e941010146106c95780634576b5db146106e657806347bd37181461070c57806356e677281461071457610342565b8063313ce5671461067d5780633af9e6691461069b5780633b1d21a2146106c157610342565b806318160ddd116102ff5780631be19560116102d95780631be19560146105d157806323b872dd146105f75780632608f8181461062d578063267822471461065957610342565b806318160ddd1461046b578063182df0f5146104735780631a31d4651461047b57610342565b806306fdde0314610347578063095ea7b3146103c45780630e75270214610404578063153ab50514610433578063173b99041461043d57806317bfdfbc14610445575b600080fd5b61034f610c0c565b6040805160208082528351818301528351919283929083019185019080838360005b83811015610389578181015183820152602001610371565b50505050905090810190601f1680156103b65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6103f0600480360360408110156103da57600080fd5b506001600160a01b038135169060200135610c99565b604080519115158252519081900360200190f35b6104216004803603602081101561041a57600080fd5b5035610d06565b60408051918252519081900360200190f35b61043b610d1c565b005b610421610d6c565b6104216004803603602081101561045b57600080fd5b50356001600160a01b0316610d72565b610421610e32565b610421610e38565b61043b600480360360e081101561049157600080fd5b6001600160a01b03823581169260208101358216926040820135909216916060820135919081019060a081016080820135600160201b8111156104d357600080fd5b8201836020820111156104e557600080fd5b803590602001918460018302840111600160201b8311171561050657600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561055857600080fd5b82018360208201111561056a57600080fd5b803590602001918460018302840111600160201b8311171561058b57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff169150610e9b9050565b61043b600480360360208110156105e757600080fd5b50356001600160a01b0316610f3a565b6103f06004803603606081101561060d57600080fd5b506001600160a01b03813581169160208101359091169060400135611076565b6104216004803603604081101561064357600080fd5b506001600160a01b0381351690602001356110e8565b6106616110fe565b604080516001600160a01b039092168252519081900360200190f35b61068561110d565b6040805160ff9092168252519081900360200190f35b610421600480360360208110156106b157600080fd5b50356001600160a01b0316611116565b6104216111cc565b610421600480360360208110156106df57600080fd5b50356111db565b610421600480360360208110156106fc57600080fd5b50356001600160a01b03166111e6565b61042161133b565b61043b6004803603602081101561072a57600080fd5b810190602081018135600160201b81111561074457600080fd5b82018360208201111561075657600080fd5b803590602001918460018302840111600160201b8311171561077757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550611341945050505050565b610661611392565b6106616113a1565b610421600480360360208110156107de57600080fd5b50356113b0565b61042161144b565b610421611456565b61066161145c565b6104216004803603602081101561081357600080fd5b50356001600160a01b031661146b565b610421611486565b6104216004803603602081101561084157600080fd5b503561153c565b610421611547565b61034f61154d565b6104216004803603602081101561086e57600080fd5b50356001600160a01b03166115a5565b6103f0611602565b61043b600480360360c081101561089c57600080fd5b6001600160a01b03823581169260208101359091169160408201359190810190608081016060820135600160201b8111156108d657600080fd5b8201836020820111156108e857600080fd5b803590602001918460018302840111600160201b8311171561090957600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295949360208101935035915050600160201b81111561095b57600080fd5b82018360208201111561096d57600080fd5b803590602001918460018302840111600160201b8311171561098e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506116079050565b610421600480360360208110156109ea57600080fd5b50356117ee565b6104216117fa565b6103f060048036036040811015610a0f57600080fd5b506001600160a01b038135169060200135611b52565b610421611bc3565b610421611bc9565b61042160048036036060811015610a4b57600080fd5b506001600160a01b03813581169160208101359091169060400135611c68565b61042160048036036020811015610a8157600080fd5b50356001600160a01b0316611cd9565b610421611d65565b610abf60048036036020811015610aaf57600080fd5b50356001600160a01b0316611e21565b604080519485526020850193909352838301919091526060830152519081900360800190f35b61042160048036036020811015610afb57600080fd5b5035611eb6565b61042160048036036020811015610b1857600080fd5b5035611ec1565b61042160048036036040811015610b3557600080fd5b506001600160a01b0381358116916020013516611ecc565b61043b60048036036020811015610b6357600080fd5b50356001600160a01b0316611ef7565b610421611fae565b61042160048036036020811015610b9157600080fd5b50356001600160a01b03166120b1565b6106616120eb565b61042160048036036060811015610bbf57600080fd5b506001600160a01b038135811691602081013591604090910135166120fa565b610661612112565b610421612126565b61042160048036036020811015610c0557600080fd5b503561218a565b60018054604080516020600284861615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b820191906000526020600020905b815481529060010190602001808311610c7457829003601f168201915b505050505081565b336000818152600f602090815260408083206001600160a01b03871680855290835281842086905581518681529151939493909284927f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925929081900390910190a360019150505b92915050565b600080610d1283612208565b509150505b919050565b60035461010090046001600160a01b03163314610d6a5760405162461bcd60e51b815260040180806020018281038252602d8152602001806154b0602d913960400191505060405180910390fd5b565b60085481565b6000805460ff16610db7576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155610dc96117fa565b14610e14576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b610e1d826115a5565b90505b6000805460ff19166001179055919050565b600d5481565b6000806000610e456122b1565b90925090506000826003811115610e5857fe5b14610e945760405162461bcd60e51b815260040180806020018281038252603581526020018061562f6035913960400191505060405180910390fd5b9150505b90565b610ea9868686868686611607565b601180546001600160a01b0319166001600160a01b038981169190911791829055604080516318160ddd60e01b8152905192909116916318160ddd91600480820192602092909190829003018186803b158015610f0557600080fd5b505afa158015610f19573d6000803e3d6000fd5b505050506040513d6020811015610f2f57600080fd5b505050505050505050565b6011546001600160a01b0382811691161415610f875760405162461bcd60e51b81526004018080602001828103825260328152602001806155fd6032913960400191505060405180910390fd5b604080516370a0823160e01b815230600482015290516000916001600160a01b038416916370a0823191602480820192602092909190829003018186803b158015610fd157600080fd5b505afa158015610fe5573d6000803e3d6000fd5b505050506040513d6020811015610ffb57600080fd5b50516003546040805163a9059cbb60e01b81526101009092046001600160a01b03908116600484015260248301849052905192935084169163a9059cbb9160448082019260009290919082900301818387803b15801561105a57600080fd5b505af115801561106e573d6000803e3d6000fd5b505050505050565b6000805460ff166110bb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556110d133868686612360565b1490506000805460ff191660011790559392505050565b6000806110f584846125ec565b50949350505050565b6004546001600160a01b031681565b60035460ff1681565b6000611120615245565b6040518060200160405280611133611d65565b90526001600160a01b0384166000908152600e602052604081205491925090819061115f908490612697565b9092509050600082600381111561117257fe5b146111c4576040805162461bcd60e51b815260206004820152601f60248201527f62616c616e636520636f756c64206e6f742062652063616c63756c6174656400604482015290519081900360640190fd5b949350505050565b60006111d66126eb565b905090565b6000610d008261276b565b60035460009061010090046001600160a01b031633146112135761120c6001603f6127ff565b9050610d17565b60055460408051623f1ee960e11b815290516001600160a01b0392831692851691627e3dd2916004808301926020929190829003018186803b15801561125857600080fd5b505afa15801561126c573d6000803e3d6000fd5b505050506040513d602081101561128257600080fd5b50516112d5576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517f7ac369dbd14fa5ea3f473ed67cc9d598964a77501540ba6751eb0b3decf5870d9281900390910190a160005b9392505050565b600b5481565b60035461010090046001600160a01b0316331461138f5760405162461bcd60e51b815260040180806020018281038252602d8152602001806156e4602d913960400191505060405180910390fd5b50565b6012546001600160a01b031681565b6005546001600160a01b031681565b6000805460ff166113f5576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114076117fa565b9050801561142d5761142581601081111561141e57fe5b60306127ff565b915050610e20565b61143683612865565b9150506000805460ff19166001179055919050565b666379da05b6000081565b60095481565b6011546001600160a01b031681565b6001600160a01b03166000908152600e602052604090205490565b6000805460ff166114cb576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556114dd6117fa565b14611528576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b50600b546000805460ff1916600117905590565b6000610d0082612998565b600c5481565b6002805460408051602060018416156101000260001901909316849004601f81018490048402820184019092528181529291830182828015610c915780601f10610c6657610100808354040283529160200191610c91565b60008060006115b384612a19565b909250905060008260038111156115c657fe5b146113345760405162461bcd60e51b81526004018080602001828103825260378152602001806155086037913960400191505060405180910390fd5b600181565b60035461010090046001600160a01b031633146116555760405162461bcd60e51b81526004018080602001828103825260248152602001806153eb6024913960400191505060405180910390fd5b6009541580156116655750600a54155b6116a05760405162461bcd60e51b815260040180806020018281038252602381526020018061540f6023913960400191505060405180910390fd5b6007849055836116e15760405162461bcd60e51b815260040180806020018281038252603081526020018061545e6030913960400191505060405180910390fd5b60006116ec876111e6565b90508015611741576040805162461bcd60e51b815260206004820152601a60248201527f73657474696e6720636f6d7074726f6c6c6572206661696c6564000000000000604482015290519081900360640190fd5b611749612acd565b600955670de0b6b3a7640000600a5561176186612ad1565b905080156117a05760405162461bcd60e51b815260040180806020018281038252602281526020018061548e6022913960400191505060405180910390fd5b83516117b3906001906020870190615258565b5082516117c7906002906020860190615258565b50506003805460ff90921660ff199283161790556000805490911660011790555050505050565b600080610d1283612c46565b600080611805612acd565b6009549091508082141561181e57600092505050610e98565b60006118286126eb565b600b54600c54600a54600654604080516315f2405360e01b815260048101879052602481018690526044810185905290519596509394929391926000926001600160a01b03909216916315f24053916064808301926020929190829003018186803b15801561189657600080fd5b505afa1580156118aa573d6000803e3d6000fd5b505050506040513d60208110156118c057600080fd5b5051905065048c2739500081111561191f576040805162461bcd60e51b815260206004820152601c60248201527f626f72726f772072617465206973206162737572646c79206869676800000000604482015290519081900360640190fd5b60008061192c8989612cc7565b9092509050600082600381111561193f57fe5b14611991576040805162461bcd60e51b815260206004820152601f60248201527f636f756c64206e6f742063616c63756c61746520626c6f636b2064656c746100604482015290519081900360640190fd5b611999615245565b6000806000806119b760405180602001604052808a81525087612cea565b909750945060008760038111156119ca57fe5b146119fc576119e7600960068960038111156119e257fe5b612d52565b9e505050505050505050505050505050610e98565b611a06858c612697565b90975093506000876003811115611a1957fe5b14611a31576119e7600960018960038111156119e257fe5b611a3b848c612db8565b90975092506000876003811115611a4e57fe5b14611a66576119e7600960048960038111156119e257fe5b611a816040518060200160405280600854815250858c612dde565b90975091506000876003811115611a9457fe5b14611aac576119e7600960058960038111156119e257fe5b611ab7858a8b612dde565b90975090506000876003811115611aca57fe5b14611ae2576119e7600960038960038111156119e257fe5b60098e9055600a819055600b839055600c829055604080518d8152602081018690528082018390526060810185905290517f4dec04e750ca11537cabcd8a9eab06494de08da3735bc8871cd41250e190bc049181900360800190a160009e50505050505050505050505050505090565b6000805460ff16611b97576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611bad33338686612360565b1490506000805460ff1916600117905592915050565b600a5481565b6006546000906001600160a01b031663b8168816611be56126eb565b600b54600c546008546040518563ffffffff1660e01b81526004018085815260200184815260200183815260200182815260200194505050505060206040518083038186803b158015611c3757600080fd5b505afa158015611c4b573d6000803e3d6000fd5b505050506040513d6020811015611c6157600080fd5b5051905090565b6000805460ff16611cad576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19169055611cc333858585612e3a565b90506000805460ff191660011790559392505050565b60035460009061010090046001600160a01b03163314611cff5761120c600160456127ff565b600480546001600160a01b038481166001600160a01b0319831681179093556040805191909216808252602082019390935281517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a9929181900390910190a16000611334565b6000805460ff16611daa576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155611dbc6117fa565b14611e07576040805162461bcd60e51b81526020600482015260166024820152751858d8dc9d59481a5b9d195c995cdd0819985a5b195960521b604482015290519081900360640190fd5b611e0f610e38565b90506000805460ff1916600117905590565b6001600160a01b0381166000908152600e6020526040812054819081908190818080611e4c89612a19565b935090506000816003811115611e5e57fe5b14611e7c5760095b975060009650869550859450611eaf9350505050565b611e846122b1565b925090506000816003811115611e9657fe5b14611ea2576009611e66565b5060009650919450925090505b9193509193565b6000610d0082613214565b6000610d0082613293565b6001600160a01b039182166000908152600f6020908152604080832093909416825291909152205490565b60035461010090046001600160a01b03163314611f455760405162461bcd60e51b815260040180806020018281038252602c815260200180615432602c913960400191505060405180910390fd5b601154604080516317066a5760e21b81526001600160a01b03848116600483015291519190921691635c19a95c91602480830192600092919082900301818387803b158015611f9357600080fd5b505af1158015611fa7573d6000803e3d6000fd5b5050505050565b6004546000906001600160a01b031633141580611fc9575033155b15611fe157611fda600160006127ff565b9050610e98565b60038054600480546001600160a01b03818116610100818102610100600160a81b0319871617968790556001600160a01b031990931690935560408051948390048216808652929095041660208401528351909391927ff9ffabca9c8276e99321725bcb43fb076a6c66a54b7f21c4e8146d8519b417dc92908290030190a1600454604080516001600160a01b038085168252909216602083015280517fca4f2f25d0898edd99413412fb94012f9e54ec8142f9b093e7720646a95b16a99281900390910190a160009250505090565b6000806120bc6117fa565b905080156120e2576120da8160108111156120d357fe5b60406127ff565b915050610d17565b61133483612ad1565b6006546001600160a01b031681565b60008061210885858561330d565b5095945050505050565b60035461010090046001600160a01b031681565b6006546000906001600160a01b03166315f240536121426126eb565b600b54600c546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611c3757600080fd5b6000805460ff166121cf576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556121e16117fa565b905080156121ff576114258160108111156121f857fe5b60466127ff565b6114368361343f565b60008054819060ff1661224f576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556122616117fa565b9050801561228c5761227f81601081111561227857fe5b60366127ff565b92506000915061229d9050565b6122973333866134e7565b92509250505b6000805460ff191660011790559092909150565b600d546000908190806122cc5750506007546000915061235c565b60006122d66126eb565b905060006122e2615245565b60006122f384600b54600c54613835565b93509050600081600381111561230557fe5b1461231a5795506000945061235c9350505050565b6123248386613873565b92509050600081600381111561233657fe5b1461234b5795506000945061235c9350505050565b505160009550935061235c92505050565b9091565b600554604080516317b9b84b60e31b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000938493169163bdcdc25891608480830192602092919082900301818787803b1580156123c557600080fd5b505af11580156123d9573d6000803e3d6000fd5b505050506040513d60208110156123ef57600080fd5b50519050801561240e576124066003604a83612d52565b9150506111c4565b836001600160a01b0316856001600160a01b03161415612434576124066002604b6127ff565b60006001600160a01b038781169087161415612453575060001961247b565b506001600160a01b038086166000908152600f60209081526040808320938a16835292905220545b60008060008061248b8589612cc7565b9094509250600084600381111561249e57fe5b146124bc576124af6009604b6127ff565b96505050505050506111c4565b6001600160a01b038a166000908152600e60205260409020546124df9089612cc7565b909450915060008460038111156124f257fe5b14612503576124af6009604c6127ff565b6001600160a01b0389166000908152600e60205260409020546125269089612db8565b9094509050600084600381111561253957fe5b1461254a576124af6009604d6127ff565b6001600160a01b03808b166000908152600e6020526040808220859055918b1681522081905560001985146125a2576001600160a01b03808b166000908152600f60209081526040808320938f168352929052208390555b886001600160a01b03168a6001600160a01b03166000805160206155798339815191528a6040518082815260200191505060405180910390a35060009a9950505050505050505050565b60008054819060ff16612633576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556126456117fa565b905080156126705761266381601081111561265c57fe5b60356127ff565b9250600091506126819050565b61267b3386866134e7565b92509250505b6000805460ff1916600117905590939092509050565b60008060006126a4615245565b6126ae8686612cea565b909250905060008260038111156126c157fe5b146126d257509150600090506126e4565b60006126dd82613923565b9350935050505b9250929050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b03169182916370a0823191602480820192602092909190829003018186803b15801561273957600080fd5b505afa15801561274d573d6000803e3d6000fd5b505050506040513d602081101561276357600080fd5b505191505090565b6000805460ff166127b0576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556127c26117fa565b905080156127e0576114258160108111156127d957fe5b604e6127ff565b6127e983613932565b509150506000805460ff19166001179055919050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa083601081111561282e57fe5b83605081111561283a57fe5b604080519283526020830191909152600082820152519081900360600190a182601081111561133457fe5b600354600090819061010090046001600160a01b0316331461288d576120da600160316127ff565b612895612acd565b600954146128a9576120da600a60336127ff565b826128b26126eb565b10156128c4576120da600e60326127ff565b600c548311156128da576120da600260346127ff565b50600c54828103908111156129205760405162461bcd60e51b81526004018080602001828103825260248152602001806156c06024913960400191505060405180910390fd5b600c8190556003546129409061010090046001600160a01b031684613a1a565b600354604080516101009092046001600160a01b0316825260208201859052818101839052517f3bad0c59cf2f06e7314077049f48a93578cd16f5ef92329f1dab1420a99c177e916060908290030190a16000611334565b6000805460ff166129dd576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556129ef6117fa565b90508015612a0d57611425816010811115612a0657fe5b60276127ff565b61143633600085613b11565b6001600160a01b038116600090815260106020526040812080548291829182918291612a50575060009450849350612ac892505050565b612a608160000154600a54613fe1565b90945092506000846003811115612a7357fe5b14612a88575091935060009250612ac8915050565b612a96838260010154614020565b90945091506000846003811115612aa957fe5b14612abe575091935060009250612ac8915050565b5060009450925050505b915091565b4390565b600354600090819061010090046001600160a01b03163314612af9576120da600160426127ff565b612b01612acd565b60095414612b15576120da600a60416127ff565b600660009054906101000a90046001600160a01b03169050826001600160a01b0316632191f92a6040518163ffffffff1660e01b815260040160206040518083038186803b158015612b6657600080fd5b505afa158015612b7a573d6000803e3d6000fd5b505050506040513d6020811015612b9057600080fd5b5051612be3576040805162461bcd60e51b815260206004820152601c60248201527f6d61726b6572206d6574686f642072657475726e65642066616c736500000000604482015290519081900360640190fd5b600680546001600160a01b0319166001600160a01b03858116918217909255604080519284168352602083019190915280517fedffc32e068c7c95dfd4bdfd5c4d939a084d6b11c4199eac8436ed234d72f9269281900390910190a16000611334565b60008054819060ff16612c8d576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff19168155612c9f6117fa565b90508015612cbd5761227f816010811115612cb657fe5b601e6127ff565b612297338561404b565b600080838311612cde5750600090508183036126e4565b506003905060006126e4565b6000612cf4615245565b600080612d05866000015186613fe1565b90925090506000826003811115612d1857fe5b14612d37575060408051602081019091526000815290925090506126e4565b60408051602081019091529081526000969095509350505050565b60007f45b96fe442630264581b197e84bbada861235052c5a1aadfff9ea4e40a969aa0846010811115612d8157fe5b846050811115612d8d57fe5b604080519283526020830191909152818101859052519081900360600190a18360108111156111c457fe5b600080838301848110612dd0576000925090506126e4565b5060029150600090506126e4565b6000806000612deb615245565b612df58787612cea565b90925090506000826003811115612e0857fe5b14612e195750915060009050612e32565b612e2b612e2582613923565b86612db8565b9350935050505b935093915050565b6005546040805163d02f735160e01b81523060048201526001600160a01b038781166024830152868116604483015285811660648301526084820185905291516000938493169163d02f73519160a480830192602092919082900301818787803b158015612ea757600080fd5b505af1158015612ebb573d6000803e3d6000fd5b505050506040513d6020811015612ed157600080fd5b505190508015612ee8576124066003601b83612d52565b846001600160a01b0316846001600160a01b03161415612f0e576124066006601c6127ff565b612f166152d6565b6001600160a01b0385166000908152600e6020526040902054612f399085612cc7565b6020830181905282826003811115612f4d57fe5b6003811115612f5857fe5b9052506000905081516003811115612f6c57fe5b14612f9157612f886009601a836000015160038111156119e257fe5b925050506111c4565b612fb0846040518060200160405280666379da05b6000081525061441b565b60808201819052612fc2908590614443565b6060820152612fcf6122b1565b60c0830181905282826003811115612fe357fe5b6003811115612fee57fe5b905250600090508151600381111561300257fe5b14613054576040805162461bcd60e51b815260206004820152601860248201527f65786368616e67652072617465206d617468206572726f720000000000000000604482015290519081900360640190fd5b61307460405180602001604052808360c00151815250826080015161447d565b60a08201819052600c546130879161449c565b60e0820152600d54608082015161309e9190614443565b6101008201526001600160a01b0386166000908152600e602052604090205460608201516130cc9190612db8565b60408301819052828260038111156130e057fe5b60038111156130eb57fe5b90525060009050815160038111156130ff57fe5b1461311b57612f8860096019836000015160038111156119e257fe5b60e0810151600c55610100810151600d556020808201516001600160a01b038088166000818152600e855260408082209490945583860151928b16808252908490209290925560608501518351908152925191939092600080516020615579833981519152929081900390910190a36080810151604080519182525130916001600160a01b038816916000805160206155798339815191529181900360200190a360a081015160e082015160408051308152602081019390935282810191909152517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a16000979650505050505050565b6000805460ff16613259576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff1916815561326b6117fa565b905080156132895761142581601081111561328257fe5b60086127ff565b61143633846144d2565b6000805460ff166132d8576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556132ea6117fa565b9050801561330157611425816010811115612a0657fe5b61143633846000613b11565b60008054819060ff16613354576040805162461bcd60e51b815260206004820152600a6024820152691c994b595b9d195c995960b21b604482015290519081900360640190fd5b6000805460ff191681556133666117fa565b905080156133915761338481601081111561337d57fe5b600f6127ff565b9250600091506134289050565b836001600160a01b031663a6afed956040518163ffffffff1660e01b8152600401602060405180830381600087803b1580156133cc57600080fd5b505af11580156133e0573d6000803e3d6000fd5b505050506040513d60208110156133f657600080fd5b5051905080156134165761338481601081111561340f57fe5b60106127ff565b6134223387878761476e565b92509250505b6000805460ff191660011790559094909350915050565b60035460009061010090046001600160a01b031633146134655761120c600160476127ff565b61346d612acd565b600954146134815761120c600a60486127ff565b670de0b6b3a764000082111561349d5761120c600260496127ff565b6008805490839055604080518281526020810185905281517faaa68312e2ea9d50e16af5068410ab56e1a1fd06037b1a35664812c30f821460929181900390910190a16000611334565b60055460408051631200453160e11b81523060048201526001600160a01b0386811660248301528581166044830152606482018590529151600093849384939116916324008a629160848082019260209290919082900301818787803b15801561355057600080fd5b505af1158015613564573d6000803e3d6000fd5b505050506040513d602081101561357a57600080fd5b50519050801561359e576135916003603883612d52565b925060009150612e329050565b6135a6612acd565b600954146135ba57613591600a60396127ff565b6135c2615323565b6001600160a01b03861660009081526010602052604090206001015460608201526135ec86612a19565b608083018190526020830182600381111561360357fe5b600381111561360e57fe5b905250600090508160200151600381111561362557fe5b1461364f5761364160096037836020015160038111156119e257fe5b935060009250612e32915050565b6000198514156136685760808101516040820152613670565b604081018590525b61367e878260400151614db7565b60e08201819052608082015161369391612cc7565b60a08301819052602083018260038111156136aa57fe5b60038111156136b557fe5b90525060009050816020015160038111156136cc57fe5b146137085760405162461bcd60e51b815260040180806020018281038252603a81526020018061553f603a913960400191505060405180910390fd5b613718600b548260e00151612cc7565b60c083018190526020830182600381111561372f57fe5b600381111561373a57fe5b905250600090508160200151600381111561375157fe5b1461378d5760405162461bcd60e51b81526004018080602001828103825260318152602001806155996031913960400191505060405180910390fd5b60a080820180516001600160a01b03808a16600081815260106020908152604091829020948555600a5460019095019490945560c0870151600b81905560e088015195518251948f16855294840192909252828101949094526060820192909252608081019190915290517f1a2a22cb034d26d1854bdc6666a5b91fe25efbbb5dcad3b0355478d6f5c362a1929181900390910190a160e00151600097909650945050505050565b6000806000806138458787612db8565b9092509050600082600381111561385857fe5b146138695750915060009050612e32565b612e2b8186612cc7565b600061387d615245565b60008061389286670de0b6b3a7640000613fe1565b909250905060008260038111156138a557fe5b146138c4575060408051602081019091526000815290925090506126e4565b6000806138d18388614020565b909250905060008260038111156138e457fe5b14613906575060408051602081019091526000815290945092506126e4915050565b604080516020810190915290815260009890975095505050505050565b51670de0b6b3a7640000900490565b600080600080613940612acd565b6009541461395f57613954600a604f6127ff565b93509150612ac89050565b6139693386614db7565b905080600c54019150600c548210156139c9576040805162461bcd60e51b815260206004820181905260248201527f61646420726573657276657320756e6578706563746564206f766572666c6f77604482015290519081900360640190fd5b600c829055604080513381526020810183905280820184905290517fa91e67c5ea634cd43a12c5a482724b03de01e85ca68702a53d0c2f45cb7c1dc59181900360600190a160009350915050915091565b6011546040805163a9059cbb60e01b81526001600160a01b0385811660048301526024820185905291519190921691829163a9059cbb9160448082019260009290919082900301818387803b158015613a7257600080fd5b505af1158015613a86573d6000803e3d6000fd5b5050505060003d60008114613aa25760208114613aac57600080fd5b6000199150613ab8565b60206000803e60005191505b5080613b0b576040805162461bcd60e51b815260206004820152601960248201527f544f4b454e5f5452414e534645525f4f55545f4641494c454400000000000000604482015290519081900360640190fd5b50505050565b6000821580613b1e575081155b613b595760405162461bcd60e51b815260040180806020018281038252603481526020018061568c6034913960400191505060405180910390fd5b613b61615369565b613b696122b1565b6040830181905260208301826003811115613b8057fe5b6003811115613b8b57fe5b9052506000905081602001516003811115613ba257fe5b14613bc657613bbe6009602b836020015160038111156119e257fe5b915050611334565b8315613c47576060810184905260408051602081018252908201518152613bed9085612697565b6080830181905260208301826003811115613c0457fe5b6003811115613c0f57fe5b9052506000905081602001516003811115613c2657fe5b14613c4257613bbe60096029836020015160038111156119e257fe5b613cc0565b613c638360405180602001604052808460400151815250615001565b6060830181905260208301826003811115613c7a57fe5b6003811115613c8557fe5b9052506000905081602001516003811115613c9c57fe5b14613cb857613bbe6009602a836020015160038111156119e257fe5b608081018390525b60055460608201516040805163eabe7d9160e01b81523060048201526001600160a01b03898116602483015260448201939093529051600093929092169163eabe7d919160648082019260209290919082900301818787803b158015613d2557600080fd5b505af1158015613d39573d6000803e3d6000fd5b505050506040513d6020811015613d4f57600080fd5b505190508015613d6f57613d666003602883612d52565b92505050611334565b613d77612acd565b60095414613d8b57613d66600a602c6127ff565b613d9b600d548360600151612cc7565b60a0840181905260208401826003811115613db257fe5b6003811115613dbd57fe5b9052506000905082602001516003811115613dd457fe5b14613df057613d666009602e846020015160038111156119e257fe5b6001600160a01b0386166000908152600e60205260409020546060830151613e189190612cc7565b60c0840181905260208401826003811115613e2f57fe5b6003811115613e3a57fe5b9052506000905082602001516003811115613e5157fe5b14613e6d57613d666009602d846020015160038111156119e257fe5b8160800151613e7a6126eb565b1015613e8c57613d66600e602f6127ff565b60a0820151600d5560c08201516001600160a01b0387166000908152600e60205260409020556080820151613ec2908790613a1a565b6060820151604080519182525130916001600160a01b038916916000805160206155798339815191529181900360200190a36080820151606080840151604080516001600160a01b038b168152602081019490945283810191909152517fe5b754fb1abb7f01b499791d0b820ae3b6af3424ac1c59768edb53f4ec31a9299281900390910190a160055460808301516060840151604080516351dff98960e01b81523060048201526001600160a01b038b81166024830152604482019490945260648101929092525191909216916351dff98991608480830192600092919082900301818387803b158015613fb657600080fd5b505af1158015613fca573d6000803e3d6000fd5b5060009250613fd7915050565b9695505050505050565b60008083613ff4575060009050806126e4565b8383028385828161400157fe5b0414614015575060029150600090506126e4565b6000925090506126e4565b6000808261403457506001905060006126e4565b600083858161403f57fe5b04915091509250929050565b60055460408051634ef4c3e160e01b81523060048201526001600160a01b03858116602483015260448201859052915160009384938493911691634ef4c3e19160648082019260209290919082900301818787803b1580156140ac57600080fd5b505af11580156140c0573d6000803e3d6000fd5b505050506040513d60208110156140d657600080fd5b5051905080156140fa576140ed6003601f83612d52565b9250600091506126e49050565b614102612acd565b60095414614116576140ed600a60226127ff565b61411e615369565b6141266122b1565b604083018190526020830182600381111561413d57fe5b600381111561414857fe5b905250600090508160200151600381111561415f57fe5b146141895761417b60096021836020015160038111156119e257fe5b9350600092506126e4915050565b6141938686614db7565b60c08201819052604080516020810182529083015181526141b49190615001565b60608301819052602083018260038111156141cb57fe5b60038111156141d657fe5b90525060009050816020015160038111156141ed57fe5b1461423f576040805162461bcd60e51b815260206004820181905260248201527f4d494e545f45584348414e47455f43414c43554c4154494f4e5f4641494c4544604482015290519081900360640190fd5b61424f600d548260600151612db8565b608083018190526020830182600381111561426657fe5b600381111561427157fe5b905250600090508160200151600381111561428857fe5b146142c45760405162461bcd60e51b81526004018080602001828103825260288152602001806156646028913960400191505060405180910390fd5b6001600160a01b0386166000908152600e602052604090205460608201516142ec9190612db8565b60a083018190526020830182600381111561430357fe5b600381111561430e57fe5b905250600090508160200151600381111561432557fe5b146143615760405162461bcd60e51b815260040180806020018281038252602b8152602001806154dd602b913960400191505060405180910390fd5b6080810151600d5560a08101516001600160a01b0387166000818152600e60209081526040918290209390935560c084015160608086015183519485529484019190915282820193909352517f4c209b5fc8ad50758f13e2e1088ba56a560dff690a1c6fef26394f4c03821c4f929181900390910190a1606081015160408051918252516001600160a01b0388169130916000805160206155798339815191529181900360200190a360c001516000969095509350505050565b6000670de0b6b3a7640000614434848460000151615018565b8161443b57fe5b049392505050565b60006113348383604051806040016040528060158152602001747375627472616374696f6e20756e646572666c6f7760581b81525061505a565b6000614487615245565b61449184846150f1565b90506111c481613923565b60006113348383604051806040016040528060118152602001706164646974696f6e206f766572666c6f7760781b81525061511b565b6005546040805163368f515360e21b81523060048201526001600160a01b0385811660248301526044820185905291516000938493169163da3d454c91606480830192602092919082900301818787803b15801561452f57600080fd5b505af1158015614543573d6000803e3d6000fd5b505050506040513d602081101561455957600080fd5b505190508015614578576145706003600e83612d52565b915050610d00565b614580612acd565b6009541461459357614570600a806127ff565b8261459c6126eb565b10156145ae57614570600e60096127ff565b6145b66153a7565b6145bf85612a19565b60208301819052828260038111156145d357fe5b60038111156145de57fe5b90525060009050815160038111156145f257fe5b146146175761460e60096007836000015160038111156119e257fe5b92505050610d00565b614625816020015185612db8565b604083018190528282600381111561463957fe5b600381111561464457fe5b905250600090508151600381111561465857fe5b146146745761460e6009600c836000015160038111156119e257fe5b614680600b5485612db8565b606083018190528282600381111561469457fe5b600381111561469f57fe5b90525060009050815160038111156146b357fe5b146146cf5761460e6009600b836000015160038111156119e257fe5b6040808201516001600160a01b0387166000908152601060205291909120908155600a546001909101556060810151600b5561470b8585613a1a565b60408082015160608084015183516001600160a01b038a16815260208101899052808501939093529082015290517f13ed6866d4e1ee6da46f845c46d7e54120883d75c5ea9a2dacc1c4ca8984ab809181900360800190a1600095945050505050565b60055460408051632fe3f38f60e11b81523060048201526001600160a01b0384811660248301528781166044830152868116606483015260848201869052915160009384938493911691635fc7e71e9160a48082019260209290919082900301818787803b1580156147df57600080fd5b505af11580156147f3573d6000803e3d6000fd5b505050506040513d602081101561480957600080fd5b50519050801561482d576148206003601283612d52565b925060009150614dae9050565b614835612acd565b6009541461484957614820600a60166127ff565b614851612acd565b846001600160a01b0316636c540baf6040518163ffffffff1660e01b815260040160206040518083038186803b15801561488a57600080fd5b505afa15801561489e573d6000803e3d6000fd5b505050506040513d60208110156148b457600080fd5b5051146148c757614820600a60116127ff565b866001600160a01b0316866001600160a01b031614156148ed57614820600660176127ff565b846148fe57614820600760156127ff565b60001985141561491457614820600760146127ff565b600080600080876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561495357600080fd5b505afa158015614967573d6000803e3d6000fd5b505050506040513d602081101561497d57600080fd5b505160ff16614a6f5760055460408051630438cec560e31b81523060048201526001600160a01b038b81166024830152604482018d90529151600093849316916321c67628916064808301926060929190829003018186803b1580156149e257600080fd5b505afa1580156149f6573d6000803e3d6000fd5b505050506040513d6060811015614a0c57600080fd5b50805160409091015190925090508115614a575760405162461bcd60e51b81526004018080602001828103825260368152602001806157116036913960400191505060405180910390fd5b614a628d8d836134e7565b9096509450614a80915050565b614a7a8b8b8b6134e7565b90945092505b8315614aad57614a9c846010811115614a9557fe5b60186127ff565b965060009550614dae945050505050565b6005546040805163c488847b60e01b81523060048201526001600160a01b038b8116602483015260448201879052825193169263c488847b92606480840193919291829003018186803b158015614b0357600080fd5b505afa158015614b17573d6000803e3d6000fd5b505050506040513d6040811015614b2d57600080fd5b50805160209091015190925090508115614b785760405162461bcd60e51b81526004018080602001828103825260338152602001806155ca6033913960400191505060405180910390fd5b80886001600160a01b03166370a082318c6040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015614bcf57600080fd5b505afa158015614be3573d6000803e3d6000fd5b505050506040513d6020811015614bf957600080fd5b50511015614c4e576040805162461bcd60e51b815260206004820152601860248201527f4c49515549444154455f5345495a455f544f4f5f4d5543480000000000000000604482015290519081900360640190fd5b60006001600160a01b038916301415614c7457614c6d308d8d85612e3a565b9050614cfe565b6040805163b2a02ff160e01b81526001600160a01b038e811660048301528d81166024830152604482018590529151918b169163b2a02ff1916064808201926020929091908290030181600087803b158015614ccf57600080fd5b505af1158015614ce3573d6000803e3d6000fd5b505050506040513d6020811015614cf957600080fd5b505190505b8015614d48576040805162461bcd60e51b81526020600482015260146024820152731d1bdad95b881cd95a5e9d5c994819985a5b195960621b604482015290519081900360640190fd5b604080516001600160a01b03808f168252808e1660208301528183018790528b1660608201526080810184905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb529181900360a00190a16000975092955050505050505b94509492505050565b601154604080516370a0823160e01b815230600482015290516000926001600160a01b031691839183916370a08231916024808301926020929190829003018186803b158015614e0657600080fd5b505afa158015614e1a573d6000803e3d6000fd5b505050506040513d6020811015614e3057600080fd5b5051604080516323b872dd60e01b81526001600160a01b038881166004830152306024830152604482018890529151929350908416916323b872dd9160648082019260009290919082900301818387803b158015614e8d57600080fd5b505af1158015614ea1573d6000803e3d6000fd5b5050505060003d60008114614ebd5760208114614ec757600080fd5b6000199150614ed3565b60206000803e60005191505b5080614f26576040805162461bcd60e51b815260206004820152601860248201527f544f4b454e5f5452414e534645525f494e5f4641494c45440000000000000000604482015290519081900360640190fd5b601154604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015614f7157600080fd5b505afa158015614f85573d6000803e3d6000fd5b505050506040513d6020811015614f9b57600080fd5b5051905082811015614ff4576040805162461bcd60e51b815260206004820152601a60248201527f544f4b454e5f5452414e534645525f494e5f4f564552464c4f57000000000000604482015290519081900360640190fd5b9190910395945050505050565b600080600061500e615245565b6126ae8686615170565b600061133483836040518060400160405280601781526020017f6d756c7469706c69636174696f6e206f766572666c6f770000000000000000008152506151cf565b600081848411156150e95760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156150ae578181015183820152602001615096565b50505050905090810190601f1680156150db5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6150f9615245565b6040518060200160405280615112856000015185615018565b90529392505050565b600083830182858210156110f55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156150ae578181015183820152602001615096565b600061517a615245565b60008061518f670de0b6b3a764000087613fe1565b909250905060008260038111156151a257fe5b146151c1575060408051602081019091526000815290925090506126e4565b6126dd818660000151613873565b60008315806151dc575082155b156151e957506000611334565b838302838582816151f657fe5b041483906110f55760405162461bcd60e51b81526020600482018181528351602484015283519092839260449091019190850190808383600083156150ae578181015183820152602001615096565b6040518060200160405280600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f1061529957805160ff19168380011785556152c6565b828001600101855582156152c6579182015b828111156152c65782518255916020019190600101906152ab565b506152d29291506153d0565b5090565b604080516101208101909152806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805161010081019091528060008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b6040805160e0810190915280600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b604080516080810190915280600081526020016000815260200160008152602001600081525090565b610e9891905b808211156152d257600081556001016153d656fe6f6e6c792061646d696e206d617920696e697469616c697a6520746865206d61726b65746d61726b6574206d6179206f6e6c7920626520696e697469616c697a6564206f6e63656f6e6c79207468652061646d696e206d617920736574207468652078636e2d6c696b652064656c6567617465696e697469616c2065786368616e67652072617465206d7573742062652067726561746572207468616e207a65726f2e73657474696e6720696e7465726573742072617465206d6f64656c206661696c65646f6e6c79207468652061646d696e206d61792063616c6c205f72657369676e496d706c656d656e746174696f6e4d494e545f4e45575f4143434f554e545f42414c414e43455f43414c43554c4154494f4e5f4641494c4544626f72726f7742616c616e636553746f7265643a20626f72726f7742616c616e636553746f726564496e7465726e616c206661696c656452455041595f424f52524f575f4e45575f4143434f554e545f424f52524f575f42414c414e43455f43414c43554c4154494f4e5f4641494c4544ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef52455041595f424f52524f575f4e45575f544f54414c5f42414c414e43455f43414c43554c4154494f4e5f4641494c45444c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f4641494c45444f45726332303a3a7377656570546f6b656e3a2063616e206e6f7420737765657020756e6465726c79696e6720746f6b656e65786368616e67655261746553746f7265643a2065786368616e67655261746553746f726564496e7465726e616c206661696c65644d494e545f4e45575f544f54414c5f535550504c595f43414c43554c4154494f4e5f4641494c45446f6e65206f662072656465656d546f6b656e73496e206f722072656465656d416d6f756e74496e206d757374206265207a65726f72656475636520726573657276657320756e657870656374656420756e646572666c6f776f6e6c79207468652061646d696e206d61792063616c6c205f6265636f6d65496d706c656d656e746174696f6e4c49515549444154455f434f4d5054524f4c4c45525f43414c43554c4154455f414d4f554e545f5345495a455f45585f4641494c4544a265627a7a72315820936147f6002f6239da522afab299737f78b1db5a8fa4084767e1f549e0d8cbbc64736f6c63430005110032
Deployed Bytecode Sourcemap
124941:1059:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;124941:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7847:18;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;7847:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52252:237;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;52252:237:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;118092:149;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;118092:149:0;;:::i;:::-;;;;;;;;;;;;;;;;125718:279;;;:::i;:::-;;9150:33;;;:::i;56501:224::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56501:224:0;-1:-1:-1;;;;;56501:224:0;;:::i;9795:23::-;;;:::i;59346:261::-;;;:::i;115343:684::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;115343:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;115343:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;115343:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;115343:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;115343:684:0;;;;;;;;-1:-1:-1;115343:684:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;115343:684:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;115343:684:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;115343:684:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;115343:684:0;;-1:-1:-1;;;115343:684:0;;;;;-1:-1:-1;115343:684:0;;-1:-1:-1;115343:684:0:i;119650:263::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119650:263:0;-1:-1:-1;;;;;119650:263:0;;:::i;51587:195::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51587:195:0;;;;;;;;;;;;;;;;;:::i;118529:189::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;118529:189:0;;;;;;;;:::i;8574:35::-;;;:::i;:::-;;;;-1:-1:-1;;;;;8574:35:0;;;;;;;;;;;;;;8043:21;;;:::i;:::-;;;;;;;;;;;;;;;;;;;53520:354;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53520:354:0;-1:-1:-1;;;;;53520:354:0;;:::i;61227:88::-;;;:::i;120147:119::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;120147:119:0;;:::i;101937:735::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;101937:735:0;-1:-1:-1;;;;;101937:735:0;;:::i;9559:24::-;;;:::i;125259:349::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;125259:349:0;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;125259:349:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;125259:349:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;125259:349:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;125259:349:0;;-1:-1:-1;125259:349:0;;-1:-1:-1;;;;;125259:349:0:i;17698:29::-;;;:::i;8700:39::-;;;:::i;107895:571::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;107895:571:0;;:::i;10768:56::-;;;:::i;9273:30::-;;;:::i;15630:25::-;;;:::i;53152:112::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;53152:112:0;-1:-1:-1;;;;;53152:112:0;;:::i;56018:192::-;;;:::i;117370:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117370:133:0;;:::i;9689:25::-;;;:::i;7943:20::-;;;:::i;56934:287::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;56934:287:0;-1:-1:-1;;;;;56934:287:0;;:::i;10982:36::-;;;:::i;46595:1529::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;46595:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5:28;;2:2;;;46:1;43;36:12;2:2;46595:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46595:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46595:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46595:1529:0;;;;;;;;-1:-1:-1;46595:1529:0;;-1:-1:-1;;;;;5:28;;2:2;;;46:1;43;36:12;2:2;46595:1529:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;46595:1529:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;-1:-1;;;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;46595:1529:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;46595:1529:0;;-1:-1:-1;;;46595:1529:0;;;;;-1:-1:-1;46595:1529:0;;-1:-1:-1;46595:1529:0:i;116417:133::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;116417:133:0;;:::i;61563:3852::-;;;:::i;51095:185::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;51095:185:0;;;;;;;;:::i;9424:23::-;;;:::i;55688:184::-;;;:::i;95283:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;95283:194:0;;;;;;;;;;;;;;;;;:::i;100045:647::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;100045:647:0;-1:-1:-1;;;;;100045:647:0;;:::i;58898:198::-;;;:::i;54220:703::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;54220:703:0;-1:-1:-1;;;;;54220:703:0;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;117771:113;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;117771:113:0;;:::i;116901:::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;116901:113:0;;:::i;52819:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;52819:143:0;;;;;;;;;;:::i;124508:215::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;124508:215:0;-1:-1:-1;;;;;124508:215:0;;:::i;100970:742::-;;;:::i;110859:633::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;110859:633:0;-1:-1:-1;;;;;110859:633:0;;:::i;8841:42::-;;;:::i;119200:237::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;119200:237:0;;;;;;;;;;;;;;;;;:::i;8463:28::-;;;:::i;55351:161::-;;;:::i;102975:607::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102975:607:0;;:::i;7847:18::-;;;;;;;;;;;;;;;-1:-1:-1;;7847:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52252:237::-;52351:10;52320:4;52372:23;;;:18;:23;;;;;;;;-1:-1:-1;;;;;52372:32:0;;;;;;;;;;;:41;;;52429:30;;;;;;;52320:4;;52351:10;52372:32;;52351:10;;52429:30;;;;;;;;;;;52477:4;52470:11;;;52252:237;;;;;:::o;118092:149::-;118149:4;118167:8;118180:32;118200:11;118180:19;:32::i;:::-;-1:-1:-1;118166:46:0;-1:-1:-1;;118092:149:0;;;;:::o;125718:279::-;125934:5;;;;;-1:-1:-1;;;;;125934:5:0;125920:10;:19;125912:77;;;;-1:-1:-1;;;125912:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125718:279::o;9150:33::-;;;;:::o;56501:224::-;56579:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;56604:16;:14;:16::i;:::-;:40;56596:75;;;;;-1:-1:-1;;;56596:75:0;;;;;;;;;;;;-1:-1:-1;;;56596:75:0;;;;;;;;;;;;;;;56689:28;56709:7;56689:19;:28::i;:::-;56682:35;;114455:1;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;56501:224;;-1:-1:-1;56501:224:0:o;9795:23::-;;;;:::o;59346:261::-;59397:4;59415:13;59430:11;59445:28;:26;:28::i;:::-;59414:59;;-1:-1:-1;59414:59:0;-1:-1:-1;59499:18:0;59492:3;:25;;;;;;;;;59484:91;;;;-1:-1:-1;;;59484:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59593:6;-1:-1:-1;;59346:261:0;;:::o;115343:684::-;115777:107;115794:12;115808:18;115828:28;115858:5;115865:7;115874:9;115777:16;:107::i;:::-;115944:10;:24;;-1:-1:-1;;;;;;115944:24:0;-1:-1:-1;;;;;115944:24:0;;;;;;;;;;;115979:40;;;-1:-1:-1;;;115979:40:0;;;;115994:10;;;;;115979:38;;:40;;;;;;;;;;;;;;;115994:10;115979:40;;;5:2:-1;;;;30:1;27;20:12;5:2;115979:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;115979:40:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;;;;;;;;;115343:684:0:o;119650:263::-;119746:10;;-1:-1:-1;;;;;119728:28:0;;;119746:10;;119728:28;;119720:91;;;;-1:-1:-1;;;119720:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119837:30;;;-1:-1:-1;;;119837:30:0;;119861:4;119837:30;;;;;;119819:15;;-1:-1:-1;;;;;119837:15:0;;;;;:30;;;;;;;;;;;;;;;:15;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;119837:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;119837:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;119837:30:0;119890:5;;119875:30;;;-1:-1:-1;;;119875:30:0;;119890:5;;;;-1:-1:-1;;;;;119890:5:0;;;119875:30;;;;;;;;;;;;119837;;-1:-1:-1;119875:14:0;;;;;:30;;;;;-1:-1:-1;;119875:30:0;;;;;;;;-1:-1:-1;119875:14:0;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;119875:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;119875:30:0;;;;119650:263;;:::o;51587:195::-;51682:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;51706:44;51721:10;51733:3;51738;51743:6;51706:14;:44::i;:::-;:68;51699:75;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;51587:195;;-1:-1:-1;;;51587:195:0:o;118529:189::-;118610:4;118628:8;118641:48;118667:8;118677:11;118641:25;:48::i;:::-;-1:-1:-1;118627:62:0;118529:189;-1:-1:-1;;;;118529:189:0:o;8574:35::-;;;-1:-1:-1;;;;;8574:35:0;;:::o;8043:21::-;;;;;;:::o;53520:354::-;53582:4;53599:23;;:::i;:::-;53625:38;;;;;;;;53640:21;:19;:21::i;:::-;53625:38;;-1:-1:-1;;;;;53739:20:0;;53675:14;53739:20;;;:13;:20;;;;;;53599:64;;-1:-1:-1;53675:14:0;;;53707:53;;53599:64;;53707:17;:53::i;:::-;53674:86;;-1:-1:-1;53674:86:0;-1:-1:-1;53787:18:0;53779:4;:26;;;;;;;;;53771:70;;;;;-1:-1:-1;;;53771:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;53859:7;53520:354;-1:-1:-1;;;;53520:354:0:o;61227:88::-;61269:4;61293:14;:12;:14::i;:::-;61286:21;;61227:88;:::o;120147:119::-;120203:4;120227:31;120248:9;120227:20;:31::i;101937:735::-;102084:5;;102015:4;;102084:5;;;-1:-1:-1;;;;;102084:5:0;102070:10;:19;102066:124;;102113:65;102118:18;102138:39;102113:4;:65::i;:::-;102106:72;;;;102066:124;102240:11;;102337:30;;;-1:-1:-1;;;102337:30:0;;;;-1:-1:-1;;;;;102240:11:0;;;;102337:28;;;;;:30;;;;;;;;;;;;;;:28;:30;;;5:2:-1;;;;30:1;27;20:12;5:2;102337:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;102337:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;102337:30:0;102329:71;;;;;-1:-1:-1;;;102329:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;102468:11;:28;;-1:-1:-1;;;;;;102468:28:0;-1:-1:-1;;;;;102468:28:0;;;;;;;;;102578:46;;;;;;;;;;;;;;;;;;;;;;;;;;;102649:14;102644:20;102637:27;101937:735;-1:-1:-1;;;101937:735:0:o;9559:24::-;;;;:::o;125259:349::-;125545:5;;;;;-1:-1:-1;;;;;125545:5:0;125531:10;:19;125523:77;;;;-1:-1:-1;;;125523:77:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125259:349;:::o;17698:29::-;;;-1:-1:-1;;;;;17698:29:0;;:::o;8700:39::-;;;-1:-1:-1;;;;;8700:39:0;;:::o;107895:571::-;107970:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;108000:16;:14;:16::i;:::-;107987:29;-1:-1:-1;108031:29:0;;108027:277;;108222:70;108233:5;108227:12;;;;;;;;108241:50;108222:4;:70::i;:::-;108215:77;;;;;108027:277;108424:34;108445:12;108424:20;:34::i;:::-;108417:41;;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;107895:571;;-1:-1:-1;107895:571:0:o;10768:56::-;10818:6;10768:56;:::o;9273:30::-;;;;:::o;15630:25::-;;;-1:-1:-1;;;;;15630:25:0;;:::o;53152:112::-;-1:-1:-1;;;;;53236:20:0;53209:7;53236:20;;;:13;:20;;;;;;;53152:112::o;56018:192::-;56080:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;56105:16;:14;:16::i;:::-;:40;56097:75;;;;;-1:-1:-1;;;56097:75:0;;;;;;;;;;;;-1:-1:-1;;;56097:75:0;;;;;;;;;;;;;;;-1:-1:-1;56190:12:0;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;56018:192;:::o;117370:133::-;117433:4;117457:38;117482:12;117457:24;:38::i;9689:25::-;;;;:::o;7943:20::-;;;;;;;;;;;;;;-1:-1:-1;;7943:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56934:287;57001:4;57019:13;57034:11;57049:36;57077:7;57049:27;:36::i;:::-;57018:67;;-1:-1:-1;57018:67:0;-1:-1:-1;57111:18:0;57104:3;:25;;;;;;;;;57096:93;;;;-1:-1:-1;;;57096:93:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10982:36;11014:4;10982:36;:::o;46595:1529::-;46949:5;;;;;-1:-1:-1;;;;;46949:5:0;46935:10;:19;46927:68;;;;-1:-1:-1;;;46927:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47014:18;;:23;:43;;;;-1:-1:-1;47041:11:0;;:16;47014:43;47006:91;;;;-1:-1:-1;;;47006:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47148:27;:58;;;47225:31;47217:92;;;;-1:-1:-1;;;47217:92:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47354:8;47365:29;47381:12;47365:15;:29::i;:::-;47354:40;-1:-1:-1;47413:27:0;;47405:66;;;;;-1:-1:-1;;;47405:66:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;47611:16;:14;:16::i;:::-;47590:18;:37;29696:4;47638:11;:25;47763:46;47790:18;47763:26;:46::i;:::-;47757:52;-1:-1:-1;47828:27:0;;47820:74;;;;-1:-1:-1;;;47820:74:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47907:12;;;;:4;;:12;;;;;:::i;:::-;-1:-1:-1;47930:16:0;;;;:6;;:16;;;;;:::i;:::-;-1:-1:-1;;47957:8:0;:20;;;;;;-1:-1:-1;;47957:20:0;;;;;;:8;48098:18;;;;;47957:20;48098:18;;;-1:-1:-1;;;;;46595:1529:0:o;116417:133::-;116466:4;116484:8;116497:24;116510:10;116497:12;:24::i;61563:3852::-;61605:4;61671:23;61697:16;:14;:16::i;:::-;61755:18;;61671:42;;-1:-1:-1;61843:45:0;;;61839:105;;;61917:14;61905:27;;;;;;61839:105;62011:14;62028;:12;:14::i;:::-;62073:12;;62117:13;;62165:11;;62273:17;;:71;;;-1:-1:-1;;;62273:71:0;;;;;;;;;;;;;;;;;;;;;;62011:31;;-1:-1:-1;62073:12:0;;62117:13;;62165:11;;62053:17;;-1:-1:-1;;;;;62273:17:0;;;;:31;;:71;;;;;;;;;;;;;;:17;:71;;;5:2:-1;;;;30:1;27;20:12;5:2;62273:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;62273:71:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;62273:71:0;;-1:-1:-1;8218:9:0;62363:43;;;62355:84;;;;;-1:-1:-1;;;62355:84:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;62530:17;62549:15;62568:52;62576:18;62596:23;62568:7;:52::i;:::-;62529:91;;-1:-1:-1;62529:91:0;-1:-1:-1;62650:18:0;62639:7;:29;;;;;;;;;62631:73;;;;;-1:-1:-1;;;62631:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;63196:31;;:::i;:::-;63238:24;63273:20;63304:21;63336:19;63402:58;63412:35;;;;;;;;63427:18;63412:35;;;63449:10;63402:9;:58::i;:::-;63368:92;;-1:-1:-1;63368:92:0;-1:-1:-1;63486:18:0;63475:7;:29;;;;;;;;;63471:183;;63528:114;63539:16;63557:69;63633:7;63628:13;;;;;;;;63528:10;:114::i;:::-;63521:121;;;;;;;;;;;;;;;;;;63471:183;63699:53;63717:20;63739:12;63699:17;:53::i;:::-;63666:86;;-1:-1:-1;63666:86:0;-1:-1:-1;63778:18:0;63767:7;:29;;;;;;;;;63763:181;;63820:112;63831:16;63849:67;63923:7;63918:13;;;;;;;63763:181;63985:42;63993:19;64014:12;63985:7;:42::i;:::-;63956:71;;-1:-1:-1;63956:71:0;-1:-1:-1;64053:18:0;64042:7;:29;;;;;;;;;64038:178;;64095:109;64106:16;64124:64;64195:7;64190:13;;;;;;;64038:178;64258:100;64283:38;;;;;;;;64298:21;;64283:38;;;64323:19;64344:13;64258:24;:100::i;:::-;64228:130;;-1:-1:-1;64228:130:0;-1:-1:-1;64384:18:0;64373:7;:29;;;;;;;;;64369:179;;64426:110;64437:16;64455:65;64527:7;64522:13;;;;;;;64369:179;64588:82;64613:20;64635:16;64653;64588:24;:82::i;:::-;64560:110;;-1:-1:-1;64560:110:0;-1:-1:-1;64696:18:0;64685:7;:29;;;;;;;;;64681:177;;64738:108;64749:16;64767:63;64837:7;64832:13;;;;;;;64681:177;65061:18;:39;;;65111:11;:28;;;65150:12;:30;;;65191:13;:32;;;65288:79;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;65392:14;65380:27;;;;;;;;;;;;;;;;61563:3852;:::o;51095:185::-;51173:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;51197:51;51212:10;51224;51236:3;51241:6;51197:14;:51::i;:::-;:75;51190:82;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;51095:185;;-1:-1:-1;;51095:185:0:o;9424:23::-;;;;:::o;55688:184::-;55765:17;;55741:4;;-1:-1:-1;;;;;55765:17:0;:31;55797:14;:12;:14::i;:::-;55813:12;;55827:13;;55842:21;;55765:99;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55765:99:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55765:99:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;55765:99:0;;-1:-1:-1;55688:184:0;:::o;95283:194::-;95385:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;95409:60;95423:10;95435;95447:8;95457:11;95409:13;:60::i;:::-;95402:67;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;95283:194;;-1:-1:-1;;;95283:194:0:o;100045:647::-;100190:5;;100122:4;;100190:5;;;-1:-1:-1;;;;;100190:5:0;100176:10;:19;100172:126;;100219:67;100224:18;100244:41;100219:4;:67::i;100172:126::-;100397:12;;;-1:-1:-1;;;;;100480:30:0;;;-1:-1:-1;;;;;;100480:30:0;;;;;;;100595:49;;;100397:12;;;;100595:49;;;;;;;;;;;;;;;;;;;;;;;100669:14;100664:20;;58898:198;58958:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;58983:16;:14;:16::i;:::-;:40;58975:75;;;;;-1:-1:-1;;;58975:75:0;;;;;;;;;;;;-1:-1:-1;;;58975:75:0;;;;;;;;;;;;;;;59068:20;:18;:20::i;:::-;59061:27;;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;58898:198;:::o;54220:703::-;-1:-1:-1;;;;;54344:22:0;;54288:4;54344:22;;;:13;:22;;;;;;54288:4;;;;;;;;;54495:36;54358:7;54495:27;:36::i;:::-;54471:60;-1:-1:-1;54471:60:0;-1:-1:-1;54554:18:0;54546:4;:26;;;;;;;;;54542:99;;54602:16;54597:22;54589:40;-1:-1:-1;54621:1:0;;-1:-1:-1;54621:1:0;;-1:-1:-1;54621:1:0;;-1:-1:-1;54589:40:0;;-1:-1:-1;;;;54589:40:0;54542:99;54684:28;:26;:28::i;:::-;54653:59;-1:-1:-1;54653:59:0;-1:-1:-1;54735:18:0;54727:4;:26;;;;;;;;;54723:99;;54783:16;54778:22;;54723:99;-1:-1:-1;54847:14:0;;-1:-1:-1;54864:13:0;;-1:-1:-1;54879:13:0;-1:-1:-1;54879:13:0;-1:-1:-1;54220:703:0;;;;;;:::o;117771:113::-;117824:4;117848:28;117863:12;117848:14;:28::i;116901:113::-;116954:4;116978:28;116993:12;116978:14;:28::i;52819:143::-;-1:-1:-1;;;;;52920:25:0;;;52893:7;52920:25;;;:18;:25;;;;;;;;:34;;;;;;;;;;;;;52819:143::o;124508:215::-;124604:5;;;;;-1:-1:-1;;;;;124604:5:0;124590:10;:19;124582:76;;;;-1:-1:-1;;;124582:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;124677:10;;124669:46;;;-1:-1:-1;;;124669:46:0;;-1:-1:-1;;;;;124669:46:0;;;;;;;;;124677:10;;;;;124669:28;;:46;;;;;124677:10;;124669:46;;;;;;;124677:10;;124669:46;;;5:2:-1;;;;30:1;27;20:12;5:2;124669:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;124669:46:0;;;;124508:215;:::o;100970:742::-;101120:12;;101012:4;;-1:-1:-1;;;;;101120:12:0;101106:10;:26;;;:54;;-1:-1:-1;101136:10:0;:24;101106:54;101102:164;;;101184:70;101189:18;101209:44;101184:4;:70::i;:::-;101177:77;;;;101102:164;101350:5;;;101392:12;;;-1:-1:-1;;;;;101392:12:0;;;101350:5;101465:20;;;-1:-1:-1;;;;;;101465:20:0;;;;;;;-1:-1:-1;;;;;;101534:25:0;;;;;;101577;;;101350:5;;;;;;101577:25;;;101596:5;;;;;101577:25;;;;;;101350:5;;101392:12;;101577:25;;;;;;;;;101651:12;;101618:46;;;-1:-1:-1;;;;;101618:46:0;;;;;101651:12;;;101618:46;;;;;;;;;;;;;;;;101689:14;101677:27;;;;100970:742;:::o;110859:633::-;110946:4;110963:10;110976:16;:14;:16::i;:::-;110963:29;-1:-1:-1;111007:29:0;;111003:298;;111211:78;111222:5;111216:12;;;;;;;;111230:58;111211:4;:78::i;:::-;111204:85;;;;;111003:298;111436:48;111463:20;111436:26;:48::i;8841:42::-;;;-1:-1:-1;;;;;8841:42:0;;:::o;119200:237::-;119313:4;119331:8;119344:64;119368:8;119378:11;119391:16;119344:23;:64::i;:::-;-1:-1:-1;119330:78:0;119200:237;-1:-1:-1;;;;;119200:237:0:o;8463:28::-;;;;;;-1:-1:-1;;;;;8463:28:0;;:::o;55351:161::-;55428:17;;55404:4;;-1:-1:-1;;;;;55428:17:0;:31;55460:14;:12;:14::i;:::-;55476:12;;55490:13;;55428:76;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;102975:607:0;103064:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;103094:16;:14;:16::i;:::-;103081:29;-1:-1:-1;103125:29:0;;103121:286;;103322:73;103333:5;103327:12;;;;;;;;103341:53;103322:4;:73::i;103121:286::-;103526:48;103549:24;103526:22;:48::i;82096:572::-;82174:4;114388:11;;82174:4;;114388:11;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;82210:16;:14;:16::i;:::-;82197:29;-1:-1:-1;82241:29:0;;82237:260;;82414:67;82425:5;82419:12;;;;;;;;82433:47;82414:4;:67::i;:::-;82406:79;-1:-1:-1;82483:1:0;;-1:-1:-1;82406:79:0;;-1:-1:-1;82406:79:0;82237:260;82607:53;82624:10;82636;82648:11;82607:16;:53::i;:::-;82600:60;;;;;114455:1;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;82096:572;;;;-1:-1:-1;82096:572:0:o;59871:1186::-;59980:11;;59932:9;;;;60006:17;60002:1048;;-1:-1:-1;;60200:27:0;;60180:18;;-1:-1:-1;60172:56:0;;60002:1048;60410:14;60427;:12;:14::i;:::-;60410:31;;60456:33;60504:23;;:::i;:::-;60542:17;60618:54;60633:9;60644:12;;60658:13;;60618:14;:54::i;:::-;60576:96;-1:-1:-1;60576:96:0;-1:-1:-1;60702:18:0;60691:7;:29;;;;;;;;;60687:89;;60749:7;-1:-1:-1;60758:1:0;;-1:-1:-1;60741:19:0;;-1:-1:-1;;;;60741:19:0;60687:89;60818:50;60825:28;60855:12;60818:6;:50::i;:::-;60792:76;-1:-1:-1;60792:76:0;-1:-1:-1;60898:18:0;60887:7;:29;;;;;;;;;60883:89;;60945:7;-1:-1:-1;60954:1:0;;-1:-1:-1;60937:19:0;;-1:-1:-1;;;;60937:19:0;60883:89;-1:-1:-1;61016:21:0;60996:18;;-1:-1:-1;61016:21:0;-1:-1:-1;60988:50:0;;-1:-1:-1;;;60988:50:0;59871:1186;;;:::o;48587:2247::-;48761:11;;:60;;;-1:-1:-1;;;48761:60:0;;48797:4;48761:60;;;;-1:-1:-1;;;;;48761:60:0;;;;;;;;;;;;;;;;;;;;;;48685:4;;;;48761:11;;:27;;:60;;;;;;;;;;;;;;48685:4;48761:11;:60;;;5:2:-1;;;;30:1;27;20:12;5:2;48761:60:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;48761:60:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;48761:60:0;;-1:-1:-1;48836:12:0;;48832:144;;48872:92;48883:27;48912:42;48956:7;48872:10;:92::i;:::-;48865:99;;;;;48832:144;49042:3;-1:-1:-1;;;;;49035:10:0;:3;-1:-1:-1;;;;;49035:10:0;;49031:105;;;49069:55;49074:15;49091:32;49069:4;:55::i;49031:105::-;49213:22;-1:-1:-1;;;;;49254:14:0;;;;;;;49250:160;;;-1:-1:-1;;;49250:160:0;;;-1:-1:-1;;;;;;49366:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;;49250:160;49488:17;49516;49544;49572;49628:34;49636:17;49655:6;49628:7;:34::i;:::-;49602:60;;-1:-1:-1;49602:60:0;-1:-1:-1;49688:18:0;49677:7;:29;;;;;;;;;49673:125;;49730:56;49735:16;49753:32;49730:4;:56::i;:::-;49723:63;;;;;;;;;;49673:125;-1:-1:-1;;;;;49844:18:0;;;;;;:13;:18;;;;;;49836:35;;49864:6;49836:7;:35::i;:::-;49810:61;;-1:-1:-1;49810:61:0;-1:-1:-1;49897:18:0;49886:7;:29;;;;;;;;;49882:124;;49939:55;49944:16;49962:31;49939:4;:55::i;49882:124::-;-1:-1:-1;;;;;50052:18:0;;;;;;:13;:18;;;;;;50044:35;;50072:6;50044:7;:35::i;:::-;50018:61;;-1:-1:-1;50018:61:0;-1:-1:-1;50105:18:0;50094:7;:29;;;;;;;;;50090:122;;50147:53;50152:16;50170:29;50147:4;:53::i;50090:122::-;-1:-1:-1;;;;;50345:18:0;;;;;;;:13;:18;;;;;;:33;;;50389:18;;;;;;:33;;;-1:-1:-1;;50495:29:0;;50491:109;;-1:-1:-1;;;;;50541:23:0;;;;;;;:18;:23;;;;;;;;:32;;;;;;;;;:47;;;50491:109;50671:3;-1:-1:-1;;;;;50657:26:0;50666:3;-1:-1:-1;;;;;50657:26:0;-1:-1:-1;;;;;;;;;;;50676:6:0;50657:26;;;;;;;;;;;;;;;;;;-1:-1:-1;50811:14:0;;48587:2247;-1:-1:-1;;;;;;;;;;48587:2247:0:o;83001:594::-;83103:4;114388:11;;83103:4;;114388:11;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;83139:16;:14;:16::i;:::-;83126:29;-1:-1:-1;83170:29:0;;83166:260;;83343:67;83354:5;83348:12;;;;;;;;83362:47;83343:4;:67::i;:::-;83335:79;-1:-1:-1;83412:1:0;;-1:-1:-1;83335:79:0;;-1:-1:-1;83335:79:0;83166:260;83536:51;83553:10;83565:8;83575:11;83536:16;:51::i;:::-;83529:58;;;;;114455:1;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;83001:594;;;;-1:-1:-1;83001:594:0;-1:-1:-1;83001:594:0:o;38518:313::-;38595:9;38606:4;38624:13;38639:18;;:::i;:::-;38661:20;38671:1;38674:6;38661:9;:20::i;:::-;38623:58;;-1:-1:-1;38623:58:0;-1:-1:-1;38703:18:0;38696:3;:25;;;;;;;;;38692:73;;-1:-1:-1;38746:3:0;-1:-1:-1;38751:1:0;;-1:-1:-1;38738:15:0;;38692:73;38785:18;38805:17;38814:7;38805:8;:17::i;:::-;38777:46;;;;;;38518:313;;;;;;:::o;120534:169::-;120636:10;;120665:30;;;-1:-1:-1;;;120665:30:0;;120689:4;120665:30;;;;;;120581:4;;-1:-1:-1;;;;;120636:10:0;;;;120665:15;;:30;;;;;;;;;;;;;;;120636:10;120665:30;;;5:2:-1;;;;30:1;27;20:12;5:2;120665:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;120665:30:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;120665:30:0;;-1:-1:-1;;120534:169:0;:::o;105079:590::-;105156:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;105186:16;:14;:16::i;:::-;105173:29;-1:-1:-1;105217:29:0;;105213:274;;105408:67;105419:5;105413:12;;;;;;;;105427:47;105408:4;:67::i;105213:274::-;105610:28;105628:9;105610:17;:28::i;:::-;-1:-1:-1;105598:40:0;-1:-1:-1;;114467:11:0;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;105079:590;;-1:-1:-1;105079:590:0:o;26451:153::-;26512:4;26534:33;26547:3;26542:9;;;;;;;;26558:4;26553:10;;;;;;;;26534:33;;;;;;;;;;;;;26565:1;26534:33;;;;;;;;;;;;;26592:3;26587:9;;;;;;;108743:1747;108954:5;;108810:4;;;;108954:5;;;-1:-1:-1;;;;;108954:5:0;108940:10;:19;108936:124;;108983:65;108988:18;109008:39;108983:4;:65::i;108936:124::-;109186:16;:14;:16::i;:::-;109164:18;;:38;109160:147;;109226:69;109231:22;109255:39;109226:4;:69::i;109160:147::-;109413:12;109396:14;:12;:14::i;:::-;:29;109392:152;;;109449:83;109454:29;109485:46;109449:4;:83::i;109392:152::-;109638:13;;109623:12;:28;109619:129;;;109675:61;109680:15;109697:38;109675:4;:61::i;109619:129::-;-1:-1:-1;109900:13:0;;:28;;;;110036:33;;;110028:82;;;;-1:-1:-1;;;110028:82:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;110184:13;:32;;;110350:5;;110336:34;;110350:5;;;-1:-1:-1;;;;;110350:5:0;110357:12;110336:13;:34::i;:::-;110404:5;;110388:54;;;110404:5;;;;-1:-1:-1;;;;;110404:5:0;110388:54;;;;;;;;;;;;;;;;;;;;;;;;;110467:14;110462:20;;71535:537;71619:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;71649:16;:14;:16::i;:::-;71636:29;-1:-1:-1;71680:29:0;;71676:249;;71852:61;71863:5;71857:12;;;;;;;;71871:41;71852:4;:61::i;71676:249::-;72024:40;72036:10;72048:1;72051:12;72024:11;:40::i;57475:1268::-;-1:-1:-1;;;;;57824:23:0;;57552:9;57824:23;;;:14;:23;;;;;58053:24;;57552:9;;;;;;;;58049:92;;-1:-1:-1;58107:18:0;;-1:-1:-1;58107:18:0;;-1:-1:-1;58099:30:0;;-1:-1:-1;;;58099:30:0;58049:92;58368:46;58376:14;:24;;;58402:11;;58368:7;:46::i;:::-;58335:79;;-1:-1:-1;58335:79:0;-1:-1:-1;58440:18:0;58429:7;:29;;;;;;;;;58425:81;;-1:-1:-1;58483:7:0;;-1:-1:-1;58492:1:0;;-1:-1:-1;58475:19:0;;-1:-1:-1;;58475:19:0;58425:81;58538:58;58546:19;58567:14;:28;;;58538:7;:58::i;:::-;58518:78;;-1:-1:-1;58518:78:0;-1:-1:-1;58622:18:0;58611:7;:29;;;;;;;;;58607:81;;-1:-1:-1;58665:7:0;;-1:-1:-1;58674:1:0;;-1:-1:-1;58657:19:0;;-1:-1:-1;;58657:19:0;58607:81;-1:-1:-1;58708:18:0;;-1:-1:-1;58728:6:0;-1:-1:-1;;;57475:1268:0;;;;:::o;55082:93::-;55155:12;55082:93;:::o;111822:1299::-;112122:5;;111916:4;;;;112122:5;;;-1:-1:-1;;;;;112122:5:0;112108:10;:19;112104:132;;112151:73;112156:18;112176:47;112151:4;:73::i;112104:132::-;112362:16;:14;:16::i;:::-;112340:18;;:38;112336:155;;112402:77;112407:22;112431:47;112402:4;:77::i;112336:155::-;112585:17;;;;;;;;;-1:-1:-1;;;;;112585:17:0;112562:40;;112705:20;-1:-1:-1;;;;;112705:40:0;;:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;112705:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;112705:42:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;112705:42:0;112697:83;;;;;-1:-1:-1;;;112697:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;112857:17;:40;;-1:-1:-1;;;;;;112857:40:0;-1:-1:-1;;;;;112857:40:0;;;;;;;;;113003:70;;;;;;;;;;;;;;;;;;;;;;;;;;;113098:14;113093:20;;65813:547;65883:4;114388:11;;65883:4;;114388:11;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;65919:16;:14;:16::i;:::-;65906:29;-1:-1:-1;65950:29:0;;65946:252;;66123:59;66134:5;66128:12;;;;;;;;66142:39;66123:4;:59::i;65946:252::-;66319:33;66329:10;66341;66319:9;:33::i;28309:236::-;28365:9;28376:4;28402:1;28397;:6;28393:145;;-1:-1:-1;28428:18:0;;-1:-1:-1;28448:5:0;;;28420:34;;28393:145;-1:-1:-1;28495:27:0;;-1:-1:-1;28524:1:0;28487:39;;38052:353;38121:9;38132:10;;:::i;:::-;38156:14;38172:19;38195:27;38203:1;:10;;;38215:6;38195:7;:27::i;:::-;38155:67;;-1:-1:-1;38155:67:0;-1:-1:-1;38245:18:0;38237:4;:26;;;;;;;;;38233:92;;-1:-1:-1;38294:18:0;;;;;;;;;-1:-1:-1;38294:18:0;;38288:4;;-1:-1:-1;38294:18:0;-1:-1:-1;38280:33:0;;38233:92;38365:31;;;;;;;;;;;;-1:-1:-1;;38365:31:0;;-1:-1:-1;38052:353:0;-1:-1:-1;;;;38052:353:0:o;26727:187::-;26812:4;26834:43;26847:3;26842:9;;;;;;;;26858:4;26853:10;;;;;;;;26834:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;26902:3;26897:9;;;;;;;28630:258;28686:9;;28723:5;;;28745:6;;;28741:140;;28776:18;;-1:-1:-1;28796:1:0;-1:-1:-1;28768:30:0;;28741:140;-1:-1:-1;28839:26:0;;-1:-1:-1;28867:1:0;;-1:-1:-1;28831:38:0;;38976:328;39073:9;39084:4;39102:13;39117:18;;:::i;:::-;39139:20;39149:1;39152:6;39139:9;:20::i;:::-;39101:58;;-1:-1:-1;39101:58:0;-1:-1:-1;39181:18:0;39174:3;:25;;;;;;;;;39170:73;;-1:-1:-1;39224:3:0;-1:-1:-1;39229:1:0;;-1:-1:-1;39216:15:0;;39170:73;39262:34;39270:17;39279:7;39270:8;:17::i;:::-;39289:6;39262:7;:34::i;:::-;39255:41;;;;;;38976:328;;;;;;;:::o;96499:3097::-;96690:11;;:87;;;-1:-1:-1;;;96690:87:0;;96723:4;96690:87;;;;-1:-1:-1;;;;;96690:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;96617:4;;;;96690:11;;:24;;:87;;;;;;;;;;;;;;96617:4;96690:11;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;96690:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;96690:87:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;96690:87:0;;-1:-1:-1;96792:12:0;;96788:151;;96828:99;96839:27;96868:49;96919:7;96828:10;:99::i;96788:151::-;97012:10;-1:-1:-1;;;;;97000:22:0;:8;-1:-1:-1;;;;;97000:22:0;;96996:146;;;97046:84;97051:26;97079:50;97046:4;:84::i;96996:146::-;97154:34;;:::i;:::-;-1:-1:-1;;;;;97525:23:0;;;;;;:13;:23;;;;;;97517:45;;97550:11;97517:7;:45::i;:::-;97491:22;;;97476:86;;;97477:4;97476:86;;;;;;;;;;;;;;;;;;;-1:-1:-1;97593:18:0;;-1:-1:-1;97577:12:0;;:34;;;;;;;;;97573:176;;97635:102;97646:16;97664:52;97723:4;:12;;;97718:18;;;;;;;97635:102;97628:109;;;;;;97573:176;97788:62;97793:11;97806:43;;;;;;;;10818:6;97806:43;;;97788:4;:62::i;:::-;97761:24;;;:89;;;97890:43;;97895:11;;97890:4;:43::i;:::-;97861:26;;;:72;97990:28;:26;:28::i;:::-;97961:25;;;97946:72;;;97947:4;97946:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;98053:18:0;;-1:-1:-1;98037:12:0;;:34;;;;;;;;;98029:71;;;;;-1:-1:-1;;;98029:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;98140:88;98159:42;;;;;;;;98174:4;:25;;;98159:42;;;98203:4;:24;;;98140:18;:88::i;:::-;98113:24;;;:115;;;98270:13;;98265:45;;:4;:45::i;:::-;98241:21;;;:69;98348:11;;98361:24;;;;98343:43;;98348:11;98343:4;:43::i;:::-;98321:19;;;:65;-1:-1:-1;;;;;98450:25:0;;;;;;:13;:25;;;;;;98477:26;;;;98442:62;;98450:25;98442:7;:62::i;:::-;98414:24;;;98399:105;;;98400:4;98399:105;;;;;;;;;;;;;;;;;;;-1:-1:-1;98535:18:0;;-1:-1:-1;98519:12:0;;:34;;;;;;;;;98515:176;;98577:102;98588:16;98606:52;98665:4;:12;;;98660:18;;;;;;;98515:176;98910:21;;;;98894:13;:37;98956:19;;;;98942:11;:33;99012:22;;;;;-1:-1:-1;;;;;98986:23:0;;;-1:-1:-1;98986:23:0;;;:13;:23;;;;;;:48;;;;99073:24;;;;99045:25;;;;;;;;;;:52;;;;99183:26;;;;99152:58;;;;;;;99045:25;;98986:23;;-1:-1:-1;;;;;;;;;;;99152:58:0;;;;;;;;;;99260:24;;;;99226:59;;;;;;;99253:4;;-1:-1:-1;;;;;99226:59:0;;;-1:-1:-1;;;;;;;;;;;99226:59:0;;;;;;;;99330:24;;;;99356:21;;;;99301:77;;;99323:4;99301:77;;;;;;;;;;;;;;;;;;;;;;;;;;99573:14;99561:27;96499:3097;-1:-1:-1;;;;;;;96499:3097:0:o;77827:524::-;77901:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;77931:16;:14;:16::i;:::-;77918:29;-1:-1:-1;77962:29:0;;77958:249;;78134:61;78145:5;78139:12;;;;;;;;78153:41;78134:4;:61::i;77958:249::-;78306:37;78318:10;78330:12;78306:11;:37::i;70628:527::-;70702:4;114388:11;;;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;70732:16;:14;:16::i;:::-;70719:29;-1:-1:-1;70763:29:0;;70759:249;;70935:61;70946:5;70940:12;;;;;;;70759:249;71107:40;71119:10;71131:12;71145:1;71107:11;:40::i;88267:994::-;88401:4;114388:11;;88401:4;;114388:11;;114380:34;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;-1:-1:-1;;;114380:34:0;;;;;;;;;;;;;;;114439:5;114425:19;;-1:-1:-1;;114425:19:0;;;88437:16;:14;:16::i;:::-;88424:29;-1:-1:-1;88468:29:0;;88464:269;;88646:71;88657:5;88651:12;;;;;;;;88665:51;88646:4;:71::i;:::-;88638:83;-1:-1:-1;88719:1:0;;-1:-1:-1;88638:83:0;;-1:-1:-1;88638:83:0;88464:269;88753:16;-1:-1:-1;;;;;88753:31:0;;:33;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;88753:33:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;88753:33:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;88753:33:0;;-1:-1:-1;88801:29:0;;88797:273;;88979:75;88990:5;88984:12;;;;;;;;88998:55;88979:4;:75::i;88797:273::-;89180:73;89201:10;89213:8;89223:11;89236:16;89180:20;:73::i;:::-;89173:80;;;;;114455:1;114467:11;:18;;-1:-1:-1;;114467:18:0;114481:4;114467:18;;;88267:994;;;;-1:-1:-1;88267:994:0;-1:-1:-1;;88267:994:0:o;103850:973::-;104000:5;;103931:4;;104000:5;;;-1:-1:-1;;;;;104000:5:0;103986:10;:19;103982:127;;104029:68;104034:18;104054:42;104029:4;:68::i;103982:127::-;104216:16;:14;:16::i;:::-;104194:18;;:38;104190:150;;104256:72;104261:22;104285:42;104256:4;:72::i;104190:150::-;8384:4;104412:24;:51;104408:157;;;104487:66;104492:15;104509:43;104487:4;:66::i;104408:157::-;104609:21;;;104641:48;;;;104707:68;;;;;;;;;;;;;;;;;;;;;;;;;104800:14;104795:20;;84300:3440;84480:11;;:75;;;-1:-1:-1;;;84480:75:0;;84519:4;84480:75;;;;-1:-1:-1;;;;;84480:75:0;;;;;;;;;;;;;;;;;;;;;;84395:4;;;;;;84480:11;;;:30;;:75;;;;;;;;;;;;;;;84395:4;84480:11;:75;;;5:2:-1;;;;30:1;27;20:12;5:2;84480:75:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;84480:75:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;84480:75:0;;-1:-1:-1;84570:12:0;;84566:153;;84607:96;84618:27;84647:46;84695:7;84607:10;:96::i;:::-;84599:108;-1:-1:-1;84705:1:0;;-1:-1:-1;84599:108:0;;-1:-1:-1;84599:108:0;84566:153;84829:16;:14;:16::i;:::-;84807:18;;:38;84803:153;;84870:70;84875:22;84899:40;84870:4;:70::i;84803:153::-;84968:32;;:::i;:::-;-1:-1:-1;;;;;85114:24:0;;;;;;:14;:24;;;;;:38;;;85093:18;;;:59;85283:37;85129:8;85283:27;:37::i;:::-;85260:19;;;85245:75;;;85246:12;;;85245:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;85351:18:0;;-1:-1:-1;85335:4:0;:12;;;:34;;;;;;;;;85331:192;;85394:113;85405:16;85423:63;85493:4;:12;;;85488:18;;;;;;;85394:113;85386:125;-1:-1:-1;85509:1:0;;-1:-1:-1;85386:125:0;;-1:-1:-1;;85386:125:0;85331:192;-1:-1:-1;;85605:11:0;:23;85601:157;;;85664:19;;;;85645:16;;;:38;85601:157;;;85716:16;;;:30;;;85601:157;86356:37;86369:5;86376:4;:16;;;86356:12;:37::i;:::-;86331:22;;;:62;;;86703:19;;;;86695:52;;:7;:52::i;:::-;86669:22;;;86654:93;;;86655:12;;;86654:93;;;;;;;;;;;;;;;;;;;-1:-1:-1;86782:18:0;;-1:-1:-1;86766:4:0;:12;;;:34;;;;;;;;;86758:105;;;;-1:-1:-1;;;86758:105:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86915:45;86923:12;;86937:4;:22;;;86915:7;:45::i;:::-;86891:20;;;86876:84;;;86877:12;;;86876:84;;;;;;;;;;;;;;;;;;;-1:-1:-1;86995:18:0;;-1:-1:-1;86979:4:0;:12;;;:34;;;;;;;;;86971:96;;;;-1:-1:-1;;;86971:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87187:22;;;;;;-1:-1:-1;;;;;87150:24:0;;;;;;;:14;:24;;;;;;;;;:59;;;87261:11;;87220:38;;;;:52;;;;87298:20;;;;87283:12;:35;;;87408:22;;;;87432;;87379:98;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87709:22;;;87692:14;;87709:22;;-1:-1:-1;84300:3440:0;-1:-1:-1;;;;;84300:3440:0:o;28957:271::-;29028:9;29039:4;29057:14;29073:8;29085:13;29093:1;29096;29085:7;:13::i;:::-;29056:42;;-1:-1:-1;29056:42:0;-1:-1:-1;29123:18:0;29115:4;:26;;;;;;;;;29111:75;;-1:-1:-1;29166:4:0;-1:-1:-1;29172:1:0;;-1:-1:-1;29158:16:0;;29111:75;29205:15;29213:3;29218:1;29205:7;:15::i;36811:515::-;36872:9;36883:10;;:::i;:::-;36907:14;36923:20;36947:22;36955:3;29696:4;36947:7;:22::i;:::-;36906:63;;-1:-1:-1;36906:63:0;-1:-1:-1;36992:18:0;36984:4;:26;;;;;;;;;36980:92;;-1:-1:-1;37041:18:0;;;;;;;;;-1:-1:-1;37041:18:0;;37035:4;;-1:-1:-1;37041:18:0;-1:-1:-1;37027:33:0;;36980:92;37085:14;37101:13;37118:31;37126:15;37143:5;37118:7;:31::i;:::-;37084:65;;-1:-1:-1;37084:65:0;-1:-1:-1;37172:18:0;37164:4;:26;;;;;;;;;37160:92;;-1:-1:-1;37221:18:0;;;;;;;;;-1:-1:-1;37221:18:0;;37215:4;;-1:-1:-1;37221:18:0;-1:-1:-1;37207:33:0;;-1:-1:-1;;37207:33:0;37160:92;37292:25;;;;;;;;;;;;-1:-1:-1;;37292:25:0;;-1:-1:-1;36811:515:0;-1:-1:-1;;;;;;36811:515:0:o;30092:213::-;30274:12;29696:4;30274:23;;;30092:213::o;106009:1631::-;106070:4;106076;106137:21;106169:20;106316:16;:14;:16::i;:::-;106294:18;;:38;106290:163;;106357:66;106362:22;106386:36;106357:4;:66::i;:::-;106349:92;-1:-1:-1;106425:15:0;-1:-1:-1;106349:92:0;;-1:-1:-1;106349:92:0;106290:163;107042:35;107055:10;107067:9;107042:12;:35::i;:::-;107024:53;;107125:15;107109:13;;:31;107090:50;;107215:13;;107195:16;:33;;107187:78;;;;;-1:-1:-1;;;107187:78:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;107342:13;:32;;;107463:60;;;107477:10;107463:60;;;;;;;;;;;;;;;;;;;;;;;;;107599:14;107586:46;-1:-1:-1;107616:15:0;-1:-1:-1;;106009:1631:0;;;:::o;123368:904::-;123504:10;;123526:26;;;-1:-1:-1;;;123526:26:0;;-1:-1:-1;;;;;123526:26:0;;;;;;;;;;;;;;;123504:10;;;;;;;123526:14;;:26;;;;;123444:31;;123526:26;;;;;;;;123444:31;123504:10;123526:26;;;5:2:-1;;;;30:1;27;20:12;5:2;123526:26:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;123526:26:0;;;;123565:12;123619:16;123658:1;123653:152;;;;123828:2;123823:219;;;;124177:1;124174;124167:12;123653:152;-1:-1:-1;;123748:6:0;-1:-1:-1;123653:152:0;;123823:219;123925:2;123922:1;123919;123904:24;123967:1;123961:8;123950:19;;123612:586;;124227:7;124219:45;;;;;-1:-1:-1;;;124219:45:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;123368:904;;;;:::o;72961:4598::-;73068:4;73093:19;;;:42;;-1:-1:-1;73116:19:0;;73093:42;73085:107;;;;-1:-1:-1;;;73085:107:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;73205:27;;:::i;:::-;73349:28;:26;:28::i;:::-;73320:25;;;73305:72;;;73306:12;;;73305:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;73408:18:0;;-1:-1:-1;73392:4:0;:12;;;:34;;;;;;;;;73388:168;;73450:94;73461:16;73479:44;73530:4;:12;;;73525:18;;;;;;;73450:94;73443:101;;;;;73388:168;73610:18;;73606:1290;;73886:17;;;:34;;;73991:42;;;;;;;;74006:25;;;;73991:42;;73973:77;;73906:14;73973:17;:77::i;:::-;73952:17;;;73937:113;;;73938:12;;;73937:113;;;;;;;;;;;;;;;;;;;-1:-1:-1;74085:18:0;;-1:-1:-1;74069:4:0;:12;;;:34;;;;;;;;;74065:185;;74131:103;74142:16;74160:53;74220:4;:12;;;74215:18;;;;;;;74065:185;73606:1290;;;74552:82;74575:14;74591:42;;;;;;;;74606:4;:25;;;74591:42;;;74552:22;:82::i;:::-;74531:17;;;74516:118;;;74517:12;;;74516:118;;;;;;;;;;;;;;;;;;;-1:-1:-1;74669:18:0;;-1:-1:-1;74653:4:0;:12;;;:34;;;;;;;;;74649:185;;74715:103;74726:16;74744:53;74804:4;:12;;;74799:18;;;;;;;74649:185;74850:17;;;:34;;;73606:1290;74965:11;;75016:17;;;;74965:69;;;-1:-1:-1;;;74965:69:0;;74999:4;74965:69;;;;-1:-1:-1;;;;;74965:69:0;;;;;;;;;;;;;;;;74950:12;;74965:11;;;;;:25;;:69;;;;;;;;;;;;;;;74950:12;74965:11;:69;;;5:2:-1;;;;30:1;27;20:12;5:2;74965:69:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;74965:69:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;74965:69:0;;-1:-1:-1;75049:12:0;;75045:142;;75085:90;75096:27;75125:40;75167:7;75085:10;:90::i;:::-;75078:97;;;;;;75045:142;75297:16;:14;:16::i;:::-;75275:18;;:38;75271:142;;75337:64;75342:22;75366:34;75337:4;:64::i;75271:142::-;75708:39;75716:11;;75729:4;:17;;;75708:7;:39::i;:::-;75685:19;;;75670:77;;;75671:12;;;75670:77;;;;;;;;;;;;;;;;;;;-1:-1:-1;75778:18:0;;-1:-1:-1;75762:4:0;:12;;;:34;;;;;;;;;75758:178;;75820:104;75831:16;75849:54;75910:4;:12;;;75905:18;;;;;;;75758:178;-1:-1:-1;;;;;75996:23:0;;;;;;:13;:23;;;;;;76021:17;;;;75988:51;;75996:23;75988:7;:51::i;:::-;75963:21;;;75948:91;;;75949:12;;;75948:91;;;;;;;;;;;;;;;;;;;-1:-1:-1;76070:18:0;;-1:-1:-1;76054:4:0;:12;;;:34;;;;;;;;;76050:181;;76112:107;76123:16;76141:57;76205:4;:12;;;76200:18;;;;;;;76050:181;76329:4;:17;;;76312:14;:12;:14::i;:::-;:34;76308:155;;;76370:81;76375:29;76406:44;76370:4;:81::i;76308:155::-;76676:19;;;;76662:11;:33;76732:21;;;;-1:-1:-1;;;;;76706:23:0;;;;;;:13;:23;;;;;:47;77153:17;;;;77129:42;;76720:8;;77129:13;:42::i;:::-;77283:17;;;;77249:52;;;;;;;77276:4;;-1:-1:-1;;;;;77249:52:0;;;-1:-1:-1;;;;;;;;;;;77249:52:0;;;;;;;;77334:17;;;;77353;;;;;77317:54;;;-1:-1:-1;;;;;77317:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;77424:11;;77474:17;;;;77493;;;;77424:87;;;-1:-1:-1;;;77424:87:0;;77457:4;77424:87;;;;-1:-1:-1;;;;;77424:87:0;;;;;;;;;;;;;;;;;;;;;;:11;;;;;:24;;:87;;;;;:11;;:87;;;;;;;:11;;:87;;;5:2:-1;;;;30:1;27;20:12;5:2;77424:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;77536:14:0;;-1:-1:-1;77531:20:0;;-1:-1:-1;;77531:20:0;;77524:27;72961:4598;-1:-1:-1;;;;;;72961:4598:0:o;27521:343::-;27577:9;;27609:6;27605:69;;-1:-1:-1;27640:18:0;;-1:-1:-1;27640:18:0;27632:30;;27605:69;27695:5;;;27699:1;27695;:5;:1;27717:5;;;;;:10;27713:144;;-1:-1:-1;27752:26:0;;-1:-1:-1;27780:1:0;;-1:-1:-1;27744:38:0;;27713:144;27823:18;;-1:-1:-1;27843:1:0;-1:-1:-1;27815:30:0;;27959:215;28015:9;;28047:6;28043:77;;-1:-1:-1;28078:26:0;;-1:-1:-1;28106:1:0;28070:38;;28043:77;28140:18;28164:1;28160;:5;;;;;;28132:34;;;;27959:215;;;;;:::o;67070:3207::-;67218:11;;:58;;;-1:-1:-1;;;67218:58:0;;67250:4;67218:58;;;;-1:-1:-1;;;;;67218:58:0;;;;;;;;;;;;;;;67140:4;;;;;;67218:11;;;:23;;:58;;;;;;;;;;;;;;;67140:4;67218:11;:58;;;5:2:-1;;;;30:1;27;20:12;5:2;67218:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67218:58:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;67218:58:0;;-1:-1:-1;67291:12:0;;67287:145;;67328:88;67339:27;67368:38;67408:7;67328:10;:88::i;:::-;67320:100;-1:-1:-1;67418:1:0;;-1:-1:-1;67320:100:0;;-1:-1:-1;67320:100:0;67287:145;67542:16;:14;:16::i;:::-;67520:18;;:38;67516:145;;67583:62;67588:22;67612:32;67583:4;:62::i;67516:145::-;67673:25;;:::i;:::-;67755:28;:26;:28::i;:::-;67726:25;;;67711:72;;;67712:12;;;67711:72;;;;;;;;;;;;;;;;;;;-1:-1:-1;67814:18:0;;-1:-1:-1;67798:4:0;:12;;;:34;;;;;;;;;67794:171;;67857:92;67868:16;67886:42;67935:4;:12;;;67930:18;;;;;;;67857:92;67849:104;-1:-1:-1;67951:1:0;;-1:-1:-1;67849:104:0;;-1:-1:-1;;67849:104:0;67794:171;68597:32;68610:6;68618:10;68597:12;:32::i;:::-;68573:21;;;:56;;;68902:42;;;;;;;;68917:25;;;;68902:42;;68856:89;;68573:56;68856:22;:89::i;:::-;68837:15;;;68822:123;;;68823:12;;;68822:123;;;;;;;;;;;;;;;;;;;-1:-1:-1;68980:18:0;;-1:-1:-1;68964:4:0;:12;;;:34;;;;;;;;;68956:79;;;;;-1:-1:-1;;;68956:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69339:37;69347:11;;69360:4;:15;;;69339:7;:37::i;:::-;69316:19;;;69301:75;;;69302:12;;;69301:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;69411:18:0;;-1:-1:-1;69395:4:0;:12;;;:34;;;;;;;;;69387:87;;;;-1:-1:-1;;;69387:87:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;69535:21:0;;;;;;:13;:21;;;;;;69558:15;;;;69527:47;;69535:21;69527:7;:47::i;:::-;69502:21;;;69487:87;;;69488:12;;;69487:87;;;;;;;;;;;;;;;;;;;-1:-1:-1;69609:18:0;;-1:-1:-1;69593:4:0;:12;;;:34;;;;;;;;;69585:90;;;;-1:-1:-1;;;69585:90:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;69768:19;;;;69754:11;:33;69822:21;;;;-1:-1:-1;;;;;69798:21:0;;;;;;:13;:21;;;;;;;;;:45;;;;69932:21;;;;69955:15;;;;;69919:52;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;70019:15;;;;69987:48;;;;;;;-1:-1:-1;;;;;69987:48:0;;;70004:4;;-1:-1:-1;;;;;;;;;;;69987:48:0;;;;;;;;70247:21;;;70230:14;;70247:21;;-1:-1:-1;67070:3207:0;-1:-1:-1;;;;67070:3207:0:o;33703:121::-;33762:4;29696;33786:19;33791:1;33794;:10;;;33786:4;:19::i;:::-;:30;;;;;;;33703:121;-1:-1:-1;;;33703:121:0:o;33101:120::-;33154:4;33178:35;33183:1;33186;33178:35;;;;;;;;;;;;;-1:-1:-1;;;33178:35:0;;;:4;:35::i;30418:174::-;30496:4;30513:18;;:::i;:::-;30534:15;30539:1;30542:6;30534:4;:15::i;:::-;30513:36;;30567:17;30576:7;30567:8;:17::i;32466:116::-;32519:4;32543:31;32548:1;32551;32543:31;;;;;;;;;;;;;-1:-1:-1;;;32543:31:0;;;:4;:31::i;78778:3065::-;78936:11;;:64;;;-1:-1:-1;;;78936:64:0;;78970:4;78936:64;;;;-1:-1:-1;;;;;78936:64:0;;;;;;;;;;;;;;;78862:4;;;;78936:11;;:25;;:64;;;;;;;;;;;;;;78862:4;78936:11;:64;;;5:2:-1;;;;30:1;27;20:12;5:2;78936:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78936:64:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;78936:64:0;;-1:-1:-1;79015:12:0;;79011:142;;79051:90;79062:27;79091:40;79133:7;79051:10;:90::i;:::-;79044:97;;;;;79011:142;79263:16;:14;:16::i;:::-;79241:18;;:38;79237:142;;79303:64;79308:22;79332:34;79303:4;:64::i;79237:142::-;79488:12;79471:14;:12;:14::i;:::-;:29;79467:143;;;79524:74;79529:29;79560:37;79524:4;:74::i;79467:143::-;79622:27;;:::i;:::-;79937:37;79965:8;79937:27;:37::i;:::-;79914:19;;;79899:75;;;79900:4;79899:75;;;;;;;;;;;;;;;;;;;-1:-1:-1;80005:18:0;;-1:-1:-1;79989:12:0;;:34;;;;;;;;;79985:181;;80047:107;80058:16;80076:57;80140:4;:12;;;80135:18;;;;;;;80047:107;80040:114;;;;;;79985:181;80219:42;80227:4;:19;;;80248:12;80219:7;:42::i;:::-;80193:22;;;80178:83;;;80179:4;80178:83;;;;;;;;;;;;;;;;;;;-1:-1:-1;80292:18:0;;-1:-1:-1;80276:12:0;;:34;;;;;;;;;80272:188;;80334:114;80345:16;80363:64;80434:4;:12;;;80429:18;;;;;;;80272:188;80511:35;80519:12;;80533;80511:7;:35::i;:::-;80487:20;;;80472:74;;;80473:4;80472:74;;;;;;;;;;;;;;;;;;;-1:-1:-1;80577:18:0;;-1:-1:-1;80561:12:0;;:34;;;;;;;;;80557:179;;80619:105;80630:16;80648:55;80710:4;:12;;;80705:18;;;;;;;80557:179;80976:22;;;;;-1:-1:-1;;;;;80939:24:0;;;;;;:14;:24;;;;;;:59;;;81050:11;;81009:38;;;;:52;81087:20;;;;81072:12;:35;81479:37;80954:8;81503:12;81479:13;:37::i;:::-;81603:22;;;;;81627:20;;;;;81572:76;;-1:-1:-1;;;;;81572:76:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81820:14;81808:27;78778:3065;-1:-1:-1;;;;;78778:3065:0:o;89873:4849::-;90094:11;;:111;;;-1:-1:-1;;;90094:111:0;;90137:4;90094:111;;;;-1:-1:-1;;;;;90094:111:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;90011:4;;;;;;90094:11;;;:34;;:111;;;;;;;;;;;;;;;90011:4;90094:11;:111;;;5:2:-1;;;;30:1;27;20:12;5:2;90094:111:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90094:111:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90094:111:0;;-1:-1:-1;90220:12:0;;90216:150;;90257:93;90268:27;90297:43;90342:7;90257:10;:93::i;:::-;90249:105;-1:-1:-1;90352:1:0;;-1:-1:-1;90249:105:0;;-1:-1:-1;90249:105:0;90216:150;90476:16;:14;:16::i;:::-;90454:18;;:38;90450:150;;90517:67;90522:22;90546:37;90517:4;:67::i;90450:150::-;90746:16;:14;:16::i;:::-;90705;-1:-1:-1;;;;;90705:35:0;;:37;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;90705:37:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;90705:37:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;90705:37:0;:57;90701:180;;90787:78;90792:22;90816:48;90787:4;:78::i;90701:180::-;90954:10;-1:-1:-1;;;;;90942:22:0;:8;-1:-1:-1;;;;;90942:22:0;;90938:145;;;90989:78;90994:26;91022:44;90989:4;:78::i;90938:145::-;91138:16;91134:147;;91179:86;91184:36;91222:42;91179:4;:86::i;91134:147::-;-1:-1:-1;;91337:11:0;:23;91333:158;;;91385:90;91390:36;91428:46;91385:4;:90::i;91333:158::-;91505:21;91537:22;91570:21;91602:16;91744;-1:-1:-1;;;;;91744:25:0;;:27;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;91744:27:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;91744:27:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;91744:27:0;:32;;91740:1150;;92112:11;;92081:131;;;-1:-1:-1;;;92081:131:0;;92166:4;92081:131;;;;-1:-1:-1;;;;;92081:131:0;;;;;;;;;;;;;;;92020:29;;;;92112:11;;92081:76;;:131;;;;;;;;;;;;;;92112:11;92081:131;;;5:2:-1;;;;30:1;27;20:12;5:2;92081:131:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;92081:131:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;92081:131:0;;;;;;;;;-1:-1:-1;92081:131:0;-1:-1:-1;92235:48:0;;92227:115;;;;-1:-1:-1;;;92227:115:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;92650:59;92667:10;92679:8;92689:19;92650:16;:59::i;:::-;92610:99;;-1:-1:-1;92610:99:0;-1:-1:-1;91740:1150:0;;-1:-1:-1;;91740:1150:0;;92827:51;92844:10;92856:8;92866:11;92827:16;:51::i;:::-;92787:91;;-1:-1:-1;92787:91:0;-1:-1:-1;91740:1150:0;92908:40;;92904:163;;92973:78;92984:16;92978:23;;;;;;;;93003:47;92973:4;:78::i;:::-;92965:90;-1:-1:-1;93053:1:0;;-1:-1:-1;92965:90:0;;-1:-1:-1;;;;;92965:90:0;92904:163;93314:11;;:102;;;-1:-1:-1;;;93314:102:0;;93364:4;93314:102;;;;-1:-1:-1;;;;;93314:102:0;;;;;;;;;;;;;;;:11;;;:41;;:102;;;;;;;;;;;;;:11;:102;;;5:2:-1;;;;30:1;27;20:12;5:2;93314:102:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93314:102:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93314:102:0;;;;;;;;;-1:-1:-1;93314:102:0;-1:-1:-1;93435:40:0;;93427:104;;;;-1:-1:-1;;;93427:104:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;93665:11;93625:16;-1:-1:-1;;;;;93625:26:0;;93652:8;93625:36;;;;;;;;;;;;;-1:-1:-1;;;;;93625:36:0;-1:-1:-1;;;;;93625:36:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;93625:36:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;93625:36:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;93625:36:0;:51;;93617:88;;;;;-1:-1:-1;;;93617:88:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;93834:15;-1:-1:-1;;;;;93864:42:0;;93901:4;93864:42;93860:254;;;93936:63;93958:4;93965:10;93977:8;93987:11;93936:13;:63::i;:::-;93923:76;;93860:254;;;94045:57;;;-1:-1:-1;;;94045:57:0;;-1:-1:-1;;;;;94045:57:0;;;;;;;;;;;;;;;;;;;;;;:22;;;;;;:57;;;;;;;;;;;;;;;-1:-1:-1;94045:22:0;:57;;;5:2:-1;;;;30:1;27;20:12;5:2;94045:57:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;94045:57:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;94045:57:0;;-1:-1:-1;93860:254:0;94220:34;;94212:67;;;;;-1:-1:-1;;;94212:67:0;;;;;;;;;;;;-1:-1:-1;;;94212:67:0;;;;;;;;;;;;;;;94344:96;;;-1:-1:-1;;;;;94344:96:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;94679:14;94666:48;-1:-1:-1;94696:17:0;;-1:-1:-1;;;;;;89873:4849:0;;;;;;;;:::o;121320:1344::-;121464:10;;121507:51;;;-1:-1:-1;;;121507:51:0;;121552:4;121507:51;;;;;;121387:4;;-1:-1:-1;;;;;121464:10:0;;121387:4;;121464:10;;121507:36;;:51;;;;;;;;;;;;;;121464:10;121507:51;;;5:2:-1;;;;30:1;27;20:12;5:2;121507:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;121507:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;121507:51:0;121569:47;;;-1:-1:-1;;;121569:47:0;;-1:-1:-1;;;;;121569:47:0;;;;;;;121602:4;121569:47;;;;;;;;;;;;121507:51;;-1:-1:-1;121569:18:0;;;;;;:47;;;;;-1:-1:-1;;121569:47:0;;;;;;;;-1:-1:-1;121569:18:0;:47;;;5:2:-1;;;;30:1;27;20:12;5:2;121569:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;121569:47:0;;;;121629:12;121683:16;121722:1;121717:153;;;;121893:2;121888:220;;;;122244:1;122241;122234:12;121717:153;-1:-1:-1;;121813:6:0;-1:-1:-1;121717:153:0;;121888:220;121991:2;121988:1;121985;121970:24;122033:1;122027:8;122016:19;;121676:589;;122294:7;122286:44;;;;;-1:-1:-1;;;122286:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;122443:10;;122428:51;;;-1:-1:-1;;;122428:51:0;;122473:4;122428:51;;;;;;122408:17;;-1:-1:-1;;;;;122443:10:0;;122428:36;;:51;;;;;;;;;;;;;;122443:10;122428:51;;;5:2:-1;;;;30:1;27;20:12;5:2;122428:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;122428:51:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;122428:51:0;;-1:-1:-1;122498:29:0;;;;122490:68;;;;;-1:-1:-1;;;122490:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;122576:28;;;;;121320:1344;-1:-1:-1;;;;;121320:1344:0:o;40566:337::-;40654:9;40665:4;40683:13;40698:19;;:::i;:::-;40721:31;40736:6;40744:7;40721:14;:31::i;34299:122::-;34352:4;34376:37;34381:1;34384;34376:37;;;;;;;;;;;;;;;;;:4;:37::i;33229:158::-;33310:4;33343:12;33335:6;;;;33327:29;;;;-1:-1:-1;;;33327:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;33327:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;33374:5:0;;;33229:158::o;33562:133::-;33621:10;;:::i;:::-;33651:36;;;;;;;;33666:19;33671:1;:10;;;33683:1;33666:4;:19::i;:::-;33651:36;;33644:43;33562:133;-1:-1:-1;;;33562:133:0:o;32590:179::-;32671:4;32697:5;;;32729:12;32721:6;;;;32713:29;;;;-1:-1:-1;;;32713:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;39835:620:0;39915:9;39926:10;;:::i;:::-;40233:14;40249;40267:25;29696:4;40285:6;40267:7;:25::i;:::-;40232:60;;-1:-1:-1;40232:60:0;-1:-1:-1;40315:18:0;40307:4;:26;;;;;;;;;40303:92;;-1:-1:-1;40364:18:0;;;;;;;;;-1:-1:-1;40364:18:0;;40358:4;;-1:-1:-1;40364:18:0;-1:-1:-1;40350:33:0;;40303:92;40412:35;40419:9;40430:7;:16;;;40412:6;:35::i;34429:250::-;34510:4;34531:6;;;:16;;-1:-1:-1;34541:6:0;;34531:16;34527:57;;;-1:-1:-1;34571:1:0;34564:8;;34527:57;34603:5;;;34607:1;34603;:5;:1;34627:5;;;;;:10;34639:12;34619:33;;;;;-1:-1:-1;;;34619:33:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27:10:-1;;8:100;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;124941:1059:0;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;124941:1059:0;;;-1:-1:-1;124941:1059:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;124941:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;124941:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;124941:1059:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;-1:-1:-1;124941:1059:0;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://936147f6002f6239da522afab299737f78b1db5a8fa4084767e1f549e0d8cbbc
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.