Overview
ETH Balance
0 ETH
ETH Value
$0.00More Info
Private Name Tags
ContractCreator
Loading...
Loading
Contract Name:
iTokenV2BLP
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./iTokenV2.sol"; interface IControllerBLP { function refreshEligibility(address _accounts) external; function refreshEligibilities(address[] memory _accounts) external; } /** * @title dForce's Lending Protocol Contract. * @notice iTokens which wrap an EIP-20 underlying. * @author dForce Team. */ contract iTokenV2BLP is iTokenV2 { function mint( address _recipient, uint256 _mintAmount, bool refreshEligibility ) external { super.mint(_recipient, _mintAmount); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(_recipient); } } function redeem( address _from, uint256 _redeemiToken, bool refreshEligibility ) external { super.redeem(_from, _redeemiToken); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(_from); } } function redeemUnderlying( address _from, uint256 _redeemUnderlying, bool refreshEligibility ) external { super.redeemUnderlying(_from, _redeemUnderlying); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(_from); } } function borrow(uint256 _borrowAmount, bool refreshEligibility) external { super.borrow(_borrowAmount); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(msg.sender); } } function repayBorrow( uint256 _repayAmount, bool refreshEligibility ) external { super.repayBorrow(_repayAmount); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(msg.sender); } } /** * @dev Caller repays a borrow belonging to borrower. * @param _borrower the account with the debt being payed off. * @param _repayAmount The amount to repay. */ function repayBorrowBehalf( address _borrower, uint256 _repayAmount, bool refreshEligibility ) external { super.repayBorrowBehalf(_borrower, _repayAmount); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(_borrower); } } function liquidateBorrow( address _borrower, uint256 _repayAmount, address _assetCollateral, bool refreshEligibility ) external { super.liquidateBorrow(_borrower, _repayAmount, _assetCollateral); if (refreshEligibility) { address[] memory accounts = new address[](2); accounts[0] = _borrower; accounts[1] = msg.sender; IControllerBLP(address(controller)).refreshEligibilities(accounts); } } function mintForSelfAndEnterMarket( uint256 _mintAmount, bool refreshEligibility ) external { super.mintForSelfAndEnterMarket(_mintAmount); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(msg.sender); } } function redeemFromSelfAndExitMarket( uint256 _redeemiToken, bool refreshEligibility ) external { super.redeemFromSelfAndExitMarket(_redeemiToken); if (refreshEligibility) { IControllerBLP(address(controller)).refreshEligibility(msg.sender); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMathUpgradeable { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20Upgradeable { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20Upgradeable.sol"; import "../../math/SafeMathUpgradeable.sol"; import "../../utils/AddressUpgradeable.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20Upgradeable { using SafeMathUpgradeable for uint256; using AddressUpgradeable for address; function safeTransfer(IERC20Upgradeable token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20Upgradeable token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20Upgradeable token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20Upgradeable token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20Upgradeable token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "../interface/IFlashloanExecutor.sol"; import "../library/SafeRatioMath.sol"; import "./TokenERC20.sol"; /** * @title dForce's lending Base Contract * @author dForce */ abstract contract Base is TokenERC20 { using SafeRatioMath for uint256; /** * @notice Expects to call only once to create a new lending market. * @param _name Token name. * @param _symbol Token symbol. * @param _controller Core controller contract address. * @param _interestRateModel Token interest rate model contract address. */ function _initialize( string memory _name, string memory _symbol, uint8 _decimals, IController _controller, IInterestRateModel _interestRateModel ) internal virtual { controller = _controller; interestRateModel = _interestRateModel; _updateAccrualInterestUnit(_getInterestUnit()); borrowIndex = BASE; flashloanFeeRatio = 0.0008e18; protocolFeeRatio = 0.25e18; __Ownable_init(); __ERC20_init(_name, _symbol, _decimals); __ReentrancyGuard_init(); DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256( "EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)" ), keccak256(bytes(_name)), keccak256(bytes("1")), _getChainId(), address(this) ) ); } /*********************************/ /******** Security Check *********/ /*********************************/ /** * @notice Check whether is a iToken contract, return false for iMSD contract. */ function isiToken() external pure virtual returns (bool) { return true; } //---------------------------------- //******** Main calculation ******** //---------------------------------- struct InterestLocalVars { uint256 borrowRate; uint256 currentInterestUnit; uint256 currentCash; uint256 totalBorrows; uint256 totalReserves; uint256 borrowIndex; uint256 unitDelta; uint256 simpleInterestFactor; uint256 interestAccumulated; uint256 newTotalBorrows; uint256 newTotalReserves; uint256 newBorrowIndex; } function _getInterestUnit() internal view virtual override returns (uint256) { return block.number; } function getAccrualInterestUnit() public view virtual override returns (uint256) { return accrualBlockNumber; } function _updateAccrualInterestUnit( uint256 _unit ) internal virtual override { accrualBlockNumber = _unit; } /** * @notice Calculates interest and update total borrows and reserves. * @dev Updates total borrows and reserves with any accumulated interest. */ function _updateInterest() internal virtual override { // When more calls in the same timestamp, only the first one takes effect, so for the // following calls, nothing updates. if (_getInterestUnit() != getAccrualInterestUnit()) { InterestLocalVars memory _vars; _vars.currentCash = _getCurrentCash(); _vars.totalBorrows = totalBorrows; _vars.totalReserves = totalReserves; // Gets the current borrow interest rate. _vars.borrowRate = interestRateModel.getBorrowRate( _vars.currentCash, _vars.totalBorrows, _vars.totalReserves ); require( _vars.borrowRate <= maxBorrowRate, "_updateInterest: Borrow rate is too high!" ); // Records the current block number. _vars.currentInterestUnit = _getInterestUnit(); // Calculates the number of blocks elapsed since the last accrual. _vars.unitDelta = _vars.currentInterestUnit.sub( getAccrualInterestUnit() ); /** * Calculates the interest accumulated into borrows and reserves and the new index: * simpleInterestFactor = borrowRate * secsDelta * interestAccumulated = simpleInterestFactor * totalBorrows * newTotalBorrows = interestAccumulated + totalBorrows * newTotalReserves = interestAccumulated * reserveFactor + totalReserves * newBorrowIndex = simpleInterestFactor * borrowIndex + borrowIndex */ _vars.simpleInterestFactor = _vars.borrowRate.mul(_vars.unitDelta); _vars.interestAccumulated = _vars.simpleInterestFactor.rmul( _vars.totalBorrows ); _vars.newTotalBorrows = _vars.interestAccumulated.add( _vars.totalBorrows ); _vars.newTotalReserves = reserveRatio .rmul(_vars.interestAccumulated) .add(_vars.totalReserves); _vars.borrowIndex = borrowIndex; _vars.newBorrowIndex = _vars .simpleInterestFactor .rmul(_vars.borrowIndex) .add(_vars.borrowIndex); // Writes the previously calculated values into storage. _updateAccrualInterestUnit(_vars.currentInterestUnit); borrowIndex = _vars.newBorrowIndex; totalBorrows = _vars.newTotalBorrows; totalReserves = _vars.newTotalReserves; // Emits an `UpdateInterest` event. emit UpdateInterest( _vars.currentInterestUnit, _vars.interestAccumulated, _vars.newBorrowIndex, _vars.currentCash, _vars.newTotalBorrows, _vars.newTotalReserves ); } } struct MintLocalVars { uint256 exchangeRate; uint256 mintTokens; uint256 actualMintAmout; } /** * @dev User deposits token into the market and `_recipient` gets iToken. * @param _recipient The address of the user to get iToken. * @param _mintAmount The amount of the underlying token to deposit. */ function _mintInternal( address _recipient, uint256 _mintAmount ) internal virtual { controller.beforeMint(address(this), _recipient, _mintAmount); MintLocalVars memory _vars; /** * Gets the current exchange rate and calculate the number of iToken to be minted: * mintTokens = mintAmount / exchangeRate */ _vars.exchangeRate = _exchangeRateInternal(); // Transfers `_mintAmount` from caller to contract, and returns the actual amount the contract // get, cause some tokens may be charged. _vars.actualMintAmout = _doTransferIn(msg.sender, _mintAmount); // Supports deflationary tokens. _vars.mintTokens = _vars.actualMintAmout.rdiv(_vars.exchangeRate); // Mints `mintTokens` iToken to `_recipient`. _mint(_recipient, _vars.mintTokens); require( totalSupply >= TOTAL_SUPPLY_THRESHOLD, "_mintInternal: totalSupply too small!" ); controller.afterMint( address(this), _recipient, _mintAmount, _vars.mintTokens ); emit Mint(msg.sender, _recipient, _mintAmount, _vars.mintTokens); } /** * @notice This is a common function to redeem, so only one of `_redeemiTokenAmount` or * `_redeemUnderlyingAmount` may be non-zero. * @dev Caller redeems undelying token based on the input amount of iToken or underlying token. * @param _from The address of the account which will spend underlying token. * @param _redeemiTokenAmount The number of iTokens to redeem into underlying. * @param _redeemUnderlyingAmount The number of underlying tokens to receive. */ function _redeemInternal( address _from, uint256 _redeemiTokenAmount, uint256 _redeemUnderlyingAmount ) internal virtual { require( _redeemiTokenAmount > 0, "_redeemInternal: Redeem iToken amount should be greater than zero!" ); controller.beforeRedeem(address(this), _from, _redeemiTokenAmount); _burnFrom(_from, _redeemiTokenAmount); // Allow totalSupply reset to 0 require( totalSupply >= TOTAL_SUPPLY_THRESHOLD || totalSupply == 0, "_redeemInternal: totalSupply too small!" ); /** * Transfers `_redeemUnderlyingAmount` underlying token to caller. */ _doTransferOut(msg.sender, _redeemUnderlyingAmount); controller.afterRedeem( address(this), _from, _redeemiTokenAmount, _redeemUnderlyingAmount ); emit Redeem( _from, msg.sender, _redeemiTokenAmount, _redeemUnderlyingAmount ); } /** * @dev Caller borrows assets from the protocol. * @param _borrower The account that will borrow tokens. * @param _borrowAmount The amount of the underlying asset to borrow. */ function _borrowInternal( address payable _borrower, uint256 _borrowAmount ) internal virtual { controller.beforeBorrow(address(this), _borrower, _borrowAmount); // Calculates the new borrower and total borrow balances: // newAccountBorrows = accountBorrows + borrowAmount // newTotalBorrows = totalBorrows + borrowAmount BorrowSnapshot storage borrowSnapshot = accountBorrows[_borrower]; borrowSnapshot.principal = _borrowBalanceInternal(_borrower).add( _borrowAmount ); borrowSnapshot.interestIndex = borrowIndex; totalBorrows = totalBorrows.add(_borrowAmount); // Transfers token to borrower. _doTransferOut(_borrower, _borrowAmount); controller.afterBorrow(address(this), _borrower, _borrowAmount); emit Borrow( _borrower, _borrowAmount, borrowSnapshot.principal, borrowSnapshot.interestIndex, totalBorrows ); } /** * @notice Please approve enough amount at first!!! If not, * maybe you will get an error: `SafeMath: subtraction overflow` * @dev `_payer` repays `_repayAmount` tokens for `_borrower`. * @param _payer The account to pay for the borrowed. * @param _borrower The account with the debt being payed off. * @param _repayAmount The amount to repay (or -1 for max). */ function _repayInternal( address _payer, address _borrower, uint256 _repayAmount ) internal virtual returns (uint256) { controller.beforeRepayBorrow( address(this), _payer, _borrower, _repayAmount ); // Calculates the latest borrowed amount by the new market borrowed index. uint256 _accountBorrows = _borrowBalanceInternal(_borrower); // Transfers the token into the market to repay. uint256 _actualRepayAmount = _doTransferIn( _payer, _repayAmount > _accountBorrows ? _accountBorrows : _repayAmount ); // Calculates the `_borrower` new borrow balance and total borrow balances: // accountBorrows[_borrower].principal = accountBorrows - actualRepayAmount // newTotalBorrows = totalBorrows - actualRepayAmount // Saves borrower updates. BorrowSnapshot storage borrowSnapshot = accountBorrows[_borrower]; borrowSnapshot.principal = _accountBorrows.sub(_actualRepayAmount); borrowSnapshot.interestIndex = borrowIndex; totalBorrows = totalBorrows < _actualRepayAmount ? 0 : totalBorrows.sub(_actualRepayAmount); // Defense hook. controller.afterRepayBorrow( address(this), _payer, _borrower, _actualRepayAmount ); emit RepayBorrow( _payer, _borrower, _actualRepayAmount, borrowSnapshot.principal, borrowSnapshot.interestIndex, totalBorrows ); return _actualRepayAmount; } /** * @dev The caller repays some of borrow and receive collateral. * @param _borrower The account whose borrow should be liquidated. * @param _repayAmount The amount to repay. * @param _assetCollateral The market in which to seize collateral from the borrower. */ function _liquidateBorrowInternal( address _borrower, uint256 _repayAmount, address _assetCollateral ) internal virtual { require( msg.sender != _borrower, "_liquidateBorrowInternal: Liquidator can not be borrower!" ); // According to the parameter `_repayAmount` to see what is the exact error. require( _repayAmount != 0, "_liquidateBorrowInternal: Liquidate amount should be greater than 0!" ); // Accrues interest for collateral asset. Base _dlCollateral = Base(_assetCollateral); _dlCollateral.updateInterest(); controller.beforeLiquidateBorrow( address(this), _assetCollateral, msg.sender, _borrower, _repayAmount ); require( _dlCollateral.getAccrualInterestUnit() == _getInterestUnit(), "_liquidateBorrowInternal: Failed to update block timestamp in collateral asset!" ); uint256 _actualRepayAmount = _repayInternal( msg.sender, _borrower, _repayAmount ); // Calculates the number of collateral tokens that will be seized uint256 _seizeTokens = controller.liquidateCalculateSeizeTokens( address(this), _assetCollateral, _actualRepayAmount ); // If this is also the collateral, calls seizeInternal to avoid re-entrancy, // otherwise make an external call. if (_assetCollateral == address(this)) { _seizeInternal(address(this), msg.sender, _borrower, _seizeTokens); } else { _dlCollateral.seize(msg.sender, _borrower, _seizeTokens); } controller.afterLiquidateBorrow( address(this), _assetCollateral, msg.sender, _borrower, _actualRepayAmount, _seizeTokens ); emit LiquidateBorrow( msg.sender, _borrower, _actualRepayAmount, _assetCollateral, _seizeTokens ); } /** * @dev Transfers this token to the liquidator. * @param _seizerToken The contract seizing the collateral. * @param _liquidator The account receiving seized collateral. * @param _borrower The account having collateral seized. * @param _seizeTokens The number of iTokens to seize. */ function _seizeInternal( address _seizerToken, address _liquidator, address _borrower, uint256 _seizeTokens ) internal virtual { require( _borrower != _liquidator, "seize: Liquidator can not be borrower!" ); controller.beforeSeize( address(this), _seizerToken, _liquidator, _borrower, _seizeTokens ); /** * Calculates the new _borrower and _liquidator token balances, * that is transfer `_seizeTokens` iToken from `_borrower` to `_liquidator`. */ _transfer(_borrower, _liquidator, _seizeTokens); // Hook checks. controller.afterSeize( address(this), _seizerToken, _liquidator, _borrower, _seizeTokens ); } /** * @param _account The address whose balance should be calculated. */ function _borrowBalanceInternal( address _account ) internal view virtual returns (uint256) { // Gets stored borrowed data of the `_account`. BorrowSnapshot storage borrowSnapshot = accountBorrows[_account]; // If borrowBalance = 0, return 0 directly. if (borrowSnapshot.principal == 0 || borrowSnapshot.interestIndex == 0) return 0; // Calculate new borrow balance with market new borrow index: // recentBorrowBalance = borrower.borrowBalance * market.borrowIndex / borrower.borrowIndex return borrowSnapshot.principal.mul(borrowIndex).divup( borrowSnapshot.interestIndex ); } /** * @dev Calculates the exchange rate from the underlying token to the iToken. */ function _exchangeRateInternal() internal view virtual returns (uint256) { if (totalSupply == 0) { // This is the first time to mint, so current exchange rate is equal to initial exchange rate. return initialExchangeRate; } else { // exchangeRate = (totalCash + totalBorrows - totalReserves) / totalSupply return _getCurrentCash().add(totalBorrows).sub(totalReserves).rdiv( totalSupply ); } } function updateInterest() external virtual returns (bool); /** * @dev EIP2612 permit function. For more details, please look at here: * https://eips.ethereum.org/EIPS/eip-2612 * @param _owner The owner of the funds. * @param _spender The spender. * @param _value The amount. * @param _deadline The deadline timestamp, type(uint256).max for max deadline. * @param _v Signature param. * @param _s Signature param. * @param _r Signature param. */ function permit( address _owner, address _spender, uint256 _value, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external { require(_deadline >= block.timestamp, "permit: EXPIRED!"); uint256 _currentNonce = nonces[_owner]; bytes32 _digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256( abi.encode( PERMIT_TYPEHASH, _owner, _spender, _getChainId(), _value, _currentNonce, _deadline ) ) ) ); address _recoveredAddress = ecrecover(_digest, _v, _r, _s); require( _recoveredAddress != address(0) && _recoveredAddress == _owner, "permit: INVALID_SIGNATURE!" ); nonces[_owner] = _currentNonce.add(1); _approve(_owner, _spender, _value); } function _getChainId() internal pure returns (uint256) { uint256 chainId; assembly { chainId := chainid() } return chainId; } /** * @dev Transfers this tokens to the liquidator. * @param _liquidator The account receiving seized collateral. * @param _borrower The account having collateral seized. * @param _seizeTokens The number of iTokens to seize. */ function seize( address _liquidator, address _borrower, uint256 _seizeTokens ) external virtual; /** * @notice Users are expected to have enough allowance and balance before calling. * @dev Transfers asset in. */ function _doTransferIn( address _sender, uint256 _amount ) internal virtual returns (uint256); function exchangeRateStored() external view virtual returns (uint256); function borrowBalanceStored( address _account ) external view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; abstract contract InterestUnit { function _getInterestUnit() internal view virtual returns (uint256) {} function getAccrualInterestUnit() public view virtual returns (uint256) {} function _updateAccrualInterestUnit(uint256 _unit) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./TokenEvent.sol"; import "./InterestUnit.sol"; /** * @title dForce's lending Token admin Contract * @author dForce */ abstract contract TokenAdmin is TokenEvent, InterestUnit { //---------------------------------- //********* Owner Actions ********** //---------------------------------- modifier settleInterest() { // Accrues interest. _updateInterest(); require( getAccrualInterestUnit() == _getInterestUnit(), "settleInterest: Fail to accrue interest!" ); _; } /** * @dev Sets a new controller. */ function _setController( IController _newController ) external virtual onlyOwner { IController _oldController = controller; // Ensures the input address is a controller contract. require( _newController.isController(), "_setController: This is not the controller contract!" ); // Sets to new controller. controller = _newController; emit NewController(_oldController, _newController); } /** * @dev Sets a new interest rate model. * @param _newInterestRateModel The new interest rate model. */ function _setInterestRateModel( IInterestRateModel _newInterestRateModel ) external virtual onlyOwner { // Gets current interest rate model. IInterestRateModel _oldInterestRateModel = interestRateModel; // Ensures the input address is the interest model contract. require( _newInterestRateModel.isInterestRateModel(), "_setInterestRateModel: This is not the rate model contract!" ); // Set to the new interest rate model. interestRateModel = _newInterestRateModel; emit NewInterestRateModel(_oldInterestRateModel, _newInterestRateModel); } /** * @dev Sets a new reserve ratio. */ function _setNewReserveRatio( uint256 _newReserveRatio ) external virtual onlyOwner settleInterest { require( _newReserveRatio <= maxReserveRatio, "_setNewReserveRatio: New reserve ratio too large!" ); // Gets current reserve ratio. uint256 _oldReserveRatio = reserveRatio; // Sets new reserve ratio. reserveRatio = _newReserveRatio; emit NewReserveRatio(_oldReserveRatio, _newReserveRatio); } /** * @dev Sets a new flashloan fee ratio. */ function _setNewFlashloanFeeRatio( uint256 _newFlashloanFeeRatio ) external virtual onlyOwner settleInterest { require( _newFlashloanFeeRatio <= BASE, "setNewFlashloanFeeRatio: New flashloan ratio too large!" ); // Gets current reserve ratio. uint256 _oldFlashloanFeeRatio = flashloanFeeRatio; // Sets new reserve ratio. flashloanFeeRatio = _newFlashloanFeeRatio; emit NewFlashloanFeeRatio(_oldFlashloanFeeRatio, _newFlashloanFeeRatio); } /** * @dev Sets a new protocol fee ratio. */ function _setNewProtocolFeeRatio( uint256 _newProtocolFeeRatio ) external virtual onlyOwner settleInterest // nonReentrant { require( _newProtocolFeeRatio <= BASE, "_setNewProtocolFeeRatio: New protocol ratio too large!" ); // Gets current reserve ratio. uint256 _oldProtocolFeeRatio = protocolFeeRatio; // Sets new reserve ratio. protocolFeeRatio = _newProtocolFeeRatio; emit NewProtocolFeeRatio(_oldProtocolFeeRatio, _newProtocolFeeRatio); } /** * @dev Admin withdraws `_withdrawAmount` of the iToken. * @param _withdrawAmount Amount of reserves to withdraw. */ function _withdrawReserves( uint256 _withdrawAmount ) external virtual onlyOwner settleInterest // nonReentrant { require( _withdrawAmount <= totalReserves && _withdrawAmount <= _getCurrentCash(), "_withdrawReserves: Invalid withdraw amount and do not have enough cash!" ); uint256 _oldTotalReserves = totalReserves; // Updates total amount of the reserves. totalReserves = totalReserves.sub(_withdrawAmount); // Transfers reserve to the owner. _doTransferOut(owner, _withdrawAmount); emit ReservesWithdrawn( owner, _withdrawAmount, totalReserves, _oldTotalReserves ); } /** * @notice Calculates interest and update total borrows and reserves. * @dev Updates total borrows and reserves with any accumulated interest. */ function _updateInterest() internal virtual; /** * @dev Transfers underlying token out. */ function _doTransferOut( address payable _recipient, uint256 _amount ) internal virtual; /** * @dev Total amount of reserves owned by this contract. */ function _getCurrentCash() internal view virtual returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./TokenAdmin.sol"; /** * @title dForce's lending Token ERC20 Contract * @author dForce */ abstract contract TokenERC20 is TokenAdmin { /** * @dev Transfers `_amount` tokens from `_sender` to `_recipient`. * @param _sender The address of the source account. * @param _recipient The address of the destination account. * @param _amount The number of tokens to transfer. */ function _transferTokens( address _sender, address _recipient, uint256 _amount ) internal returns (bool) { require( _sender != _recipient, "_transferTokens: Do not self-transfer!" ); controller.beforeTransfer(address(this), _sender, _recipient, _amount); _transfer(_sender, _recipient, _amount); controller.afterTransfer(address(this), _sender, _recipient, _amount); return true; } //---------------------------------- //********* ERC20 Actions ********** //---------------------------------- /** * @notice Cause iToken is an ERC20 token, so users can `transfer` them, * but this action is only allowed when after transferring tokens, the caller * does not have a shortfall. * @dev Moves `_amount` tokens from caller to `_recipient`. * @param _recipient The address of the destination account. * @param _amount The number of tokens to transfer. */ function transfer( address _recipient, uint256 _amount ) public virtual override nonReentrant returns (bool) { return _transferTokens(msg.sender, _recipient, _amount); } /** * @notice Cause iToken is an ERC20 token, so users can `transferFrom` them, * but this action is only allowed when after transferring tokens, the `_sender` * does not have a shortfall. * @dev Moves `_amount` tokens from `_sender` to `_recipient`. * @param _sender The address of the source account. * @param _recipient The address of the destination account. * @param _amount The number of tokens to transfer. */ function transferFrom( address _sender, address _recipient, uint256 _amount ) public virtual override nonReentrant returns (bool) { _approve( _sender, msg.sender, // spender allowance[_sender][msg.sender].sub(_amount) ); return _transferTokens(_sender, _recipient, _amount); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./TokenStorage.sol"; /** * @title dForce's lending Token event Contract * @author dForce */ contract TokenEvent is TokenStorage { //---------------------------------- //********** User Events *********** //---------------------------------- event UpdateInterest( uint256 currentBlockNumber, uint256 interestAccumulated, uint256 borrowIndex, uint256 cash, uint256 totalBorrows, uint256 totalReserves ); event Mint( address sender, address recipient, uint256 mintAmount, uint256 mintTokens ); event Redeem( address from, address recipient, uint256 redeemiTokenAmount, uint256 redeemUnderlyingAmount ); /** * @dev Emits when underlying is borrowed. */ event Borrow( address borrower, uint256 borrowAmount, uint256 accountBorrows, uint256 accountInterestIndex, uint256 totalBorrows ); event RepayBorrow( address payer, address borrower, uint256 repayAmount, uint256 accountBorrows, uint256 accountInterestIndex, uint256 totalBorrows ); event LiquidateBorrow( address liquidator, address borrower, uint256 repayAmount, address iTokenCollateral, uint256 seizeTokens ); event Flashloan( address loaner, uint256 loanAmount, uint256 flashloanFee, uint256 protocolFee, uint256 timestamp ); //---------------------------------- //********** Owner Events ********** //---------------------------------- event NewReserveRatio(uint256 oldReserveRatio, uint256 newReserveRatio); event NewFlashloanFeeRatio( uint256 oldFlashloanFeeRatio, uint256 newFlashloanFeeRatio ); event NewProtocolFeeRatio( uint256 oldProtocolFeeRatio, uint256 newProtocolFeeRatio ); event NewFlashloanFee( uint256 oldFlashloanFeeRatio, uint256 newFlashloanFeeRatio, uint256 oldProtocolFeeRatio, uint256 newProtocolFeeRatio ); event NewInterestRateModel( IInterestRateModel oldInterestRateModel, IInterestRateModel newInterestRateModel ); event NewController(IController oldController, IController newController); event ReservesWithdrawn( address admin, uint256 amount, uint256 newTotalReserves, uint256 oldTotalReserves ); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts-upgradeable/token/ERC20/IERC20Upgradeable.sol"; import "../library/Initializable.sol"; import "../library/ReentrancyGuard.sol"; import "../library/Ownable.sol"; import "../library/ERC20.sol"; import "../interface/IInterestRateModel.sol"; import "../interface/IController.sol"; /** * @title dForce's lending Token storage Contract * @author dForce */ contract TokenStorage is Initializable, ReentrancyGuard, Ownable, ERC20 { //---------------------------------- //********* Token Storage ********** //---------------------------------- uint256 constant BASE = 1e18; /** * @dev Whether this token is supported in the market or not. */ bool public constant isSupported = true; /** * @dev Maximum borrow rate(0.1% per block, scaled by 1e18). */ uint256 constant maxBorrowRate = 0.001e18; /** * @dev Interest ratio set aside for reserves(scaled by 1e18). */ uint256 public reserveRatio; /** * @dev Maximum interest ratio that can be set aside for reserves(scaled by 1e18). */ uint256 constant maxReserveRatio = 1e18; /** * @notice This ratio is relative to the total flashloan fee. * @dev Flash loan fee rate(scaled by 1e18). */ uint256 public flashloanFeeRatio; /** * @notice This ratio is relative to the total flashloan fee. * @dev Protocol fee rate when a flashloan happens(scaled by 1e18); */ uint256 public protocolFeeRatio; /** * @dev Underlying token address. */ IERC20Upgradeable public underlying; /** * @dev Current interest rate model contract. */ IInterestRateModel public interestRateModel; /** * @dev Core control of the contract. */ IController public controller; /** * @dev Initial exchange rate(scaled by 1e18). */ uint256 constant initialExchangeRate = 1e18; /** * @dev The interest index for borrows of asset as of blockNumber. */ uint256 public borrowIndex; /** * @dev Block number that interest was last accrued at. */ uint256 public accrualBlockNumber; /** * @dev Total amount of this reserve borrowed. */ uint256 public totalBorrows; /** * @dev Total amount of this reserves accrued. */ uint256 public totalReserves; /** * @dev Container for user balance information written to storage. * @param principal User total balance with accrued interest after applying the user's most recent balance-changing action. * @param interestIndex The total interestIndex as calculated after applying the user's most recent balance-changing action. */ struct BorrowSnapshot { uint256 principal; uint256 interestIndex; } /** * @dev 2-level map: userAddress -> assetAddress -> balance for borrows. */ mapping(address => BorrowSnapshot) internal accountBorrows; bytes32 public DOMAIN_SEPARATOR; // keccak256("Permit(address owner,address spender,uint256 chainId, uint256 value,uint256 nonce,uint256 deadline)"); bytes32 public constant PERMIT_TYPEHASH = 0x576144ed657c8304561e56ca632e17751956250114636e8c01f64a7f2c6d98cf; mapping(address => uint256) public nonces; /// @notice The threshold of totalSupply, to mitigate exchage rate inflation by donation uint256 public constant TOTAL_SUPPLY_THRESHOLD = 10_000; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts-upgradeable/token/ERC20/SafeERC20Upgradeable.sol"; import "./TokenBase/Base.sol"; /** * @title dForce's Lending Protocol Contract. * @notice iTokens which wrap an EIP-20 underlying. * @author dForce Team. */ contract iToken is Base { using SafeERC20Upgradeable for IERC20Upgradeable; /** * @notice Expects to call only once to initialize a new market. * @param _underlyingToken The underlying token address. * @param _name Token name. * @param _symbol Token symbol. * @param _controller Core controller contract address. * @param _interestRateModel Token interest rate model contract address. */ function initialize( address _underlyingToken, string memory _name, string memory _symbol, IController _controller, IInterestRateModel _interestRateModel ) external initializer { require( address(_underlyingToken) != address(0), "initialize: underlying address should not be zero address!" ); require( address(_controller) != address(0), "initialize: controller address should not be zero address!" ); require( address(_interestRateModel) != address(0), "initialize: interest model address should not be zero address!" ); _initialize( _name, _symbol, ERC20(_underlyingToken).decimals(), _controller, _interestRateModel ); underlying = IERC20Upgradeable(_underlyingToken); } /** * @notice In order to support deflationary token, returns the changed amount. * @dev Similar to EIP20 transfer, except it handles a False result from `transferFrom`. */ function _doTransferIn( address _sender, uint256 _amount ) internal override returns (uint256) { uint256 _balanceBefore = underlying.balanceOf(address(this)); underlying.safeTransferFrom(_sender, address(this), _amount); return underlying.balanceOf(address(this)).sub(_balanceBefore); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transfer`. */ function _doTransferOut( address payable _recipient, uint256 _amount ) internal virtual override { underlying.safeTransfer(_recipient, _amount); } /** * @dev Gets balance of this contract in terms of the underlying */ function _getCurrentCash() internal view override returns (uint256) { return underlying.balanceOf(address(this)); } /** * @dev Caller deposits assets into the market and `_recipient` receives iToken in exchange. * @param _recipient The account that would receive the iToken. * @param _mintAmount The amount of the underlying token to deposit. */ function mint( address _recipient, uint256 _mintAmount ) public nonReentrant settleInterest { _mintInternal(_recipient, _mintAmount); } /** * @dev Caller deposits assets into the market and caller receives iToken in exchange, * and add markets to caller's markets list for liquidity calculations. * @param _mintAmount The amount of the underlying token to deposit. */ function mintForSelfAndEnterMarket( uint256 _mintAmount ) public nonReentrant settleInterest { _mintInternal(msg.sender, _mintAmount); controller.enterMarketFromiToken(address(this), msg.sender); } /** * @dev Caller redeems specified iToken from `_from` to get underlying token. * @param _from The account that would burn the iToken. * @param _redeemiToken The number of iToken to redeem. */ function redeem( address _from, uint256 _redeemiToken ) public nonReentrant settleInterest { _redeemInternal( _from, _redeemiToken, _redeemiToken.rmul(_exchangeRateInternal()) ); } /** * @dev Caller redeems specified underlying from `_from` to get underlying token. * @param _from The account that would burn the iToken. * @param _redeemUnderlying The number of underlying to redeem. */ function redeemUnderlying( address _from, uint256 _redeemUnderlying ) public nonReentrant settleInterest { _redeemInternal( _from, _redeemUnderlying.rdivup(_exchangeRateInternal()), _redeemUnderlying ); } /** * @dev Caller borrows tokens from the protocol to their own address. * @param _borrowAmount The amount of the underlying token to borrow. */ function borrow(uint256 _borrowAmount) public nonReentrant settleInterest { _borrowInternal(msg.sender, _borrowAmount); } /** * @dev Caller repays their own borrow. * @param _repayAmount The amount to repay. */ function repayBorrow( uint256 _repayAmount ) public nonReentrant settleInterest { _repayInternal(msg.sender, msg.sender, _repayAmount); } /** * @dev Caller repays a borrow belonging to borrower. * @param _borrower the account with the debt being payed off. * @param _repayAmount The amount to repay. */ function repayBorrowBehalf( address _borrower, uint256 _repayAmount ) public nonReentrant settleInterest { _repayInternal(msg.sender, _borrower, _repayAmount); } /** * @dev The caller liquidates the borrowers collateral. * @param _borrower The account whose borrow should be liquidated. * @param _assetCollateral The market in which to seize collateral from the borrower. * @param _repayAmount The amount to repay. */ function liquidateBorrow( address _borrower, uint256 _repayAmount, address _assetCollateral ) public nonReentrant settleInterest { _liquidateBorrowInternal(_borrower, _repayAmount, _assetCollateral); } /** * @dev Transfers this tokens to the liquidator. * @param _liquidator The account receiving seized collateral. * @param _borrower The account having collateral seized. * @param _seizeTokens The number of iTokens to seize. */ function seize( address _liquidator, address _borrower, uint256 _seizeTokens ) external override nonReentrant { _seizeInternal(msg.sender, _liquidator, _borrower, _seizeTokens); } /** * @notice Calculates interest and update total borrows and reserves. * @dev Updates total borrows and reserves with any accumulated interest. */ function updateInterest() external override returns (bool) { _updateInterest(); return true; } /** * @dev Gets the newest exchange rate by accruing interest. */ function exchangeRateCurrent() external returns (uint256) { // Accrues interest. _updateInterest(); return _exchangeRateInternal(); } /** * @dev Calculates the exchange rate without accruing interest. */ function exchangeRateStored() external view override returns (uint256) { return _exchangeRateInternal(); } /** * @dev Gets the underlying balance of the `_account`. * @param _account The address of the account to query. */ function balanceOfUnderlying(address _account) external returns (uint256) { // Accrues interest. _updateInterest(); return _exchangeRateInternal().rmul(balanceOf[_account]); } /** * @dev Gets the user's borrow balance with the latest `borrowIndex`. */ function borrowBalanceCurrent( address _account ) external nonReentrant returns (uint256) { // Accrues interest. _updateInterest(); return _borrowBalanceInternal(_account); } /** * @dev Gets the borrow balance of user without accruing interest. */ function borrowBalanceStored( address _account ) external view override returns (uint256) { return _borrowBalanceInternal(_account); } /** * @dev Gets user borrowing information. */ function borrowSnapshot( address _account ) external view returns (uint256, uint256) { return ( accountBorrows[_account].principal, accountBorrows[_account].interestIndex ); } /** * @dev Gets the current total borrows by accruing interest. */ function totalBorrowsCurrent() external returns (uint256) { // Accrues interest. _updateInterest(); return totalBorrows; } /** * @dev Returns the current per-unit(block/second) borrow interest rate. */ function borrowRatePerUnit() public view returns (uint256) { return interestRateModel.getBorrowRate( _getCurrentCash(), totalBorrows, totalReserves ); } /** * @dev Returns the current per-unit(block/second) supply interest rate. * Calculates the supply rate: * underlying = totalSupply × exchangeRate * borrowsPer = totalBorrows ÷ underlying * supplyRate = borrowRate × (1-reserveFactor) × borrowsPer */ function supplyRatePerUnit() external view returns (uint256) { // `_underlyingScaled` is scaled by 1e36. uint256 _underlyingScaled = totalSupply.mul(_exchangeRateInternal()); if (_underlyingScaled == 0) return 0; uint256 _totalBorrowsScaled = totalBorrows.mul(BASE); return borrowRatePerUnit().tmul( BASE.sub(reserveRatio), _totalBorrowsScaled.rdiv(_underlyingScaled) ); } /** * @dev Get cash balance of this iToken in the underlying token. */ function getCash() external view returns (uint256) { return _getCurrentCash(); } }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "./iToken.sol"; /** * @title dForce's Lending Protocol Contract. * @notice iTokens which wrap an EIP-20 underlying. * @author dForce Team. */ contract iTokenV2 is iToken { uint256 public accrualBlockTimestamp; function _getInterestUnit() internal view virtual override returns (uint256) { return block.timestamp; } function getAccrualInterestUnit() public view virtual override returns (uint256) { return accrualBlockTimestamp; } function _updateAccrualInterestUnit( uint256 _unit ) internal virtual override { accrualBlockTimestamp = _unit; } // Record time to calculate interests later. function _upgrade() external onlyOwner { require(accrualBlockTimestamp == 0, "_upgrade: Have upgraded!"); _updateAccrualInterestUnit(block.timestamp); } /** * @dev Sets a new interest rate model. * @param _newInterestRateModel The new interest rate model. */ function _setInterestRateModel( IInterestRateModel _newInterestRateModel ) external virtual override onlyOwner { // Gets current interest rate model. IInterestRateModel _oldInterestRateModel = interestRateModel; // Ensures the input address is the interest model contract. require( IInterestRateSecondModelV2(address(_newInterestRateModel)) .isInterestRateSecondModel(), "_setInterestRateModel: This is not the rate second model contract!" ); // Set to the new interest rate model. interestRateModel = _newInterestRateModel; emit NewInterestRateModel(_oldInterestRateModel, _newInterestRateModel); } /** * @dev Similar to EIP20 transfer, except it handles a False result from `transfer`. */ function _doTransferOut( address payable _recipient, uint256 _amount ) internal virtual override { address _dst = controller.beforeTransferUnderlying( address(this), address(underlying), _amount, _recipient ); underlying.safeTransfer(_dst, _amount); } function _liquidateBorrowInternal( address _borrower, uint256 _repayAmount, address _assetCollateral ) internal virtual override { require( msg.sender != _borrower, "_liquidateBorrowInternal: Liquidator can not be borrower!" ); // According to the parameter `_repayAmount` to see what is the exact error. require( _repayAmount != 0, "_liquidateBorrowInternal: Liquidate amount should be greater than 0!" ); // Accrues interest for collateral asset. Base _dlCollateral = Base(_assetCollateral); _dlCollateral.updateInterest(); controller.beforeLiquidateBorrow( address(this), _assetCollateral, msg.sender, _borrower, _repayAmount ); require( _dlCollateral.getAccrualInterestUnit() == _getInterestUnit(), "_liquidateBorrowInternal: Failed to update block timestamp in collateral asset!" ); uint256 _actualRepayAmount = _repayInternal( msg.sender, _borrower, _repayAmount ); // Calculates the number of collateral tokens that will be seized uint256 _seizeTokens = controller.liquidateCalculateSeizeTokensV2( address(this), _assetCollateral, _actualRepayAmount, _borrower ); // If this is also the collateral, calls seizeInternal to avoid re-entrancy, // otherwise make an external call. if (_assetCollateral == address(this)) { _seizeInternal(address(this), msg.sender, _borrower, _seizeTokens); } else { _dlCollateral.seize(msg.sender, _borrower, _seizeTokens); } controller.afterLiquidateBorrow( address(this), _assetCollateral, msg.sender, _borrower, _actualRepayAmount, _seizeTokens ); emit LiquidateBorrow( msg.sender, _borrower, _actualRepayAmount, _assetCollateral, _seizeTokens ); } /** * @dev Caller redeems assets from the market and caller receives underlying, * and exit markets. * @param _redeemiToken The amount of the iToken to redeem. */ function redeemFromSelfAndExitMarket( uint256 _redeemiToken ) public nonReentrant settleInterest { _redeemInternal( msg.sender, _redeemiToken, _redeemiToken.rmul(_exchangeRateInternal()) ); controller.exitMarketFromiToken(address(this), msg.sender); } }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; pragma experimental ABIEncoderV2; interface IControllerAdminV1 { /// @notice Emitted when an admin supports a market event MarketAdded( address iToken, uint256 collateralFactor, uint256 borrowFactor, uint256 supplyCapacity, uint256 borrowCapacity, uint256 distributionFactor ); function _addMarket( address _iToken, uint256 _collateralFactor, uint256 _borrowFactor, uint256 _supplyCapacity, uint256 _borrowCapacity, uint256 _distributionFactor ) external; /// @notice Emitted when new price oracle is set event NewPriceOracle(address oldPriceOracle, address newPriceOracle); function _setPriceOracle(address newOracle) external; /// @notice Emitted when close factor is changed by admin event NewCloseFactor( uint256 oldCloseFactorMantissa, uint256 newCloseFactorMantissa ); function _setCloseFactor(uint256 newCloseFactorMantissa) external; /// @notice Emitted when liquidation incentive is changed by admin event NewLiquidationIncentive( uint256 oldLiquidationIncentiveMantissa, uint256 newLiquidationIncentiveMantissa ); function _setLiquidationIncentive( uint256 newLiquidationIncentiveMantissa ) external; /// @notice Emitted when iToken's collateral factor is changed by admin event NewCollateralFactor( address iToken, uint256 oldCollateralFactorMantissa, uint256 newCollateralFactorMantissa ); function _setCollateralFactor( address iToken, uint256 newCollateralFactorMantissa ) external; /// @notice Emitted when iToken's borrow factor is changed by admin event NewBorrowFactor( address iToken, uint256 oldBorrowFactorMantissa, uint256 newBorrowFactorMantissa ); function _setBorrowFactor( address iToken, uint256 newBorrowFactorMantissa ) external; /// @notice Emitted when iToken's borrow capacity is changed by admin event NewBorrowCapacity( address iToken, uint256 oldBorrowCapacity, uint256 newBorrowCapacity ); function _setBorrowCapacity( address iToken, uint256 newBorrowCapacity ) external; /// @notice Emitted when iToken's supply capacity is changed by admin event NewSupplyCapacity( address iToken, uint256 oldSupplyCapacity, uint256 newSupplyCapacity ); function _setSupplyCapacity( address iToken, uint256 newSupplyCapacity ) external; /// @notice Emitted when pause guardian is changed by admin event NewPauseGuardian(address oldPauseGuardian, address newPauseGuardian); function _setPauseGuardian(address newPauseGuardian) external; /// @notice Emitted when mint is paused/unpaused by admin or pause guardian event MintPaused(address iToken, bool paused); function _setMintPaused(address iToken, bool paused) external; function _setAllMintPaused(bool paused) external; /// @notice Emitted when redeem is paused/unpaused by admin or pause guardian event RedeemPaused(address iToken, bool paused); function _setRedeemPaused(address iToken, bool paused) external; function _setAllRedeemPaused(bool paused) external; /// @notice Emitted when borrow is paused/unpaused by admin or pause guardian event BorrowPaused(address iToken, bool paused); function _setBorrowPaused(address iToken, bool paused) external; function _setAllBorrowPaused(bool paused) external; /// @notice Emitted when transfer is paused/unpaused by admin or pause guardian event TransferPaused(bool paused); function _setTransferPaused(bool paused) external; /// @notice Emitted when seize is paused/unpaused by admin or pause guardian event SeizePaused(bool paused); function _setSeizePaused(bool paused) external; function _setiTokenPaused(address iToken, bool paused) external; function _setProtocolPaused(bool paused) external; event NewRewardDistributor( address oldRewardDistributor, address _newRewardDistributor ); function _setRewardDistributor(address _newRewardDistributor) external; } interface IControllerPolicyV1 { function beforeMint( address iToken, address account, uint256 mintAmount ) external; function afterMint( address iToken, address minter, uint256 mintAmount, uint256 mintedAmount ) external; function beforeRedeem( address iToken, address redeemer, uint256 redeemAmount ) external; function afterRedeem( address iToken, address redeemer, uint256 redeemAmount, uint256 redeemedAmount ) external; function beforeBorrow( address iToken, address borrower, uint256 borrowAmount ) external; function afterBorrow( address iToken, address borrower, uint256 borrowedAmount ) external; function beforeRepayBorrow( address iToken, address payer, address borrower, uint256 repayAmount ) external; function afterRepayBorrow( address iToken, address payer, address borrower, uint256 repayAmount ) external; function beforeLiquidateBorrow( address iTokenBorrowed, address iTokenCollateral, address liquidator, address borrower, uint256 repayAmount ) external; function afterLiquidateBorrow( address iTokenBorrowed, address iTokenCollateral, address liquidator, address borrower, uint256 repaidAmount, uint256 seizedAmount ) external; function beforeSeize( address iTokenBorrowed, address iTokenCollateral, address liquidator, address borrower, uint256 seizeAmount ) external; function afterSeize( address iTokenBorrowed, address iTokenCollateral, address liquidator, address borrower, uint256 seizedAmount ) external; function beforeTransfer( address iToken, address from, address to, uint256 amount ) external; function afterTransfer( address iToken, address from, address to, uint256 amount ) external; function beforeFlashloan( address iToken, address to, uint256 amount ) external; function afterFlashloan( address iToken, address to, uint256 amount ) external; } interface IControllerAccountEquityV1 { function calcAccountEquity( address account ) external view returns (uint256, uint256, uint256, uint256); function liquidateCalculateSeizeTokens( address iTokenBorrowed, address iTokenCollateral, uint256 actualRepayAmount ) external view returns (uint256); } interface IControllerAccountV1 { function hasEnteredMarket( address account, address iToken ) external view returns (bool); function getEnteredMarkets( address account ) external view returns (address[] memory); /// @notice Emitted when an account enters a market event MarketEntered(address iToken, address account); function enterMarkets( address[] calldata iTokens ) external returns (bool[] memory); function enterMarketFromiToken(address _market, address _account) external; /// @notice Emitted when an account exits a market event MarketExited(address iToken, address account); function exitMarkets( address[] calldata iTokens ) external returns (bool[] memory); /// @notice Emitted when an account add a borrow asset event BorrowedAdded(address iToken, address account); /// @notice Emitted when an account remove a borrow asset event BorrowedRemoved(address iToken, address account); function hasBorrowed( address account, address iToken ) external view returns (bool); function getBorrowedAssets( address account ) external view returns (address[] memory); } interface IControllerV1 is IControllerAdminV1, IControllerPolicyV1, IControllerAccountEquityV1, IControllerAccountV1 { /** * @notice Security checks when updating the comptroller of a market, always expect to return true. */ function isController() external view returns (bool); /** * @notice Return all of the iTokens * @return The list of iToken addresses */ function getAlliTokens() external view returns (address[] memory); /** * @notice Check whether a iToken is listed in controller * @param _iToken The iToken to check for * @return true if the iToken is listed otherwise false */ function hasiToken(address _iToken) external view returns (bool); } interface IControllerV2 { event NewExtraExplicit( address _oldExtraExplicit, address _newExtraExplicit ); function _setExtraExplicit(address _newExtraExplicit) external; event NewExtraImplicit( address _oldExtraImplicit, address _newExtraImplicit ); function _setExtraImplicit(address _newExtraImplicit) external; function _upgrade( address _newExtraImplicit, address _newExtraExplicit ) external; /** * @param _iToken The _iToken to add * @param _collateralFactor The _collateralFactor of _iToken * @param _borrowFactor The _borrowFactor of _iToken * @param _supplyCapacity The _supplyCapacity of _iToken * @param _borrowCapacity The _borrowCapacity of _iToken * @param _distributionFactor The _distributionFactor of _iToken * @param _iTokenSModeID The SMode ID of _iToken * @param _sModeLtv The collateral factor of _iToken in the sMode * @param _sModeLiqThreshold The liquidation Threshold of _iToken in the sMode * @param _liquidationThreshold The liquidation Threshold of _iToken * @param _debtCeiling The _debtCeiling of _iToken in segregation mode, notice its decimal `DEBT_CEILING_DECIMALS` * @param _borrowableInSegregation True if the _iToken is borrowable in segregation mode */ struct AddMarketV2LocalVars { address _iToken; uint256 _collateralFactor; uint256 _borrowFactor; uint256 _supplyCapacity; uint256 _borrowCapacity; uint256 _distributionFactor; uint8 _sModeID; uint256 _sModeLtv; uint256 _sModeLiqThreshold; uint256 _liquidationThreshold; uint256 _debtCeiling; bool _borrowableInSegregation; } function _addMarketV2(AddMarketV2LocalVars memory _vars) external; function exitMarketFromiToken(address _market, address _account) external; } interface IControllerV2ExtraBase { event DebtCeilingChanged( address iToken, uint256 oldDebtCeiling, uint256 newDebtCeiling ); event BorrowableInSegregationChanged(address iToken, bool borrowable); event NewTimeLock(address oldTimeLock, address newTimeLock); event NewTimeLockStrategy( address oldTimeLockStrategy, address newTimeLockStrategy ); event SModeAdded( uint8 sModeId, uint256 liquidationIncentive, uint256 closeFactor, string label ); event SModeChanged( address iToken, uint8 oldCategoryId, uint8 newCategoryId ); event NewLiquidationThreshold( address _iToken, uint256 _oldLiquidationThresholdMantissa, uint256 _newLiquidationThresholdMantissa ); event NewSModeLiquidationIncentive( uint8 _sModeID, uint256 _oldSModeLiquidationIncentive, uint256 _newSModeLiquidationIncentive ); event NewSModeCloseFactor( uint8 _sModeID, uint256 _oldSModeCloseFactor, uint256 _newSModeCloseFactor ); event NewSModeLTV( address _iToken, uint256 _oldSModeLTV, uint256 _newSModeLTV ); event NewSModeLiquidationThreshold( address _iToken, uint256 _oldSModeLiquidationThreshold, uint256 _newSModeLiquidationThreshold ); event SModeEntered(uint8 oldSModeId, uint8 newSModeId, address account); function getSegregationModeState( address _account ) external view returns (bool, address); function getLiquidationIncentive( address _iToken, address _account ) external view returns (uint256); } interface IControllerV2ExtraExplicit is IControllerV2ExtraBase { function isControllerExtraExplicit() external view returns (bool); function initialize() external; function _upgrade() external; function _addMarketV2( IControllerV2.AddMarketV2LocalVars memory _vars ) external; function _setCollateralFactor( address iToken, uint256 newCollateralFactorMantissa ) external; function _setCloseFactor(uint256 newCloseFactorMantissa) external; function _setLiquidationIncentive( uint256 newLiquidationIncentiveMantissa ) external; function beforeBorrow( address iToken, address borrower, uint256 borrowAmount ) external; function afterRepayBorrow( address iToken, address payer, address borrower, uint256 repayAmount ) external; function beforeEnterMarket(address _iToken, address _account) external view; function getCloseFactor( address _iToken, address _account ) external view returns (uint256); } interface IControllerV2ExtraImplicit is IControllerV2ExtraBase { function isControllerExtraImplicit() external view returns (bool); function _setDebtCeiling(address _iToken, uint256 _newDebtCeiling) external; function _setBorrowableInSegregation( address _iToken, bool _borrowable ) external; function _setTimeLock(address _newTimeLock) external; function _setTimeLockStrategy(address _newTimeLockStrategy) external; function _addSMode( uint256 _liquidationIncentive, uint256 _closeFactor, string memory _label ) external; function _setSMode( address _iToken, uint8 _sModeID, uint256 _sModeLtv, uint256 _sModeLiqThreshold ) external; function _setLiquidationThreshold( address _iToken, uint256 _newLiquidationThresholdMantissa ) external; function _setSModeLiquidationIncentive( uint8 _sModeID, uint256 _liquidationIncentive ) external; function _setSModeCloseFactor( uint8 _sModeID, uint256 _closeFactor ) external; function _setSModeLTV(address _iToken, uint256 _ltv) external; function _setSModeLiquidationThreshold( address _iToken, uint256 _liquidationThreshold ) external; function beforeTransferUnderlying( address _asset, address _underlying, uint256 _amount, address _recipient ) external returns (address _dst); function liquidateCalculateSeizeTokensV2( address iTokenBorrowed, address iTokenCollateral, uint256 actualRepayAmount, address borrower ) external view returns (uint256); function calcAccountEquityWithEffectV2( address _account, address _tokenToEffect, uint256 _redeemAmount, uint256 _borrowAmount, bool _isLiquidation ) external view returns (uint256, uint256, uint256, uint256); function enterSMode(uint8 _newSModeId) external; function getSModeLength() external view returns (uint256 _sModeLength); function getCollateralFactor( address _iToken, uint8 _accountSModeID, uint8 _iTokenSModeID, bool _isLiquidation ) external view returns (uint256 _collateralFactor); function getLTV(address _iToken) external view returns (uint256); function getLiquidationThreshold( address _iToken ) external view returns (uint256); function getSModeLTV(address _iToken) external view returns (uint256); function getSModeLiquidationThreshold( address _iToken ) external view returns (uint256); } /** * @dev External Interfaces for test cases and front end */ interface IController is IControllerV1, IControllerV2, IControllerV2ExtraImplicit { struct MarketV2 { /* * Multiplier representing the most one can borrow against their collateral in this market. * For instance, 0.9 to allow borrowing 90% of collateral value. * Must be in [0, 0.9], and stored as a mantissa. */ uint256 collateralFactorMantissa; /* * Multiplier representing the most one can borrow the asset. * For instance, 0.5 to allow borrowing this asset 50% * collateral value * collateralFactor. * When calculating equity, 0.5 with 100 borrow balance will produce 200 borrow value * Must be between (0, 1], and stored as a mantissa. */ uint256 borrowFactorMantissa; /* * The borrow capacity of the asset, will be checked in beforeBorrow() * -1 means there is no limit on the capacity * 0 means the asset can not be borrowed any more */ uint256 borrowCapacity; /* * The supply capacity of the asset, will be checked in beforeMint() * -1 means there is no limit on the capacity * 0 means the asset can not be supplied any more */ uint256 supplyCapacity; // Whether market's mint is paused bool mintPaused; // Whether market's redeem is paused bool redeemPaused; // Whether market's borrow is paused bool borrowPaused; // sMode config // TODO: explanation uint8 sModeID; // Whether market can be borrowed in segregation mode bool borrowableInSegregation; // Debt ceiling for the market uint256 debtCeiling; // Current debt in segregation mode uint256 currentDebt; } function extraImplicit() external view returns (address); function extraExplicit() external view returns (address); function timeLock() external view returns (address); function timeLockStrategy() external view returns (address); function marketsV2(address _iToken) external view returns (MarketV2 memory); function DEBT_CEILING_DECIMALS() external view returns (uint256); function accountsSMode( address account ) external view returns (uint8 sModeID); function sModes( uint256 index ) external view returns ( uint256 liquidationIncentive, uint256 closeFactor, string calldata label ); function liquidationIncentiveMantissa() external view returns (uint256); function closeFactorMantissa() external view returns (uint256); function initializeV2( address _newExtraImplicit, address _newExtraExplicit ) external; function initialize() external; }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; interface IFlashloanExecutor { function executeOperation( address reserve, uint256 amount, uint256 fee, bytes memory data ) external; }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @title dForce Lending Protocol's InterestRateModel Interface. * @author dForce Team. */ interface IInterestRateModel { function isInterestRateModel() external view returns (bool); /** * @dev 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. * @param reserves The total amnount of reserves the market has. * @return The borrow rate per block (as a percentage, and scaled by 1e18). */ function getBorrowRate( uint256 cash, uint256 borrows, uint256 reserves ) external view returns (uint256); /** * @dev 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. * @param reserves The total amnount of reserves the market has. * @param reserveRatio The current reserve factor the market has. * @return The supply rate per block (as a percentage, and scaled by 1e18). */ function getSupplyRate( uint256 cash, uint256 borrows, uint256 reserves, uint256 reserveRatio ) external view returns (uint256); } interface IInterestRateSecondModelV2 { function isInterestRateSecondModel() external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 { using SafeMathUpgradeable for uint256; mapping(address => uint256) public balanceOf; mapping(address => mapping(address => uint256)) public allowance; uint256 public totalSupply; string public name; string public symbol; uint8 public decimals; /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ function __ERC20_init( string memory name_, string memory symbol_, uint8 decimals_ ) internal { name = name_; symbol = symbol_; decimals = decimals_; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual returns (bool) { _transfer(msg.sender, recipient, amount); return true; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual returns (bool) { _approve(msg.sender, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual returns (bool) { _transfer(sender, recipient, amount); _approve(sender, msg.sender, allowance[sender][msg.sender].sub(amount)); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( msg.sender, spender, allowance[msg.sender][spender].add(addedValue) ); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance( address spender, uint256 subtractedValue ) public virtual returns (bool) { _approve( msg.sender, spender, allowance[msg.sender][spender].sub(subtractedValue) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); balanceOf[sender] = balanceOf[sender].sub(amount); balanceOf[recipient] = balanceOf[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); totalSupply = totalSupply.add(amount); balanceOf[account] = balanceOf[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); balanceOf[account] = balanceOf[account].sub(amount); totalSupply = totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance if caller is not the `account`. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller other than `msg.sender` must have allowance for ``accounts``'s tokens of at least * `amount`. */ function _burnFrom(address account, uint256 amount) internal virtual { if (msg.sender != account) _approve( account, msg.sender, allowance[account][msg.sender].sub(amount) ); _burn(account, amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); allowance[owner][spender] = amount; emit Approval(owner, spender, amount); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require( !_initialized, "Initializable: contract is already initialized" ); _; _initialized = true; } }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {_setPendingOwner} and {_acceptOwner}. */ contract Ownable { /** * @dev Returns the address of the current owner. */ address payable public owner; /** * @dev Returns the address of the current pending owner. */ address payable public pendingOwner; event NewOwner(address indexed previousOwner, address indexed newOwner); event NewPendingOwner( address indexed oldPendingOwner, address indexed newPendingOwner ); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner == msg.sender, "onlyOwner: caller is not the owner"); _; } /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal { owner = msg.sender; emit NewOwner(address(0), msg.sender); } /** * @notice Base on the inputing parameter `newPendingOwner` to check the exact error reason. * @dev Transfer contract control to a new owner. The newPendingOwner must call `_acceptOwner` to finish the transfer. * @param newPendingOwner New pending owner. */ function _setPendingOwner( address payable newPendingOwner ) external onlyOwner { require( newPendingOwner != address(0) && newPendingOwner != pendingOwner, "_setPendingOwner: New owenr can not be zero address and owner has been set!" ); // Gets current owner. address oldPendingOwner = pendingOwner; // Sets new pending owner. pendingOwner = newPendingOwner; emit NewPendingOwner(oldPendingOwner, newPendingOwner); } /** * @dev Accepts the admin rights, but only for pendingOwenr. */ function _acceptOwner() external { require( msg.sender == pendingOwner, "_acceptOwner: Only for pending owner!" ); // Gets current values for events. address oldOwner = owner; address oldPendingOwner = pendingOwner; // Set the new contract owner. owner = pendingOwner; // Clear the pendingOwner. pendingOwner = address(0); emit NewOwner(oldOwner, owner); emit NewPendingOwner(oldPendingOwner, pendingOwner); } uint256[50] private __gap; }
// SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ // abstract contract ReentrancyGuardUpgradeable is Initializable { abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; function __ReentrancyGuard_init() internal { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } uint256[49] private __gap; }
//SPDX-License-Identifier: MIT pragma solidity 0.6.12; import "@openzeppelin/contracts-upgradeable/math/SafeMathUpgradeable.sol"; library SafeRatioMath { using SafeMathUpgradeable for uint256; uint256 private constant BASE = 10 ** 18; uint256 private constant DOUBLE = 10 ** 36; function divup(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x.add(y.sub(1)).div(y); } function rmul(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x.mul(y).div(BASE); } function rdiv(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x.mul(BASE).div(y); } function rdivup(uint256 x, uint256 y) internal pure returns (uint256 z) { z = x.mul(BASE).add(y.sub(1)).div(y); } function tmul( uint256 x, uint256 y, uint256 z ) internal pure returns (uint256 result) { result = x.mul(y).mul(z).div(DOUBLE); } function rpow( uint256 x, uint256 n, uint256 base ) internal pure returns (uint256 z) { assembly { switch x case 0 { switch n case 0 { z := base } default { z := 0 } } default { switch mod(n, 2) case 0 { z := base } default { z := x } let half := div(base, 2) // for rounding. for { n := div(n, 2) } n { n := div(n, 2) } { let xx := mul(x, x) if iszero(eq(div(xx, x), x)) { revert(0, 0) } let xxRound := add(xx, half) if lt(xxRound, xx) { revert(0, 0) } x := div(xxRound, base) if mod(n, 2) { let zx := mul(z, x) if and(iszero(iszero(x)), iszero(eq(div(zx, x), z))) { revert(0, 0) } let zxRound := add(zx, half) if lt(zxRound, zx) { revert(0, 0) } z := div(zxRound, base) } } } } } }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "bytecodeHash": "ipfs", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","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":"accountInterestIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"Borrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"loaner","type":"address"},{"indexed":false,"internalType":"uint256","name":"loanAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"flashloanFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Flashloan","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":"iTokenCollateral","type":"address"},{"indexed":false,"internalType":"uint256","name":"seizeTokens","type":"uint256"}],"name":"LiquidateBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","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":"contract IController","name":"oldController","type":"address"},{"indexed":false,"internalType":"contract IController","name":"newController","type":"address"}],"name":"NewController","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldFlashloanFeeRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFlashloanFeeRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldProtocolFeeRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProtocolFeeRatio","type":"uint256"}],"name":"NewFlashloanFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldFlashloanFeeRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newFlashloanFeeRatio","type":"uint256"}],"name":"NewFlashloanFeeRatio","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"contract IInterestRateModel","name":"oldInterestRateModel","type":"address"},{"indexed":false,"internalType":"contract IInterestRateModel","name":"newInterestRateModel","type":"address"}],"name":"NewInterestRateModel","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"NewOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"oldPendingOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"NewPendingOwner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldProtocolFeeRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newProtocolFeeRatio","type":"uint256"}],"name":"NewProtocolFeeRatio","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"oldReserveRatio","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newReserveRatio","type":"uint256"}],"name":"NewReserveRatio","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"redeemiTokenAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"redeemUnderlyingAmount","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":"accountInterestIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"}],"name":"RepayBorrow","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"admin","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newTotalReserves","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"oldTotalReserves","type":"uint256"}],"name":"ReservesWithdrawn","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":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentBlockNumber","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"interestAccumulated","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"borrowIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"cash","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalBorrows","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalReserves","type":"uint256"}],"name":"UpdateInterest","type":"event"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PERMIT_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOTAL_SUPPLY_THRESHOLD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_acceptOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IController","name":"_newController","type":"address"}],"name":"_setController","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IInterestRateModel","name":"_newInterestRateModel","type":"address"}],"name":"_setInterestRateModel","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFlashloanFeeRatio","type":"uint256"}],"name":"_setNewFlashloanFeeRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newProtocolFeeRatio","type":"uint256"}],"name":"_setNewProtocolFeeRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newReserveRatio","type":"uint256"}],"name":"_setNewReserveRatio","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"newPendingOwner","type":"address"}],"name":"_setPendingOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_upgrade","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawAmount","type":"uint256"}],"name":"_withdrawReserves","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"accrualBlockNumber","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"accrualBlockTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"balanceOfUnderlying","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_borrowAmount","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"borrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_borrowAmount","type":"uint256"}],"name":"borrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"borrowBalanceCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"borrowBalanceStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"borrowRatePerUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"borrowSnapshot","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"contract IController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeRateCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"exchangeRateStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flashloanFeeRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getAccrualInterestUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCash","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_underlyingToken","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"contract IController","name":"_controller","type":"address"},{"internalType":"contract IInterestRateModel","name":"_interestRateModel","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"interestRateModel","outputs":[{"internalType":"contract IInterestRateModel","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isiToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_repayAmount","type":"uint256"},{"internalType":"address","name":"_assetCollateral","type":"address"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"liquidateBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_repayAmount","type":"uint256"},{"internalType":"address","name":"_assetCollateral","type":"address"}],"name":"liquidateBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"mintForSelfAndEnterMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintForSelfAndEnterMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_spender","type":"address"},{"internalType":"uint256","name":"_value","type":"uint256"},{"internalType":"uint256","name":"_deadline","type":"uint256"},{"internalType":"uint8","name":"_v","type":"uint8"},{"internalType":"bytes32","name":"_r","type":"bytes32"},{"internalType":"bytes32","name":"_s","type":"bytes32"}],"name":"permit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"protocolFeeRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_redeemiToken","type":"uint256"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_redeemiToken","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_redeemiToken","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"redeemFromSelfAndExitMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_redeemiToken","type":"uint256"}],"name":"redeemFromSelfAndExitMarket","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_redeemUnderlying","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"redeemUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"uint256","name":"_redeemUnderlying","type":"uint256"}],"name":"redeemUnderlying","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_repayAmount","type":"uint256"}],"name":"repayBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_repayAmount","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"repayBorrow","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_repayAmount","type":"uint256"}],"name":"repayBorrowBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_repayAmount","type":"uint256"},{"internalType":"bool","name":"refreshEligibility","type":"bool"}],"name":"repayBorrowBehalf","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_liquidator","type":"address"},{"internalType":"address","name":"_borrower","type":"address"},{"internalType":"uint256","name":"_seizeTokens","type":"uint256"}],"name":"seize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"supplyRatePerUnit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrows","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalBorrowsCurrent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalReserves","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_recipient","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"underlying","outputs":[{"internalType":"contract IERC20Upgradeable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateInterest","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b5061514b806100206000396000f3fe608060405234801561001057600080fd5b50600436106104285760003560e01c80637ecebe001161022b578063c5ebeaec11610130578063dd62ed3e116100b8578063f2b3abbd11610087578063f2b3abbd14610d53578063f3fdb15a14610d79578063f5e3c46214610d81578063f77c479114610db7578063fc4d33f914610dbf57610428565b8063dd62ed3e14610cf8578063e30c397814610d26578063e71c3fe114610d2e578063e95df6e114610d4b57610428565b8063d1482791116100ff578063d148279114610bfb578063d1a1beb414610c03578063d505accf14610c37578063d8c026e614610c88578063db256d5a14610cc457610428565b8063c5ebeaec14610bb1578063c9f30e5314610bce578063ca302d0d14610beb578063cfa9920114610bf357610428565b806396294178116101b3578063b2a02ff111610182578063b2a02ff114610b31578063b3efd5b414610b67578063ba49f54a14610b84578063bd6d894d14610b8c578063c0bd21fd14610b9457610428565b80639629417814610aa5578063a457c2d714610ad1578063a9059cbb14610afd578063aa5af0fd14610b2957610428565b80638da5cb5b116101fa5780638da5cb5b14610a5f5780638f840ddd14610a6757806392e8dbd714610a6f57806395d89b4114610a7757806395dd919314610a7f57610428565b80637ecebe00146109c957806383de424e146109ef5780638b18b5bc14610a155780638cd0130714610a3a57610428565b80633b1d21a2116103315780636c540baf116102b957806370a082311161028857806370a082311461098357806373acee98146109a957806374427937146109b1578063793dd961146109b95780637a27d9f6146109c157610428565b80636c540baf146107de5780636cf1dbed146107e65780636e96dfd7146109395780636f307dc31461095f57610428565b806347bd37181161030057806347bd3718146107585780634cdfda65146107605780634dd0ef7c14610794578063508fe21f146107b9578063621fd507146107d657610428565b80633b1d21a2146106cb5780633f59c921146106d357806340c10f19146106f85780634458a14c1461072457610428565b806323b872dd116103b4578063313ce56711610383578063313ce567146106145780633644e5151461063257806337d336181461063a57806339509351146106795780633af9e669146106a557610428565b806323b872dd1461058d5780632608f818146105c3578063269aafee146105ef57806330adf81f1461060c57610428565b806317bfdfbc116103fb57806317bfdfbc1461052357806318160ddd14610549578063182df0f514610551578063197523f8146105595780631e9a69501461056157610428565b806306fdde031461042d578063095ea7b3146104aa5780630c7d5cd8146104ea5780630e75270214610504575b600080fd5b610435610dc7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046f578181015183820152602001610457565b50505050905090810190601f16801561049c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104d6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e55565b604080519115158252519081900360200190f35b6104f2610e6c565b60408051918252519081900360200190f35b6105216004803603602081101561051a57600080fd5b5035610e72565b005b6104f26004803603602081101561053957600080fd5b50356001600160a01b0316610f24565b6104f2610f8c565b6104f2610f92565b6104f2610fa2565b6105216004803603604081101561057757600080fd5b506001600160a01b038135169060200135610fa8565b6104d6600480360360608110156105a357600080fd5b506001600160a01b03813581169160208101359091169060400135611063565b610521600480360360408110156105d957600080fd5b506001600160a01b038135169060200135611101565b6105216004803603602081101561060557600080fd5b50356111b4565b6104f26112df565b61061c611303565b6040805160ff9092168252519081900360200190f35b6104f261130c565b6106606004803603602081101561065057600080fd5b50356001600160a01b0316611312565b6040805192835260208301919091528051918290030190f35b6104d66004803603604081101561068f57600080fd5b506001600160a01b038135169060200135611335565b6104f2600480360360208110156106bb57600080fd5b50356001600160a01b031661136b565b6104f26113a8565b610521600480360360408110156106e957600080fd5b508035906020013515156113b2565b6105216004803603604081101561070e57600080fd5b506001600160a01b03813516906020013561142a565b6105216004803603606081101561073a57600080fd5b506001600160a01b03813516906020810135906040013515156114d3565b6104f261154f565b6105216004803603606081101561077657600080fd5b506001600160a01b0381351690602081013590604001351515611555565b610521600480360360408110156107aa57600080fd5b5080359060200135151561155f565b610521600480360360208110156107cf57600080fd5b5035611568565b6104d6611693565b6104f2611698565b610521600480360360a08110156107fc57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561082757600080fd5b82018360208201111561083957600080fd5b8035906020019184600183028401116401000000008311171561085b57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156108ae57600080fd5b8201836020820111156108c057600080fd5b803590602001918460018302840111640100000000831117156108e257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b03833581169450602090930135909216915061169e9050565b6105216004803603602081101561094f57600080fd5b50356001600160a01b0316611854565b610967611950565b604080516001600160a01b039092168252519081900360200190f35b6104f26004803603602081101561099957600080fd5b50356001600160a01b031661195f565b6104f2611971565b6104d6611982565b6104f2611987565b6104f261198d565b6104f2600480360360208110156109df57600080fd5b50356001600160a01b0316611993565b61052160048036036020811015610a0557600080fd5b50356001600160a01b03166119a5565b61052160048036036040811015610a2b57600080fd5b50803590602001351515611afc565b61052160048036036040811015610a5057600080fd5b50803590602001351515611b05565b610967611b0e565b6104f2611b1d565b6104f2611b23565b610435611bb8565b6104f260048036036020811015610a9557600080fd5b50356001600160a01b0316611c13565b61052160048036036040811015610abb57600080fd5b506001600160a01b038135169060200135611c1e565b6104d660048036036040811015610ae757600080fd5b506001600160a01b038135169060200135611cd9565b6104d660048036036040811015610b1357600080fd5b506001600160a01b038135169060200135611d0f565b6104f2611d72565b61052160048036036060811015610b4757600080fd5b506001600160a01b03813581169160208101359091169060400135611d78565b61052160048036036020811015610b7d57600080fd5b5035611dcf565b610521611f41565b6104f2611fea565b61052160048036036020811015610baa57600080fd5b5035611ffc565b61052160048036036020811015610bc757600080fd5b5035612116565b61052160048036036020811015610be457600080fd5b50356121c6565b6104f26122f1565b6104f26122f7565b6104d66122fd565b61052160048036036060811015610c1957600080fd5b506001600160a01b038135169060208101359060400135151561230d565b610521600480360360e0811015610c4d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612317565b61052160048036036080811015610c9e57600080fd5b506001600160a01b0381358116916020810135916040820135169060600135151561255a565b61052160048036036060811015610cda57600080fd5b506001600160a01b0381351690602081013590604001351515612680565b6104f260048036036040811015610d0e57600080fd5b506001600160a01b038135811691602001351661268a565b6109676126a7565b61052160048036036020811015610d4457600080fd5b50356126b6565b6104f26127b7565b61052160048036036020811015610d6957600080fd5b50356001600160a01b0316612839565b610967612990565b61052160048036036060811015610d9757600080fd5b506001600160a01b0381358116916020810135916040909101351661299f565b610967612a49565b610521612a58565b606a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b6000610e62338484612b3f565b5060015b92915050565b609f5481565b60026001541415610eb8576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610ec5612c2b565b610ecd612e84565b610ed5611987565b14610f115760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c333383612e88565b505060018055565b600060026001541415610f6c576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610f79612c2b565b610f828261306d565b6001805592915050565b60695481565b6000610f9c6130c3565b90505b90565b60a05481565b60026001541415610fee576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610ffb612c2b565b611003612e84565b61100b611987565b146110475760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c828261105e6110576130c3565b859061310c565b61312a565b6000600260015414156110ab576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556001600160a01b0384166000908152606860209081526040808320338085529252909120546110ea9186916110e5908661330d565b612b3f565b6110f584848461334f565b60018055949350505050565b60026001541415611147576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611154612c2b565b61115c612e84565b611164611987565b146111a05760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6111ab338383612e88565b50506001805550565b6033546001600160a01b031633146111fd5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b611205612c2b565b61120d612e84565b611215611987565b146112515760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a76400008111156112985760405162461bcd60e51b8152600401808060200182810382526036815260200180614db76036913960400191505060405180910390fd5b60a1805490829055604080518281526020810184905281517f1f6917c8223f142d2549d7531b9897b963f67c4cd1d266e9771080a608ebe188929181900390910190a15050565b7f576144ed657c8304561e56ca632e17751956250114636e8c01f64a7f2c6d98cf81565b606c5460ff1681565b60aa5481565b6001600160a01b0316600090815260a96020526040902080546001909101549091565b3360008181526068602090815260408083206001600160a01b03871684529091528120549091610e629185906110e590866134ad565b6000611375612c2b565b6001600160a01b0382166000908152606760205260409020546113a09061139a6130c3565b9061310c565b90505b919050565b6000610f9c613507565b6113bb82611ffc565b80156114265760a45460408051633996b8cb60e11b815233600482015290516001600160a01b039092169163732d71969160248082019260009290919082900301818387803b15801561140d57600080fd5b505af1158015611421573d6000803e3d6000fd5b505050505b5050565b60026001541415611470576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b600260015561147d612c2b565b611485612e84565b61148d611987565b146114c95760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c8282613552565b6114dd8383610fa8565b801561154a5760a45460408051633996b8cb60e11b81526001600160a01b0386811660048301529151919092169163732d719691602480830192600092919082900301818387803b15801561153157600080fd5b505af1158015611545573d6000803e3d6000fd5b505050505b505050565b60a75481565b6114dd8383611c1e565b6113bb82610e72565b6033546001600160a01b031633146115b15760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b6115b9612c2b565b6115c1612e84565b6115c9611987565b146116055760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a764000081111561164c5760405162461bcd60e51b8152600401808060200182810382526037815260200180614eac6037913960400191505060405180910390fd5b60a0805490829055604080518281526020810184905281517fcc8d29bd7a6ccb34210e5349873398367afa955e6b745621430e8152677d7c75929181900390910190a15050565b600190565b60a65481565b60005460ff16156116e05760405162461bcd60e51b815260040180806020018281038252602e815260200180614e15602e913960400191505060405180910390fd5b6001600160a01b0385166117255760405162461bcd60e51b815260040180806020018281038252603a815260200180614b5b603a913960400191505060405180910390fd5b6001600160a01b03821661176a5760405162461bcd60e51b815260040180806020018281038252603a815260200180614f2a603a913960400191505060405180910390fd5b6001600160a01b0381166117af5760405162461bcd60e51b815260040180806020018281038252603e815260200180614bc9603e913960400191505060405180910390fd5b6118208484876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ed57600080fd5b505afa158015611801573d6000803e3d6000fd5b505050506040513d602081101561181757600080fd5b50518585613726565b505060a280546001600160a01b0319166001600160a01b03949094169390931790925550506000805460ff19166001179055565b6033546001600160a01b0316331461189d5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b6001600160a01b038116158015906118c357506034546001600160a01b03828116911614155b6118fe5760405162461bcd60e51b815260040180806020018281038252604b815260200180614c27604b913960600191505060405180910390fd5b603480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b60a2546001600160a01b031681565b60676020526000908152604090205481565b600061197b612c2b565b5060a75490565b600181565b60ac5490565b60a15481565b60ab6020526000908152604090205481565b6033546001600160a01b031633146119ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60a45460408051634e1647fb60e01b815290516001600160a01b0392831692841691634e1647fb916004808301926020929190829003018186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d6020811015611a5f57600080fd5b5051611a9c5760405162461bcd60e51b8152600401808060200182810382526034815260200180614b956034913960400191505060405180910390fd5b60a480546001600160a01b0319166001600160a01b03848116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a15050565b6113bb826126b6565b6113bb82612116565b6033546001600160a01b031681565b60a85481565b60a3546000906001600160a01b03166315f24053611b3f613507565b60a75460a8546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d6020811015611bb157600080fd5b5051905090565b606b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b60006113a08261306d565b60026001541415611c64576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611c71612c2b565b611c79612e84565b611c81611987565b14611cbd5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c82611cd3611ccc6130c3565b8490613841565b8361312a565b3360008181526068602090815260408083206001600160a01b03871684529091528120549091610e629185906110e5908661330d565b600060026001541415611d57576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611d6733848461334f565b600180559392505050565b60a55481565b60026001541415611dbe576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556111ab33848484613867565b6033546001600160a01b03163314611e185760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b611e20612c2b565b611e28612e84565b611e30611987565b14611e6c5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b60a8548111158015611e855750611e81613507565b8111155b611ec05760405162461bcd60e51b8152600401808060200182810382526047815260200180614ee36047913960600191505060405180910390fd5b60a854611ecd818361330d565b60a855603354611ee6906001600160a01b0316836139cd565b60335460a854604080516001600160a01b039093168352602083018590528281019190915260608201839052517f2e8843ddc3123732d720f1cb17a6e81d71d5bb90a346f13498b87c5639d474409181900360800190a15050565b6033546001600160a01b03163314611f8a5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60ac5415611fdf576040805162461bcd60e51b815260206004820152601860248201527f5f757067726164653a2048617665207570677261646564210000000000000000604482015290519081900360640190fd5b611fe842613a7d565b565b6000611ff4612c2b565b610f9c6130c3565b60026001541415612042576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b600260015561204f612c2b565b612057612e84565b61205f611987565b1461209b5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6120a53382613552565b60a45460408051636c7ad2b960e11b815230600482015233602482015290516001600160a01b039092169163d8f5a5729160448082019260009290919082900301818387803b1580156120f757600080fd5b505af115801561210b573d6000803e3d6000fd5b505060018055505050565b6002600154141561215c576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155612169612c2b565b612171612e84565b612179611987565b146121b55760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6121bf3382613a82565b5060018055565b6033546001600160a01b0316331461220f5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b612217612c2b565b61221f612e84565b612227611987565b146122635760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a76400008111156122aa5760405162461bcd60e51b8152600401808060200182810382526031815260200180614d866031913960400191505060405180910390fd5b609f805490829055604080518281526020810184905281517f619970c7b73e9bc2b93e0fc379d50dbf7eced564f397fba395b2e7efc0b4894d929181900390910190a15050565b61271081565b60ac5481565b6000612307612c2b565b50600190565b6114dd838361142a565b4284101561235f576040805162461bcd60e51b815260206004820152601060248201526f7065726d69743a20455850495245442160801b604482015290519081900360640190fd5b6001600160a01b038716600090815260ab602052604081205460aa549091907f576144ed657c8304561e56ca632e17751956250114636e8c01f64a7f2c6d98cf8a8a6123a9613c17565b604080516020808201969096526001600160a01b0394851681830152929093166060830152608082015260a081018b905260c0810186905260e08082018b9052825180830390910181526101008201835280519084012061190160f01b61012083015261012282019490945261014280820194909452815180820390940184526101628101808352845194840194909420600094859052610182820180845281905260ff8a166101a28301526101c282018990526101e282018890529151919450600192610202808301939192601f198301929081900390910190855afa158015612498573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906124ce5750896001600160a01b0316816001600160a01b0316145b61251f576040805162461bcd60e51b815260206004820152601a60248201527f7065726d69743a20494e56414c49445f5349474e415455524521000000000000604482015290519081900360640190fd5b61252a8360016134ad565b6001600160a01b038b16600090815260ab602052604090205561254e8a8a8a612b3f565b50505050505050505050565b61256584848461299f565b801561267a576040805160028082526060808301845292602083019080368337019050509050848160008151811061259957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505033816001815181106125c757fe5b6001600160a01b0392831660209182029290920181019190915260a454604051630589c62760e31b8152600481018381528551602483015285519290941693632c4e313893869391928392604490910191858101910280838360005b8381101561263b578181015183820152602001612623565b5050505090500192505050600060405180830381600087803b15801561266057600080fd5b505af1158015612674573d6000803e3d6000fd5b50505050505b50505050565b6114dd8383611101565b606860209081526000928352604080842090915290825290205481565b6034546001600160a01b031681565b600260015414156126fc576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155612709612c2b565b612711612e84565b612719611987565b146127555760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b612765338261105e6110576130c3565b60a4546040805163aa0921bd60e01b815230600482015233602482015290516001600160a01b039092169163aa0921bd9160448082019260009290919082900301818387803b1580156120f757600080fd5b6000806127ce6127c56130c3565b60695490613c1b565b9050806127df576000915050610f9f565b60a7546000906127f790670de0b6b3a7640000613c1b565b9050612832612819609f54670de0b6b3a764000061330d90919063ffffffff16565b6128238385613c74565b61282b611b23565b9190613c8c565b9250505090565b6033546001600160a01b031633146128825760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60a354604080516337fddfc160e21b815290516001600160a01b039283169284169163dff77f04916004808301926020929190829003018186803b1580156128c957600080fd5b505afa1580156128dd573d6000803e3d6000fd5b505050506040513d60208110156128f357600080fd5b50516129305760405162461bcd60e51b8152600401808060200182810382526042815260200180614fd16042913960600191505060405180910390fd5b60a380546001600160a01b0319166001600160a01b03848116918217909255604080519284168352602083019190915280517feb5cc99f497dc2d7106563bb080e06c9b09e3d81a38623ac4d0839575658d1fa9281900390910190a15050565b60a3546001600160a01b031681565b600260015414156129e5576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556129f2612c2b565b6129fa612e84565b612a02611987565b14612a3e5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6111ab838383613cbd565b60a4546001600160a01b031681565b6034546001600160a01b03163314612aa15760405162461bcd60e51b81526004018080602001828103825260258152602001806150a26025913960400191505060405180910390fd5b60338054603480546001600160a01b038082166001600160a01b031980861682179687905590921690925560405192821693909291169083907f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b236490600090a36034546040516001600160a01b03918216918316907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b6001600160a01b038316612b845760405162461bcd60e51b81526004018080602001828103825260248152602001806150136024913960400191505060405180910390fd5b6001600160a01b038216612bc95760405162461bcd60e51b8152600401808060200182810382526022815260200180614c726022913960400191505060405180910390fd5b6001600160a01b03808416600081815260686020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b612c33611987565b612c3b612e84565b14611fe857612c48614a22565b612c50613507565b604080830182905260a7546060840181905260a8546080850181905260a35483516315f2405360e01b815260048101959095526024850192909252604484015290516001600160a01b03909116916315f24053916064808301926020929190829003018186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d6020811015612ced57600080fd5b505180825266038d7ea4c680001015612d375760405162461bcd60e51b81526004018080602001828103825260298152602001806150796029913960400191505060405180910390fd5b612d3f612e84565b6020820152612d5a612d4f611987565b60208301519061330d565b60c082018190528151612d6c91613c1b565b60e082018190526060820151612d82919061310c565b61010082018190526060820151612d9991906134ad565b6101208201526080810151610100820151609f54612dc29291612dbc919061310c565b906134ad565b61014082015260a55460a0820181905260e0820151612de69190612dbc908261310c565b6101608201526020810151612dfa90613a7d565b61016081015160a581905561012082015160a781905561014083015160a8819055602080850151610100860151604080880151815193845293830191909152818101959095526060810191909152608081019290925260a082015290517f59693255bedc2974b761b077cd2fdb47b3bde759f64b247f599c6941525655e19181900360c00190a150565b4290565b60a45460408051631637eefd60e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000939290921691631637eefd91608480820192869290919082900301818387803b158015612eee57600080fd5b505af1158015612f02573d6000803e3d6000fd5b505050506000612f118461306d565b90506000612f2d86838611612f265785612f28565b835b6140f5565b6001600160a01b038616600090815260a960205260409020909150612f52838361330d565b815560a554600182015560a7548211612f775760a754612f72908361330d565b612f7a565b60005b60a75560a4546040805163783ca10560e11b81523060048201526001600160a01b038a811660248301528981166044830152606482018690529151919092169163f079420a91608480830192600092919082900301818387803b158015612fe057600080fd5b505af1158015612ff4573d6000803e3d6000fd5b50508254600184015460a754604080516001600160a01b03808f1682528d1660208201528082018990526060810194909452608084019290925260a0830152517f6fadbf7329d21f278e724fa0d4511001a158f2a97ee35c5bc4cf8b64417399ef93509081900360c0019150a1509150505b9392505050565b6001600160a01b038116600090815260a9602052604081208054158061309557506001810154155b156130a45760009150506113a3565b600181015460a554825461306692916130bd9190613c1b565b9061420f565b6000606954600014156130df5750670de0b6b3a7640000610f9f565b6131056069546130ff60a8546130f960a754612dbc613507565b9061330d565b90613c74565b9050610f9f565b6000613066670de0b6b3a76400006131248585613c1b565b9061422a565b600082116131695760405162461bcd60e51b81526004018080602001828103825260428152602001806150376042913960600191505060405180910390fd5b60a4546040805163af505ad960e01b81523060048201526001600160a01b038681166024830152604482018690529151919092169163af505ad991606480830192600092919082900301818387803b1580156131c457600080fd5b505af11580156131d8573d6000803e3d6000fd5b505050506131e6838361426c565b6127106069541015806131f95750606954155b6132345760405162461bcd60e51b8152600401808060200182810382526027815260200180614f856027913960400191505060405180910390fd5b61323e33826139cd565b60a4546040805163a2ddeb8560e01b81523060048201526001600160a01b03868116602483015260448201869052606482018590529151919092169163a2ddeb8591608480830192600092919082900301818387803b1580156132a057600080fd5b505af11580156132b4573d6000803e3d6000fd5b5050604080516001600160a01b03871681523360208201528082018690526060810185905290517f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc9350908190036080019150a1505050565b600061306683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506142bb565b6000826001600160a01b0316846001600160a01b031614156133a25760405162461bcd60e51b8152600401808060200182810382526026815260200180614e646026913960400191505060405180910390fd5b60a4546040805163395a182560e11b81523060048201526001600160a01b038781166024830152868116604483015260648201869052915191909216916372b4304a91608480830192600092919082900301818387803b15801561340557600080fd5b505af1158015613419573d6000803e3d6000fd5b50505050613428848484614352565b60a4546040805163719d7a4560e11b81523060048201526001600160a01b0387811660248301528681166044830152606482018690529151919092169163e33af48a91608480830192600092919082900301818387803b15801561348b57600080fd5b505af115801561349f573d6000803e3d6000fd5b506001979650505050505050565b600082820183811015613066576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60a254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611b8757600080fd5b60a454604080516386b8418760e01b81523060048201526001600160a01b03858116602483015260448201859052915191909216916386b8418791606480830192600092919082900301818387803b1580156135ad57600080fd5b505af11580156135c1573d6000803e3d6000fd5b505050506135cd614a83565b6135d56130c3565b81526135e133836140f5565b6040820181905281516135f49190613c74565b6020820181905261360690849061448a565b61271060695410156136495760405162461bcd60e51b81526004018080602001828103825260258152602001806150f16025913960400191505060405180910390fd5b60a45460208201516040805163de65f41b60e01b81523060048201526001600160a01b0387811660248301526044820187905260648201939093529051919092169163de65f41b91608480830192600092919082900301818387803b1580156136b157600080fd5b505af11580156136c5573d6000803e3d6000fd5b505050602080830151604080513381526001600160a01b038816938101939093528281018690526060830191909152517f2f00e3cdd69a77be7ed215ec7b2a36784dd158f921fca79ac29deffa353fe6ee92509081900360800190a1505050565b60a480546001600160a01b038085166001600160a01b03199283161790925560a3805492841692909116919091179055613766613761612e84565b613a7d565b670de0b6b3a764000060a5556602d79883d2000060a0556703782dace9d9000060a155613791614570565b61379c8585856145b2565b6137a46145f2565b7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8580519060200120604051806040016040528060018152602001603160f81b815250805190602001206137f6613c17565b6040805160208082019690965280820194909452606084019290925260808301523060a0808401919091528151808403909101815260c09092019052805191012060aa555050505050565b60006130668261312461385582600161330d565b612dbc87670de0b6b3a7640000613c1b565b826001600160a01b0316826001600160a01b031614156138b85760405162461bcd60e51b8152600401808060200182810382526026815260200180614d606026913960400191505060405180910390fd5b60a48054604080516332db6c6760e21b81523060048201526001600160a01b03888116602483015287811660448301528681166064830152608482018690529151919092169263cb6db19c9280820192600092909182900301818387803b15801561392257600080fd5b505af1158015613936573d6000803e3d6000fd5b50505050613945828483614352565b60a48054604080516306bfb3d160e11b81523060048201526001600160a01b038881166024830152878116604483015286811660648301526084820186905291519190921692630d7f67a29280820192600092909182900301818387803b1580156139af57600080fd5b505af11580156139c3573d6000803e3d6000fd5b5050505050505050565b60a45460a2546040805163cb299dc760e01b81523060048201526001600160a01b0392831660248201526044810185905285831660648201529051600093929092169163cb299dc79160848082019260209290919082900301818787803b158015613a3757600080fd5b505af1158015613a4b573d6000803e3d6000fd5b505050506040513d6020811015613a6157600080fd5b505160a25490915061154a906001600160a01b031682846145f8565b60ac55565b60a454604080516315caa9e760e11b81523060048201526001600160a01b0385811660248301526044820185905291519190921691632b9553ce91606480830192600092919082900301818387803b158015613add57600080fd5b505af1158015613af1573d6000803e3d6000fd5b505050506001600160a01b038216600090815260a960205260409020613b1a82612dbc8561306d565b815560a554600182015560a754613b3190836134ad565b60a755613b3e83836139cd565b60a45460408051636524c56b60e11b81523060048201526001600160a01b038681166024830152604482018690529151919092169163ca498ad691606480830192600092919082900301818387803b158015613b9957600080fd5b505af1158015613bad573d6000803e3d6000fd5b50508254600184015460a754604080516001600160a01b038a168152602081018990528082019490945260608401929092526080830152517f2dd79f4fccfd18c360ce7f9132f3621bf05eee18f995224badb32d17f172df7393509081900360a0019150a1505050565b4690565b600082613c2a57506000610e66565b82820282848281613c3757fe5b04146130665760405162461bcd60e51b8152600401808060200182810382526021815260200180614e436021913960400191505060405180910390fd5b60006130668261312485670de0b6b3a7640000613c1b565b6000613cb56ec097ce7bc90715b34b9f100000000061312484613caf8888613c1b565b90613c1b565b949350505050565b336001600160a01b0384161415613d055760405162461bcd60e51b8152600401808060200182810382526039815260200180614d276039913960400191505060405180910390fd5b81613d415760405162461bcd60e51b8152600401808060200182810382526044815260200180614c946044913960600191505060405180910390fd5b6000819050806001600160a01b031663d14827916040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613d8157600080fd5b505af1158015613d95573d6000803e3d6000fd5b505050506040513d6020811015613dab57600080fd5b505060a480546040805163030b416f60e11b81523060048201526001600160a01b0386811660248301523360448301528881166064830152608482018890529151919092169263061682de9280820192600092909182900301818387803b158015613e1557600080fd5b505af1158015613e29573d6000803e3d6000fd5b50505050613e35612e84565b816001600160a01b031663793dd9616040518163ffffffff1660e01b815260040160206040518083038186803b158015613e6e57600080fd5b505afa158015613e82573d6000803e3d6000fd5b505050506040513d6020811015613e9857600080fd5b505114613ed65760405162461bcd60e51b815260040180806020018281038252604f815260200180614cd8604f913960600191505060405180910390fd5b6000613ee3338686612e88565b60a4546040805163191f14f760e11b81523060048201526001600160a01b0387811660248301526044820185905289811660648301529151939450600093919092169163323e29ee916084808301926020929190829003018186803b158015613f4b57600080fd5b505afa158015613f5f573d6000803e3d6000fd5b505050506040513d6020811015613f7557600080fd5b505190506001600160a01b038416301415613f9b57613f9630338884613867565b61400c565b6040805163b2a02ff160e01b81523360048201526001600160a01b0388811660248301526044820184905291519185169163b2a02ff19160648082019260009290919082900301818387803b158015613ff357600080fd5b505af1158015614007573d6000803e3d6000fd5b505050505b60a4805460408051632fbde00360e11b81523060048201526001600160a01b0388811660248301523360448301528a811660648301526084820187905293810185905290519290911691635f7bc0069160c48082019260009290919082900301818387803b15801561407d57600080fd5b505af1158015614091573d6000803e3d6000fd5b5050604080513381526001600160a01b03808b166020830152818301879052881660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb5293509081900360a0019150a1505050505050565b60a254604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561414557600080fd5b505afa158015614159573d6000803e3d6000fd5b505050506040513d602081101561416f57600080fd5b505160a25490915061418c906001600160a01b031685308661464a565b60a254604080516370a0823160e01b81523060048201529051613cb59284926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156141dd57600080fd5b505afa1580156141f1573d6000803e3d6000fd5b505050506040513d602081101561420757600080fd5b50519061330d565b60006130668261312461422382600161330d565b86906134ad565b600061306683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506146a4565b336001600160a01b038316146142b1576001600160a01b0382166000908152606860209081526040808320338085529252909120546142b19184916110e5908561330d565b6114268282614709565b6000818484111561434a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561430f5781810151838201526020016142f7565b50505050905090810190601f16801561433c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166143975760405162461bcd60e51b8152600401808060200182810382526025815260200180614fac6025913960400191505060405180910390fd5b6001600160a01b0382166143dc5760405162461bcd60e51b8152600401808060200182810382526023815260200180614b386023913960400191505060405180910390fd5b6001600160a01b0383166000908152606760205260409020546143ff908261330d565b6001600160a01b03808516600090815260676020526040808220939093559084168152205461442e90826134ad565b6001600160a01b0380841660008181526067602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166144e5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6069546144f290826134ad565b6069556001600160a01b03821660009081526067602052604090205461451890826134ad565b6001600160a01b03831660008181526067602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b603380546001600160a01b031916339081179091556040516000907f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b2364908290a3565b82516145c590606a906020860190614aa4565b5081516145d990606b906020850190614aa4565b50606c805460ff191660ff929092169190911790555050565b60018055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261154a9084906147df565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261267a9085906147df565b600081836146f35760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561430f5781810151838201526020016142f7565b5060008385816146ff57fe5b0495945050505050565b6001600160a01b03821661474e5760405162461bcd60e51b8152600401808060200182810382526021815260200180614f646021913960400191505060405180910390fd5b6001600160a01b038216600090815260676020526040902054614771908261330d565b6001600160a01b038316600090815260676020526040902055606954614797908261330d565b6069556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6060614834826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166148909092919063ffffffff16565b80519091501561154a5780806020019051602081101561485357600080fd5b505161154a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806150c7602a913960400191505060405180910390fd5b6060613cb58484600085856148a4856149b6565b6148f5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106149345780518252601f199092019160209182019101614915565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614996576040519150601f19603f3d011682016040523d82523d6000602084013e61499b565b606091505b50915091506149ab8282866149bc565b979650505050505050565b3b151590565b606083156149cb575081613066565b8251156149db5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561430f5781810151838201526020016142f7565b6040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b60405180606001604052806000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ae557805160ff1916838001178555614b12565b82800160010185558215614b12579182015b82811115614b12578251825591602001919060010190614af7565b50614b1e929150614b22565b5090565b5b80821115614b1e5760008155600101614b2356fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373696e697469616c697a653a20756e6465726c79696e6720616464726573732073686f756c64206e6f74206265207a65726f2061646472657373215f736574436f6e74726f6c6c65723a2054686973206973206e6f742074686520636f6e74726f6c6c657220636f6e747261637421696e697469616c697a653a20696e746572657374206d6f64656c20616464726573732073686f756c64206e6f74206265207a65726f2061646472657373215265656e7472616e637947756172643a207265656e7472616e742063616c6c005f73657450656e64696e674f776e65723a204e6577206f77656e722063616e206e6f74206265207a65726f206164647265737320616e64206f776e657220686173206265656e207365742145524332303a20617070726f766520746f20746865207a65726f20616464726573735f6c6971756964617465426f72726f77496e7465726e616c3a204c697175696461746520616d6f756e742073686f756c642062652067726561746572207468616e2030215f6c6971756964617465426f72726f77496e7465726e616c3a204661696c656420746f2075706461746520626c6f636b2074696d657374616d7020696e20636f6c6c61746572616c206173736574215f6c6971756964617465426f72726f77496e7465726e616c3a204c697175696461746f722063616e206e6f7420626520626f72726f776572217365697a653a204c697175696461746f722063616e206e6f7420626520626f72726f776572215f7365744e657752657365727665526174696f3a204e6577207265736572766520726174696f20746f6f206c61726765215f7365744e657750726f746f636f6c466565526174696f3a204e65772070726f746f636f6c20726174696f20746f6f206c6172676521736574746c65496e7465726573743a204661696c20746f2061636372756520696e74657265737421496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775f7472616e73666572546f6b656e733a20446f206e6f742073656c662d7472616e73666572216f6e6c794f776e65723a2063616c6c6572206973206e6f7420746865206f776e65727365744e6577466c6173686c6f616e466565526174696f3a204e657720666c6173686c6f616e20726174696f20746f6f206c61726765215f776974686472617752657365727665733a20496e76616c696420776974686472617720616d6f756e7420616e6420646f206e6f74206861766520656e6f756768206361736821696e697469616c697a653a20636f6e74726f6c6c657220616464726573732073686f756c64206e6f74206265207a65726f20616464726573732145524332303a206275726e2066726f6d20746865207a65726f20616464726573735f72656465656d496e7465726e616c3a20746f74616c537570706c7920746f6f20736d616c6c2145524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735f736574496e746572657374526174654d6f64656c3a2054686973206973206e6f74207468652072617465207365636f6e64206d6f64656c20636f6e74726163742145524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735f72656465656d496e7465726e616c3a2052656465656d2069546f6b656e20616d6f756e742073686f756c642062652067726561746572207468616e207a65726f215f757064617465496e7465726573743a20426f72726f77207261746520697320746f6f2068696768215f6163636570744f776e65723a204f6e6c7920666f722070656e64696e67206f776e6572215361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645f6d696e74496e7465726e616c3a20746f74616c537570706c7920746f6f20736d616c6c21a2646970667358221220d759efc6ba14864532c4c02bdbee32b00f938bf3534c6d96c56ba24c0ee5449664736f6c634300060c0033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106104285760003560e01c80637ecebe001161022b578063c5ebeaec11610130578063dd62ed3e116100b8578063f2b3abbd11610087578063f2b3abbd14610d53578063f3fdb15a14610d79578063f5e3c46214610d81578063f77c479114610db7578063fc4d33f914610dbf57610428565b8063dd62ed3e14610cf8578063e30c397814610d26578063e71c3fe114610d2e578063e95df6e114610d4b57610428565b8063d1482791116100ff578063d148279114610bfb578063d1a1beb414610c03578063d505accf14610c37578063d8c026e614610c88578063db256d5a14610cc457610428565b8063c5ebeaec14610bb1578063c9f30e5314610bce578063ca302d0d14610beb578063cfa9920114610bf357610428565b806396294178116101b3578063b2a02ff111610182578063b2a02ff114610b31578063b3efd5b414610b67578063ba49f54a14610b84578063bd6d894d14610b8c578063c0bd21fd14610b9457610428565b80639629417814610aa5578063a457c2d714610ad1578063a9059cbb14610afd578063aa5af0fd14610b2957610428565b80638da5cb5b116101fa5780638da5cb5b14610a5f5780638f840ddd14610a6757806392e8dbd714610a6f57806395d89b4114610a7757806395dd919314610a7f57610428565b80637ecebe00146109c957806383de424e146109ef5780638b18b5bc14610a155780638cd0130714610a3a57610428565b80633b1d21a2116103315780636c540baf116102b957806370a082311161028857806370a082311461098357806373acee98146109a957806374427937146109b1578063793dd961146109b95780637a27d9f6146109c157610428565b80636c540baf146107de5780636cf1dbed146107e65780636e96dfd7146109395780636f307dc31461095f57610428565b806347bd37181161030057806347bd3718146107585780634cdfda65146107605780634dd0ef7c14610794578063508fe21f146107b9578063621fd507146107d657610428565b80633b1d21a2146106cb5780633f59c921146106d357806340c10f19146106f85780634458a14c1461072457610428565b806323b872dd116103b4578063313ce56711610383578063313ce567146106145780633644e5151461063257806337d336181461063a57806339509351146106795780633af9e669146106a557610428565b806323b872dd1461058d5780632608f818146105c3578063269aafee146105ef57806330adf81f1461060c57610428565b806317bfdfbc116103fb57806317bfdfbc1461052357806318160ddd14610549578063182df0f514610551578063197523f8146105595780631e9a69501461056157610428565b806306fdde031461042d578063095ea7b3146104aa5780630c7d5cd8146104ea5780630e75270214610504575b600080fd5b610435610dc7565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561046f578181015183820152602001610457565b50505050905090810190601f16801561049c5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b6104d6600480360360408110156104c057600080fd5b506001600160a01b038135169060200135610e55565b604080519115158252519081900360200190f35b6104f2610e6c565b60408051918252519081900360200190f35b6105216004803603602081101561051a57600080fd5b5035610e72565b005b6104f26004803603602081101561053957600080fd5b50356001600160a01b0316610f24565b6104f2610f8c565b6104f2610f92565b6104f2610fa2565b6105216004803603604081101561057757600080fd5b506001600160a01b038135169060200135610fa8565b6104d6600480360360608110156105a357600080fd5b506001600160a01b03813581169160208101359091169060400135611063565b610521600480360360408110156105d957600080fd5b506001600160a01b038135169060200135611101565b6105216004803603602081101561060557600080fd5b50356111b4565b6104f26112df565b61061c611303565b6040805160ff9092168252519081900360200190f35b6104f261130c565b6106606004803603602081101561065057600080fd5b50356001600160a01b0316611312565b6040805192835260208301919091528051918290030190f35b6104d66004803603604081101561068f57600080fd5b506001600160a01b038135169060200135611335565b6104f2600480360360208110156106bb57600080fd5b50356001600160a01b031661136b565b6104f26113a8565b610521600480360360408110156106e957600080fd5b508035906020013515156113b2565b6105216004803603604081101561070e57600080fd5b506001600160a01b03813516906020013561142a565b6105216004803603606081101561073a57600080fd5b506001600160a01b03813516906020810135906040013515156114d3565b6104f261154f565b6105216004803603606081101561077657600080fd5b506001600160a01b0381351690602081013590604001351515611555565b610521600480360360408110156107aa57600080fd5b5080359060200135151561155f565b610521600480360360208110156107cf57600080fd5b5035611568565b6104d6611693565b6104f2611698565b610521600480360360a08110156107fc57600080fd5b6001600160a01b03823516919081019060408101602082013564010000000081111561082757600080fd5b82018360208201111561083957600080fd5b8035906020019184600183028401116401000000008311171561085b57600080fd5b91908080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525092959493602081019350359150506401000000008111156108ae57600080fd5b8201836020820111156108c057600080fd5b803590602001918460018302840111640100000000831117156108e257600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929550506001600160a01b03833581169450602090930135909216915061169e9050565b6105216004803603602081101561094f57600080fd5b50356001600160a01b0316611854565b610967611950565b604080516001600160a01b039092168252519081900360200190f35b6104f26004803603602081101561099957600080fd5b50356001600160a01b031661195f565b6104f2611971565b6104d6611982565b6104f2611987565b6104f261198d565b6104f2600480360360208110156109df57600080fd5b50356001600160a01b0316611993565b61052160048036036020811015610a0557600080fd5b50356001600160a01b03166119a5565b61052160048036036040811015610a2b57600080fd5b50803590602001351515611afc565b61052160048036036040811015610a5057600080fd5b50803590602001351515611b05565b610967611b0e565b6104f2611b1d565b6104f2611b23565b610435611bb8565b6104f260048036036020811015610a9557600080fd5b50356001600160a01b0316611c13565b61052160048036036040811015610abb57600080fd5b506001600160a01b038135169060200135611c1e565b6104d660048036036040811015610ae757600080fd5b506001600160a01b038135169060200135611cd9565b6104d660048036036040811015610b1357600080fd5b506001600160a01b038135169060200135611d0f565b6104f2611d72565b61052160048036036060811015610b4757600080fd5b506001600160a01b03813581169160208101359091169060400135611d78565b61052160048036036020811015610b7d57600080fd5b5035611dcf565b610521611f41565b6104f2611fea565b61052160048036036020811015610baa57600080fd5b5035611ffc565b61052160048036036020811015610bc757600080fd5b5035612116565b61052160048036036020811015610be457600080fd5b50356121c6565b6104f26122f1565b6104f26122f7565b6104d66122fd565b61052160048036036060811015610c1957600080fd5b506001600160a01b038135169060208101359060400135151561230d565b610521600480360360e0811015610c4d57600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060ff6080820135169060a08101359060c00135612317565b61052160048036036080811015610c9e57600080fd5b506001600160a01b0381358116916020810135916040820135169060600135151561255a565b61052160048036036060811015610cda57600080fd5b506001600160a01b0381351690602081013590604001351515612680565b6104f260048036036040811015610d0e57600080fd5b506001600160a01b038135811691602001351661268a565b6109676126a7565b61052160048036036020811015610d4457600080fd5b50356126b6565b6104f26127b7565b61052160048036036020811015610d6957600080fd5b50356001600160a01b0316612839565b610967612990565b61052160048036036060811015610d9757600080fd5b506001600160a01b0381358116916020810135916040909101351661299f565b610967612a49565b610521612a58565b606a805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b820191906000526020600020905b815481529060010190602001808311610e3057829003601f168201915b505050505081565b6000610e62338484612b3f565b5060015b92915050565b609f5481565b60026001541415610eb8576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610ec5612c2b565b610ecd612e84565b610ed5611987565b14610f115760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c333383612e88565b505060018055565b600060026001541415610f6c576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610f79612c2b565b610f828261306d565b6001805592915050565b60695481565b6000610f9c6130c3565b90505b90565b60a05481565b60026001541415610fee576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155610ffb612c2b565b611003612e84565b61100b611987565b146110475760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c828261105e6110576130c3565b859061310c565b61312a565b6000600260015414156110ab576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556001600160a01b0384166000908152606860209081526040808320338085529252909120546110ea9186916110e5908661330d565b612b3f565b6110f584848461334f565b60018055949350505050565b60026001541415611147576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611154612c2b565b61115c612e84565b611164611987565b146111a05760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6111ab338383612e88565b50506001805550565b6033546001600160a01b031633146111fd5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b611205612c2b565b61120d612e84565b611215611987565b146112515760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a76400008111156112985760405162461bcd60e51b8152600401808060200182810382526036815260200180614db76036913960400191505060405180910390fd5b60a1805490829055604080518281526020810184905281517f1f6917c8223f142d2549d7531b9897b963f67c4cd1d266e9771080a608ebe188929181900390910190a15050565b7f576144ed657c8304561e56ca632e17751956250114636e8c01f64a7f2c6d98cf81565b606c5460ff1681565b60aa5481565b6001600160a01b0316600090815260a96020526040902080546001909101549091565b3360008181526068602090815260408083206001600160a01b03871684529091528120549091610e629185906110e590866134ad565b6000611375612c2b565b6001600160a01b0382166000908152606760205260409020546113a09061139a6130c3565b9061310c565b90505b919050565b6000610f9c613507565b6113bb82611ffc565b80156114265760a45460408051633996b8cb60e11b815233600482015290516001600160a01b039092169163732d71969160248082019260009290919082900301818387803b15801561140d57600080fd5b505af1158015611421573d6000803e3d6000fd5b505050505b5050565b60026001541415611470576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b600260015561147d612c2b565b611485612e84565b61148d611987565b146114c95760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c8282613552565b6114dd8383610fa8565b801561154a5760a45460408051633996b8cb60e11b81526001600160a01b0386811660048301529151919092169163732d719691602480830192600092919082900301818387803b15801561153157600080fd5b505af1158015611545573d6000803e3d6000fd5b505050505b505050565b60a75481565b6114dd8383611c1e565b6113bb82610e72565b6033546001600160a01b031633146115b15760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b6115b9612c2b565b6115c1612e84565b6115c9611987565b146116055760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a764000081111561164c5760405162461bcd60e51b8152600401808060200182810382526037815260200180614eac6037913960400191505060405180910390fd5b60a0805490829055604080518281526020810184905281517fcc8d29bd7a6ccb34210e5349873398367afa955e6b745621430e8152677d7c75929181900390910190a15050565b600190565b60a65481565b60005460ff16156116e05760405162461bcd60e51b815260040180806020018281038252602e815260200180614e15602e913960400191505060405180910390fd5b6001600160a01b0385166117255760405162461bcd60e51b815260040180806020018281038252603a815260200180614b5b603a913960400191505060405180910390fd5b6001600160a01b03821661176a5760405162461bcd60e51b815260040180806020018281038252603a815260200180614f2a603a913960400191505060405180910390fd5b6001600160a01b0381166117af5760405162461bcd60e51b815260040180806020018281038252603e815260200180614bc9603e913960400191505060405180910390fd5b6118208484876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156117ed57600080fd5b505afa158015611801573d6000803e3d6000fd5b505050506040513d602081101561181757600080fd5b50518585613726565b505060a280546001600160a01b0319166001600160a01b03949094169390931790925550506000805460ff19166001179055565b6033546001600160a01b0316331461189d5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b6001600160a01b038116158015906118c357506034546001600160a01b03828116911614155b6118fe5760405162461bcd60e51b815260040180806020018281038252604b815260200180614c27604b913960600191505060405180910390fd5b603480546001600160a01b038381166001600160a01b0319831681179093556040519116919082907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b60a2546001600160a01b031681565b60676020526000908152604090205481565b600061197b612c2b565b5060a75490565b600181565b60ac5490565b60a15481565b60ab6020526000908152604090205481565b6033546001600160a01b031633146119ee5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60a45460408051634e1647fb60e01b815290516001600160a01b0392831692841691634e1647fb916004808301926020929190829003018186803b158015611a3557600080fd5b505afa158015611a49573d6000803e3d6000fd5b505050506040513d6020811015611a5f57600080fd5b5051611a9c5760405162461bcd60e51b8152600401808060200182810382526034815260200180614b956034913960400191505060405180910390fd5b60a480546001600160a01b0319166001600160a01b03848116918217909255604080519284168352602083019190915280517ff9b6a28700579d5c8fab50f0ac2dcaa52109b85c369c4f511fcc873330ab6cbb9281900390910190a15050565b6113bb826126b6565b6113bb82612116565b6033546001600160a01b031681565b60a85481565b60a3546000906001600160a01b03166315f24053611b3f613507565b60a75460a8546040518463ffffffff1660e01b815260040180848152602001838152602001828152602001935050505060206040518083038186803b158015611b8757600080fd5b505afa158015611b9b573d6000803e3d6000fd5b505050506040513d6020811015611bb157600080fd5b5051905090565b606b805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610e4d5780601f10610e2257610100808354040283529160200191610e4d565b60006113a08261306d565b60026001541415611c64576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611c71612c2b565b611c79612e84565b611c81611987565b14611cbd5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b610f1c82611cd3611ccc6130c3565b8490613841565b8361312a565b3360008181526068602090815260408083206001600160a01b03871684529091528120549091610e629185906110e5908661330d565b600060026001541415611d57576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155611d6733848461334f565b600180559392505050565b60a55481565b60026001541415611dbe576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556111ab33848484613867565b6033546001600160a01b03163314611e185760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b611e20612c2b565b611e28612e84565b611e30611987565b14611e6c5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b60a8548111158015611e855750611e81613507565b8111155b611ec05760405162461bcd60e51b8152600401808060200182810382526047815260200180614ee36047913960600191505060405180910390fd5b60a854611ecd818361330d565b60a855603354611ee6906001600160a01b0316836139cd565b60335460a854604080516001600160a01b039093168352602083018590528281019190915260608201839052517f2e8843ddc3123732d720f1cb17a6e81d71d5bb90a346f13498b87c5639d474409181900360800190a15050565b6033546001600160a01b03163314611f8a5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60ac5415611fdf576040805162461bcd60e51b815260206004820152601860248201527f5f757067726164653a2048617665207570677261646564210000000000000000604482015290519081900360640190fd5b611fe842613a7d565b565b6000611ff4612c2b565b610f9c6130c3565b60026001541415612042576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b600260015561204f612c2b565b612057612e84565b61205f611987565b1461209b5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6120a53382613552565b60a45460408051636c7ad2b960e11b815230600482015233602482015290516001600160a01b039092169163d8f5a5729160448082019260009290919082900301818387803b1580156120f757600080fd5b505af115801561210b573d6000803e3d6000fd5b505060018055505050565b6002600154141561215c576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155612169612c2b565b612171612e84565b612179611987565b146121b55760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6121bf3382613a82565b5060018055565b6033546001600160a01b0316331461220f5760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b612217612c2b565b61221f612e84565b612227611987565b146122635760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b670de0b6b3a76400008111156122aa5760405162461bcd60e51b8152600401808060200182810382526031815260200180614d866031913960400191505060405180910390fd5b609f805490829055604080518281526020810184905281517f619970c7b73e9bc2b93e0fc379d50dbf7eced564f397fba395b2e7efc0b4894d929181900390910190a15050565b61271081565b60ac5481565b6000612307612c2b565b50600190565b6114dd838361142a565b4284101561235f576040805162461bcd60e51b815260206004820152601060248201526f7065726d69743a20455850495245442160801b604482015290519081900360640190fd5b6001600160a01b038716600090815260ab602052604081205460aa549091907f576144ed657c8304561e56ca632e17751956250114636e8c01f64a7f2c6d98cf8a8a6123a9613c17565b604080516020808201969096526001600160a01b0394851681830152929093166060830152608082015260a081018b905260c0810186905260e08082018b9052825180830390910181526101008201835280519084012061190160f01b61012083015261012282019490945261014280820194909452815180820390940184526101628101808352845194840194909420600094859052610182820180845281905260ff8a166101a28301526101c282018990526101e282018890529151919450600192610202808301939192601f198301929081900390910190855afa158015612498573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b038116158015906124ce5750896001600160a01b0316816001600160a01b0316145b61251f576040805162461bcd60e51b815260206004820152601a60248201527f7065726d69743a20494e56414c49445f5349474e415455524521000000000000604482015290519081900360640190fd5b61252a8360016134ad565b6001600160a01b038b16600090815260ab602052604090205561254e8a8a8a612b3f565b50505050505050505050565b61256584848461299f565b801561267a576040805160028082526060808301845292602083019080368337019050509050848160008151811061259957fe5b60200260200101906001600160a01b031690816001600160a01b03168152505033816001815181106125c757fe5b6001600160a01b0392831660209182029290920181019190915260a454604051630589c62760e31b8152600481018381528551602483015285519290941693632c4e313893869391928392604490910191858101910280838360005b8381101561263b578181015183820152602001612623565b5050505090500192505050600060405180830381600087803b15801561266057600080fd5b505af1158015612674573d6000803e3d6000fd5b50505050505b50505050565b6114dd8383611101565b606860209081526000928352604080842090915290825290205481565b6034546001600160a01b031681565b600260015414156126fc576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b6002600155612709612c2b565b612711612e84565b612719611987565b146127555760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b612765338261105e6110576130c3565b60a4546040805163aa0921bd60e01b815230600482015233602482015290516001600160a01b039092169163aa0921bd9160448082019260009290919082900301818387803b1580156120f757600080fd5b6000806127ce6127c56130c3565b60695490613c1b565b9050806127df576000915050610f9f565b60a7546000906127f790670de0b6b3a7640000613c1b565b9050612832612819609f54670de0b6b3a764000061330d90919063ffffffff16565b6128238385613c74565b61282b611b23565b9190613c8c565b9250505090565b6033546001600160a01b031633146128825760405162461bcd60e51b8152600401808060200182810382526022815260200180614e8a6022913960400191505060405180910390fd5b60a354604080516337fddfc160e21b815290516001600160a01b039283169284169163dff77f04916004808301926020929190829003018186803b1580156128c957600080fd5b505afa1580156128dd573d6000803e3d6000fd5b505050506040513d60208110156128f357600080fd5b50516129305760405162461bcd60e51b8152600401808060200182810382526042815260200180614fd16042913960600191505060405180910390fd5b60a380546001600160a01b0319166001600160a01b03848116918217909255604080519284168352602083019190915280517feb5cc99f497dc2d7106563bb080e06c9b09e3d81a38623ac4d0839575658d1fa9281900390910190a15050565b60a3546001600160a01b031681565b600260015414156129e5576040805162461bcd60e51b815260206004820152601f6024820152600080516020614c07833981519152604482015290519081900360640190fd5b60026001556129f2612c2b565b6129fa612e84565b612a02611987565b14612a3e5760405162461bcd60e51b8152600401808060200182810382526028815260200180614ded6028913960400191505060405180910390fd5b6111ab838383613cbd565b60a4546001600160a01b031681565b6034546001600160a01b03163314612aa15760405162461bcd60e51b81526004018080602001828103825260258152602001806150a26025913960400191505060405180910390fd5b60338054603480546001600160a01b038082166001600160a01b031980861682179687905590921690925560405192821693909291169083907f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b236490600090a36034546040516001600160a01b03918216918316907fb3d55174552271a4f1aaf36b72f50381e892171636b3fb5447fe00e995e7a37b90600090a35050565b6001600160a01b038316612b845760405162461bcd60e51b81526004018080602001828103825260248152602001806150136024913960400191505060405180910390fd5b6001600160a01b038216612bc95760405162461bcd60e51b8152600401808060200182810382526022815260200180614c726022913960400191505060405180910390fd5b6001600160a01b03808416600081815260686020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b612c33611987565b612c3b612e84565b14611fe857612c48614a22565b612c50613507565b604080830182905260a7546060840181905260a8546080850181905260a35483516315f2405360e01b815260048101959095526024850192909252604484015290516001600160a01b03909116916315f24053916064808301926020929190829003018186803b158015612cc357600080fd5b505afa158015612cd7573d6000803e3d6000fd5b505050506040513d6020811015612ced57600080fd5b505180825266038d7ea4c680001015612d375760405162461bcd60e51b81526004018080602001828103825260298152602001806150796029913960400191505060405180910390fd5b612d3f612e84565b6020820152612d5a612d4f611987565b60208301519061330d565b60c082018190528151612d6c91613c1b565b60e082018190526060820151612d82919061310c565b61010082018190526060820151612d9991906134ad565b6101208201526080810151610100820151609f54612dc29291612dbc919061310c565b906134ad565b61014082015260a55460a0820181905260e0820151612de69190612dbc908261310c565b6101608201526020810151612dfa90613a7d565b61016081015160a581905561012082015160a781905561014083015160a8819055602080850151610100860151604080880151815193845293830191909152818101959095526060810191909152608081019290925260a082015290517f59693255bedc2974b761b077cd2fdb47b3bde759f64b247f599c6941525655e19181900360c00190a150565b4290565b60a45460408051631637eefd60e01b81523060048201526001600160a01b03868116602483015285811660448301526064820185905291516000939290921691631637eefd91608480820192869290919082900301818387803b158015612eee57600080fd5b505af1158015612f02573d6000803e3d6000fd5b505050506000612f118461306d565b90506000612f2d86838611612f265785612f28565b835b6140f5565b6001600160a01b038616600090815260a960205260409020909150612f52838361330d565b815560a554600182015560a7548211612f775760a754612f72908361330d565b612f7a565b60005b60a75560a4546040805163783ca10560e11b81523060048201526001600160a01b038a811660248301528981166044830152606482018690529151919092169163f079420a91608480830192600092919082900301818387803b158015612fe057600080fd5b505af1158015612ff4573d6000803e3d6000fd5b50508254600184015460a754604080516001600160a01b03808f1682528d1660208201528082018990526060810194909452608084019290925260a0830152517f6fadbf7329d21f278e724fa0d4511001a158f2a97ee35c5bc4cf8b64417399ef93509081900360c0019150a1509150505b9392505050565b6001600160a01b038116600090815260a9602052604081208054158061309557506001810154155b156130a45760009150506113a3565b600181015460a554825461306692916130bd9190613c1b565b9061420f565b6000606954600014156130df5750670de0b6b3a7640000610f9f565b6131056069546130ff60a8546130f960a754612dbc613507565b9061330d565b90613c74565b9050610f9f565b6000613066670de0b6b3a76400006131248585613c1b565b9061422a565b600082116131695760405162461bcd60e51b81526004018080602001828103825260428152602001806150376042913960600191505060405180910390fd5b60a4546040805163af505ad960e01b81523060048201526001600160a01b038681166024830152604482018690529151919092169163af505ad991606480830192600092919082900301818387803b1580156131c457600080fd5b505af11580156131d8573d6000803e3d6000fd5b505050506131e6838361426c565b6127106069541015806131f95750606954155b6132345760405162461bcd60e51b8152600401808060200182810382526027815260200180614f856027913960400191505060405180910390fd5b61323e33826139cd565b60a4546040805163a2ddeb8560e01b81523060048201526001600160a01b03868116602483015260448201869052606482018590529151919092169163a2ddeb8591608480830192600092919082900301818387803b1580156132a057600080fd5b505af11580156132b4573d6000803e3d6000fd5b5050604080516001600160a01b03871681523360208201528082018690526060810185905290517f3f693fff038bb8a046aa76d9516190ac7444f7d69cf952c4cbdc086fdef2d6fc9350908190036080019150a1505050565b600061306683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f7700008152506142bb565b6000826001600160a01b0316846001600160a01b031614156133a25760405162461bcd60e51b8152600401808060200182810382526026815260200180614e646026913960400191505060405180910390fd5b60a4546040805163395a182560e11b81523060048201526001600160a01b038781166024830152868116604483015260648201869052915191909216916372b4304a91608480830192600092919082900301818387803b15801561340557600080fd5b505af1158015613419573d6000803e3d6000fd5b50505050613428848484614352565b60a4546040805163719d7a4560e11b81523060048201526001600160a01b0387811660248301528681166044830152606482018690529151919092169163e33af48a91608480830192600092919082900301818387803b15801561348b57600080fd5b505af115801561349f573d6000803e3d6000fd5b506001979650505050505050565b600082820183811015613066576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b60a254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b158015611b8757600080fd5b60a454604080516386b8418760e01b81523060048201526001600160a01b03858116602483015260448201859052915191909216916386b8418791606480830192600092919082900301818387803b1580156135ad57600080fd5b505af11580156135c1573d6000803e3d6000fd5b505050506135cd614a83565b6135d56130c3565b81526135e133836140f5565b6040820181905281516135f49190613c74565b6020820181905261360690849061448a565b61271060695410156136495760405162461bcd60e51b81526004018080602001828103825260258152602001806150f16025913960400191505060405180910390fd5b60a45460208201516040805163de65f41b60e01b81523060048201526001600160a01b0387811660248301526044820187905260648201939093529051919092169163de65f41b91608480830192600092919082900301818387803b1580156136b157600080fd5b505af11580156136c5573d6000803e3d6000fd5b505050602080830151604080513381526001600160a01b038816938101939093528281018690526060830191909152517f2f00e3cdd69a77be7ed215ec7b2a36784dd158f921fca79ac29deffa353fe6ee92509081900360800190a1505050565b60a480546001600160a01b038085166001600160a01b03199283161790925560a3805492841692909116919091179055613766613761612e84565b613a7d565b670de0b6b3a764000060a5556602d79883d2000060a0556703782dace9d9000060a155613791614570565b61379c8585856145b2565b6137a46145f2565b7f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f8580519060200120604051806040016040528060018152602001603160f81b815250805190602001206137f6613c17565b6040805160208082019690965280820194909452606084019290925260808301523060a0808401919091528151808403909101815260c09092019052805191012060aa555050505050565b60006130668261312461385582600161330d565b612dbc87670de0b6b3a7640000613c1b565b826001600160a01b0316826001600160a01b031614156138b85760405162461bcd60e51b8152600401808060200182810382526026815260200180614d606026913960400191505060405180910390fd5b60a48054604080516332db6c6760e21b81523060048201526001600160a01b03888116602483015287811660448301528681166064830152608482018690529151919092169263cb6db19c9280820192600092909182900301818387803b15801561392257600080fd5b505af1158015613936573d6000803e3d6000fd5b50505050613945828483614352565b60a48054604080516306bfb3d160e11b81523060048201526001600160a01b038881166024830152878116604483015286811660648301526084820186905291519190921692630d7f67a29280820192600092909182900301818387803b1580156139af57600080fd5b505af11580156139c3573d6000803e3d6000fd5b5050505050505050565b60a45460a2546040805163cb299dc760e01b81523060048201526001600160a01b0392831660248201526044810185905285831660648201529051600093929092169163cb299dc79160848082019260209290919082900301818787803b158015613a3757600080fd5b505af1158015613a4b573d6000803e3d6000fd5b505050506040513d6020811015613a6157600080fd5b505160a25490915061154a906001600160a01b031682846145f8565b60ac55565b60a454604080516315caa9e760e11b81523060048201526001600160a01b0385811660248301526044820185905291519190921691632b9553ce91606480830192600092919082900301818387803b158015613add57600080fd5b505af1158015613af1573d6000803e3d6000fd5b505050506001600160a01b038216600090815260a960205260409020613b1a82612dbc8561306d565b815560a554600182015560a754613b3190836134ad565b60a755613b3e83836139cd565b60a45460408051636524c56b60e11b81523060048201526001600160a01b038681166024830152604482018690529151919092169163ca498ad691606480830192600092919082900301818387803b158015613b9957600080fd5b505af1158015613bad573d6000803e3d6000fd5b50508254600184015460a754604080516001600160a01b038a168152602081018990528082019490945260608401929092526080830152517f2dd79f4fccfd18c360ce7f9132f3621bf05eee18f995224badb32d17f172df7393509081900360a0019150a1505050565b4690565b600082613c2a57506000610e66565b82820282848281613c3757fe5b04146130665760405162461bcd60e51b8152600401808060200182810382526021815260200180614e436021913960400191505060405180910390fd5b60006130668261312485670de0b6b3a7640000613c1b565b6000613cb56ec097ce7bc90715b34b9f100000000061312484613caf8888613c1b565b90613c1b565b949350505050565b336001600160a01b0384161415613d055760405162461bcd60e51b8152600401808060200182810382526039815260200180614d276039913960400191505060405180910390fd5b81613d415760405162461bcd60e51b8152600401808060200182810382526044815260200180614c946044913960600191505060405180910390fd5b6000819050806001600160a01b031663d14827916040518163ffffffff1660e01b8152600401602060405180830381600087803b158015613d8157600080fd5b505af1158015613d95573d6000803e3d6000fd5b505050506040513d6020811015613dab57600080fd5b505060a480546040805163030b416f60e11b81523060048201526001600160a01b0386811660248301523360448301528881166064830152608482018890529151919092169263061682de9280820192600092909182900301818387803b158015613e1557600080fd5b505af1158015613e29573d6000803e3d6000fd5b50505050613e35612e84565b816001600160a01b031663793dd9616040518163ffffffff1660e01b815260040160206040518083038186803b158015613e6e57600080fd5b505afa158015613e82573d6000803e3d6000fd5b505050506040513d6020811015613e9857600080fd5b505114613ed65760405162461bcd60e51b815260040180806020018281038252604f815260200180614cd8604f913960600191505060405180910390fd5b6000613ee3338686612e88565b60a4546040805163191f14f760e11b81523060048201526001600160a01b0387811660248301526044820185905289811660648301529151939450600093919092169163323e29ee916084808301926020929190829003018186803b158015613f4b57600080fd5b505afa158015613f5f573d6000803e3d6000fd5b505050506040513d6020811015613f7557600080fd5b505190506001600160a01b038416301415613f9b57613f9630338884613867565b61400c565b6040805163b2a02ff160e01b81523360048201526001600160a01b0388811660248301526044820184905291519185169163b2a02ff19160648082019260009290919082900301818387803b158015613ff357600080fd5b505af1158015614007573d6000803e3d6000fd5b505050505b60a4805460408051632fbde00360e11b81523060048201526001600160a01b0388811660248301523360448301528a811660648301526084820187905293810185905290519290911691635f7bc0069160c48082019260009290919082900301818387803b15801561407d57600080fd5b505af1158015614091573d6000803e3d6000fd5b5050604080513381526001600160a01b03808b166020830152818301879052881660608201526080810185905290517f298637f684da70674f26509b10f07ec2fbc77a335ab1e7d6215a4b2484d8bb5293509081900360a0019150a1505050505050565b60a254604080516370a0823160e01b8152306004820152905160009283926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b15801561414557600080fd5b505afa158015614159573d6000803e3d6000fd5b505050506040513d602081101561416f57600080fd5b505160a25490915061418c906001600160a01b031685308661464a565b60a254604080516370a0823160e01b81523060048201529051613cb59284926001600160a01b03909116916370a0823191602480820192602092909190829003018186803b1580156141dd57600080fd5b505afa1580156141f1573d6000803e3d6000fd5b505050506040513d602081101561420757600080fd5b50519061330d565b60006130668261312461422382600161330d565b86906134ad565b600061306683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f0000000000008152506146a4565b336001600160a01b038316146142b1576001600160a01b0382166000908152606860209081526040808320338085529252909120546142b19184916110e5908561330d565b6114268282614709565b6000818484111561434a5760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561430f5781810151838201526020016142f7565b50505050905090810190601f16801561433c5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6001600160a01b0383166143975760405162461bcd60e51b8152600401808060200182810382526025815260200180614fac6025913960400191505060405180910390fd5b6001600160a01b0382166143dc5760405162461bcd60e51b8152600401808060200182810382526023815260200180614b386023913960400191505060405180910390fd5b6001600160a01b0383166000908152606760205260409020546143ff908261330d565b6001600160a01b03808516600090815260676020526040808220939093559084168152205461442e90826134ad565b6001600160a01b0380841660008181526067602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b6001600160a01b0382166144e5576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6069546144f290826134ad565b6069556001600160a01b03821660009081526067602052604090205461451890826134ad565b6001600160a01b03831660008181526067602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b603380546001600160a01b031916339081179091556040516000907f70aea8d848e8a90fb7661b227dc522eb6395c3dac71b63cb59edd5c9899b2364908290a3565b82516145c590606a906020860190614aa4565b5081516145d990606b906020850190614aa4565b50606c805460ff191660ff929092169190911790555050565b60018055565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b17905261154a9084906147df565b604080516001600160a01b0380861660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b17905261267a9085906147df565b600081836146f35760405162461bcd60e51b815260206004820181815283516024840152835190928392604490910191908501908083836000831561430f5781810151838201526020016142f7565b5060008385816146ff57fe5b0495945050505050565b6001600160a01b03821661474e5760405162461bcd60e51b8152600401808060200182810382526021815260200180614f646021913960400191505060405180910390fd5b6001600160a01b038216600090815260676020526040902054614771908261330d565b6001600160a01b038316600090815260676020526040902055606954614797908261330d565b6069556040805182815290516000916001600160a01b038516917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9181900360200190a35050565b6060614834826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166148909092919063ffffffff16565b80519091501561154a5780806020019051602081101561485357600080fd5b505161154a5760405162461bcd60e51b815260040180806020018281038252602a8152602001806150c7602a913960400191505060405180910390fd5b6060613cb58484600085856148a4856149b6565b6148f5576040805162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015290519081900360640190fd5b60006060866001600160a01b031685876040518082805190602001908083835b602083106149345780518252601f199092019160209182019101614915565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114614996576040519150601f19603f3d011682016040523d82523d6000602084013e61499b565b606091505b50915091506149ab8282866149bc565b979650505050505050565b3b151590565b606083156149cb575081613066565b8251156149db5782518084602001fd5b60405162461bcd60e51b815260206004820181815284516024840152845185939192839260440191908501908083836000831561430f5781810151838201526020016142f7565b6040518061018001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b60405180606001604052806000815260200160008152602001600081525090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10614ae557805160ff1916838001178555614b12565b82800160010185558215614b12579182015b82811115614b12578251825591602001919060010190614af7565b50614b1e929150614b22565b5090565b5b80821115614b1e5760008155600101614b2356fe45524332303a207472616e7366657220746f20746865207a65726f2061646472657373696e697469616c697a653a20756e6465726c79696e6720616464726573732073686f756c64206e6f74206265207a65726f2061646472657373215f736574436f6e74726f6c6c65723a2054686973206973206e6f742074686520636f6e74726f6c6c657220636f6e747261637421696e697469616c697a653a20696e746572657374206d6f64656c20616464726573732073686f756c64206e6f74206265207a65726f2061646472657373215265656e7472616e637947756172643a207265656e7472616e742063616c6c005f73657450656e64696e674f776e65723a204e6577206f77656e722063616e206e6f74206265207a65726f206164647265737320616e64206f776e657220686173206265656e207365742145524332303a20617070726f766520746f20746865207a65726f20616464726573735f6c6971756964617465426f72726f77496e7465726e616c3a204c697175696461746520616d6f756e742073686f756c642062652067726561746572207468616e2030215f6c6971756964617465426f72726f77496e7465726e616c3a204661696c656420746f2075706461746520626c6f636b2074696d657374616d7020696e20636f6c6c61746572616c206173736574215f6c6971756964617465426f72726f77496e7465726e616c3a204c697175696461746f722063616e206e6f7420626520626f72726f776572217365697a653a204c697175696461746f722063616e206e6f7420626520626f72726f776572215f7365744e657752657365727665526174696f3a204e6577207265736572766520726174696f20746f6f206c61726765215f7365744e657750726f746f636f6c466565526174696f3a204e65772070726f746f636f6c20726174696f20746f6f206c6172676521736574746c65496e7465726573743a204661696c20746f2061636372756520696e74657265737421496e697469616c697a61626c653a20636f6e747261637420697320616c726561647920696e697469616c697a6564536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775f7472616e73666572546f6b656e733a20446f206e6f742073656c662d7472616e73666572216f6e6c794f776e65723a2063616c6c6572206973206e6f7420746865206f776e65727365744e6577466c6173686c6f616e466565526174696f3a204e657720666c6173686c6f616e20726174696f20746f6f206c61726765215f776974686472617752657365727665733a20496e76616c696420776974686472617720616d6f756e7420616e6420646f206e6f74206861766520656e6f756768206361736821696e697469616c697a653a20636f6e74726f6c6c657220616464726573732073686f756c64206e6f74206265207a65726f20616464726573732145524332303a206275726e2066726f6d20746865207a65726f20616464726573735f72656465656d496e7465726e616c3a20746f74616c537570706c7920746f6f20736d616c6c2145524332303a207472616e736665722066726f6d20746865207a65726f20616464726573735f736574496e746572657374526174654d6f64656c3a2054686973206973206e6f74207468652072617465207365636f6e64206d6f64656c20636f6e74726163742145524332303a20617070726f76652066726f6d20746865207a65726f20616464726573735f72656465656d496e7465726e616c3a2052656465656d2069546f6b656e20616d6f756e742073686f756c642062652067726561746572207468616e207a65726f215f757064617465496e7465726573743a20426f72726f77207261746520697320746f6f2068696768215f6163636570744f776e65723a204f6e6c7920666f722070656e64696e67206f776e6572215361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645f6d696e74496e7465726e616c3a20746f74616c537570706c7920746f6f20736d616c6c21a2646970667358221220d759efc6ba14864532c4c02bdbee32b00f938bf3534c6d96c56ba24c0ee5449664736f6c634300060c0033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
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.