Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 10 from a total of 10 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Initialize | 14423806 | 1022 days ago | IN | 0 ETH | 0.01335741 | ||||
Initialize | 14300570 | 1041 days ago | IN | 0 ETH | 0.01828213 | ||||
Initialize | 14300353 | 1041 days ago | IN | 0 ETH | 0.0142201 | ||||
Add Underlying T... | 14300167 | 1041 days ago | IN | 0 ETH | 0.0046987 | ||||
Initialize | 13561868 | 1156 days ago | IN | 0 ETH | 0.03393748 | ||||
Initialize | 13561685 | 1156 days ago | IN | 0 ETH | 0.03393748 | ||||
Initialize | 13561596 | 1156 days ago | IN | 0 ETH | 0.03393748 | ||||
Initialize | 13561523 | 1156 days ago | IN | 0 ETH | 0.03393748 | ||||
Initialize | 13561398 | 1156 days ago | IN | 0 ETH | 0.03393748 | ||||
Transfer Ownersh... | 13277472 | 1201 days ago | IN | 0 ETH | 0.00127115 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
AaveLeverageModule
Compiler Version
v0.6.10+commit.00c0fcaf
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental "ABIEncoderV2"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { Ownable } from "@openzeppelin/contracts/access/Ownable.sol"; import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.sol"; import { AaveV2 } from "../integration/lib/AaveV2.sol"; import { IAToken } from "../../interfaces/external/aave-v2/IAToken.sol"; import { IController } from "../../interfaces/IController.sol"; import { IDebtIssuanceModule } from "../../interfaces/IDebtIssuanceModule.sol"; import { IExchangeAdapter } from "../../interfaces/IExchangeAdapter.sol"; import { ILendingPool } from "../../interfaces/external/aave-v2/ILendingPool.sol"; import { ILendingPoolAddressesProvider } from "../../interfaces/external/aave-v2/ILendingPoolAddressesProvider.sol"; import { IModuleIssuanceHook } from "../../interfaces/IModuleIssuanceHook.sol"; import { IProtocolDataProvider } from "../../interfaces/external/aave-v2/IProtocolDataProvider.sol"; import { ISetToken } from "../../interfaces/ISetToken.sol"; import { IVariableDebtToken } from "../../interfaces/external/aave-v2/IVariableDebtToken.sol"; import { ModuleBase } from "../lib/ModuleBase.sol"; /** * @title AaveLeverageModule * @author Set Protocol * @notice Smart contract that enables leverage trading using Aave as the lending protocol. * @dev Do not use this module in conjunction with other debt modules that allow Aave debt positions as it could lead to double counting of * debt when borrowed assets are the same. */ contract AaveLeverageModule is ModuleBase, ReentrancyGuard, Ownable, IModuleIssuanceHook { using AaveV2 for ISetToken; /* ============ Structs ============ */ struct EnabledAssets { address[] collateralAssets; // Array of enabled underlying collateral assets for a SetToken address[] borrowAssets; // Array of enabled underlying borrow assets for a SetToken } struct ActionInfo { ISetToken setToken; // SetToken instance ILendingPool lendingPool; // Lending pool instance, we grab this everytime since it's best practice not to store IExchangeAdapter exchangeAdapter; // Exchange adapter instance uint256 setTotalSupply; // Total supply of SetToken uint256 notionalSendQuantity; // Total notional quantity sent to exchange uint256 minNotionalReceiveQuantity; // Min total notional received from exchange IERC20 collateralAsset; // Address of collateral asset IERC20 borrowAsset; // Address of borrow asset uint256 preTradeReceiveTokenBalance; // Balance of pre-trade receive token balance } struct ReserveTokens { IAToken aToken; // Reserve's aToken instance IVariableDebtToken variableDebtToken; // Reserve's variable debt token instance } /* ============ Events ============ */ /** * @dev Emitted on lever() * @param _setToken Instance of the SetToken being levered * @param _borrowAsset Asset being borrowed for leverage * @param _collateralAsset Collateral asset being levered * @param _exchangeAdapter Exchange adapter used for trading * @param _totalBorrowAmount Total amount of `_borrowAsset` borrowed * @param _totalReceiveAmount Total amount of `_collateralAsset` received by selling `_borrowAsset` * @param _protocolFee Protocol fee charged */ event LeverageIncreased( ISetToken indexed _setToken, IERC20 indexed _borrowAsset, IERC20 indexed _collateralAsset, IExchangeAdapter _exchangeAdapter, uint256 _totalBorrowAmount, uint256 _totalReceiveAmount, uint256 _protocolFee ); /** * @dev Emitted on delever() and deleverToZeroBorrowBalance() * @param _setToken Instance of the SetToken being delevered * @param _collateralAsset Asset sold to decrease leverage * @param _repayAsset Asset being bought to repay to Aave * @param _exchangeAdapter Exchange adapter used for trading * @param _totalRedeemAmount Total amount of `_collateralAsset` being sold * @param _totalRepayAmount Total amount of `_repayAsset` being repaid * @param _protocolFee Protocol fee charged */ event LeverageDecreased( ISetToken indexed _setToken, IERC20 indexed _collateralAsset, IERC20 indexed _repayAsset, IExchangeAdapter _exchangeAdapter, uint256 _totalRedeemAmount, uint256 _totalRepayAmount, uint256 _protocolFee ); /** * @dev Emitted on addCollateralAssets() and removeCollateralAssets() * @param _setToken Instance of SetToken whose collateral assets is updated * @param _added true if assets are added false if removed * @param _assets Array of collateral assets being added/removed */ event CollateralAssetsUpdated( ISetToken indexed _setToken, bool indexed _added, IERC20[] _assets ); /** * @dev Emitted on addBorrowAssets() and removeBorrowAssets() * @param _setToken Instance of SetToken whose borrow assets is updated * @param _added true if assets are added false if removed * @param _assets Array of borrow assets being added/removed */ event BorrowAssetsUpdated( ISetToken indexed _setToken, bool indexed _added, IERC20[] _assets ); /** * @dev Emitted when `underlyingToReserveTokensMappings` is updated * @param _underlying Address of the underlying asset * @param _aToken Updated aave reserve aToken * @param _variableDebtToken Updated aave reserve variable debt token */ event ReserveTokensUpdated( IERC20 indexed _underlying, IAToken indexed _aToken, IVariableDebtToken indexed _variableDebtToken ); /** * @dev Emitted on updateAllowedSetToken() * @param _setToken SetToken being whose allowance to initialize this module is being updated * @param _added true if added false if removed */ event SetTokenStatusUpdated( ISetToken indexed _setToken, bool indexed _added ); /** * @dev Emitted on updateAnySetAllowed() * @param _anySetAllowed true if any set is allowed to initialize this module, false otherwise */ event AnySetAllowedUpdated( bool indexed _anySetAllowed ); /* ============ Constants ============ */ // This module only supports borrowing in variable rate mode from Aave which is represented by 2 uint256 constant internal BORROW_RATE_MODE = 2; // String identifying the DebtIssuanceModule in the IntegrationRegistry. Note: Governance must add DefaultIssuanceModule as // the string as the integration name string constant internal DEFAULT_ISSUANCE_MODULE_NAME = "DefaultIssuanceModule"; // 0 index stores protocol fee % on the controller, charged in the _executeTrade function uint256 constant internal PROTOCOL_TRADE_FEE_INDEX = 0; /* ============ State Variables ============ */ // Mapping to efficiently fetch reserve token addresses. Tracking Aave reserve token addresses and updating them // upon requirement is more efficient than fetching them each time from Aave. // Note: For an underlying asset to be enabled as collateral/borrow asset on SetToken, it must be added to this mapping first. mapping(IERC20 => ReserveTokens) public underlyingToReserveTokens; // Used to fetch reserves and user data from AaveV2 IProtocolDataProvider public immutable protocolDataProvider; // Used to fetch lendingPool address. This contract is immutable and its address will never change. ILendingPoolAddressesProvider public immutable lendingPoolAddressesProvider; // Mapping to efficiently check if collateral asset is enabled in SetToken mapping(ISetToken => mapping(IERC20 => bool)) public collateralAssetEnabled; // Mapping to efficiently check if a borrow asset is enabled in SetToken mapping(ISetToken => mapping(IERC20 => bool)) public borrowAssetEnabled; // Internal mapping of enabled collateral and borrow tokens for syncing positions mapping(ISetToken => EnabledAssets) internal enabledAssets; // Mapping of SetToken to boolean indicating if SetToken is on allow list. Updateable by governance mapping(ISetToken => bool) public allowedSetTokens; // Boolean that returns if any SetToken can initialize this module. If false, then subject to allow list. Updateable by governance. bool public anySetAllowed; /* ============ Constructor ============ */ /** * @dev Instantiate addresses. Underlying to reserve tokens mapping is created. * @param _controller Address of controller contract * @param _lendingPoolAddressesProvider Address of Aave LendingPoolAddressProvider */ constructor( IController _controller, ILendingPoolAddressesProvider _lendingPoolAddressesProvider ) public ModuleBase(_controller) { lendingPoolAddressesProvider = _lendingPoolAddressesProvider; IProtocolDataProvider _protocolDataProvider = IProtocolDataProvider( // Use the raw input vs bytes32() conversion. This is to ensure the input is an uint and not a string. _lendingPoolAddressesProvider.getAddress(0x0100000000000000000000000000000000000000000000000000000000000000) ); protocolDataProvider = _protocolDataProvider; IProtocolDataProvider.TokenData[] memory reserveTokens = _protocolDataProvider.getAllReservesTokens(); for(uint256 i = 0; i < reserveTokens.length; i++) { (address aToken, , address variableDebtToken) = _protocolDataProvider.getReserveTokensAddresses(reserveTokens[i].tokenAddress); underlyingToReserveTokens[IERC20(reserveTokens[i].tokenAddress)] = ReserveTokens(IAToken(aToken), IVariableDebtToken(variableDebtToken)); } } /* ============ External Functions ============ */ /** * @dev MANAGER ONLY: Increases leverage for a given collateral position using an enabled borrow asset. * Borrows _borrowAsset from Aave. Performs a DEX trade, exchanging the _borrowAsset for _collateralAsset. * Deposits _collateralAsset to Aave and mints corresponding aToken. * Note: Both collateral and borrow assets need to be enabled, and they must not be the same asset. * @param _setToken Instance of the SetToken * @param _borrowAsset Address of underlying asset being borrowed for leverage * @param _collateralAsset Address of underlying collateral asset * @param _borrowQuantityUnits Borrow quantity of asset in position units * @param _minReceiveQuantityUnits Min receive quantity of collateral asset to receive post-trade in position units * @param _tradeAdapterName Name of trade adapter * @param _tradeData Arbitrary data for trade */ function lever( ISetToken _setToken, IERC20 _borrowAsset, IERC20 _collateralAsset, uint256 _borrowQuantityUnits, uint256 _minReceiveQuantityUnits, string memory _tradeAdapterName, bytes memory _tradeData ) external nonReentrant onlyManagerAndValidSet(_setToken) { // For levering up, send quantity is derived from borrow asset and receive quantity is derived from // collateral asset ActionInfo memory leverInfo = _createAndValidateActionInfo( _setToken, _borrowAsset, _collateralAsset, _borrowQuantityUnits, _minReceiveQuantityUnits, _tradeAdapterName, true ); _borrow(leverInfo.setToken, leverInfo.lendingPool, leverInfo.borrowAsset, leverInfo.notionalSendQuantity); uint256 postTradeReceiveQuantity = _executeTrade(leverInfo, _borrowAsset, _collateralAsset, _tradeData); uint256 protocolFee = _accrueProtocolFee(_setToken, _collateralAsset, postTradeReceiveQuantity); uint256 postTradeCollateralQuantity = postTradeReceiveQuantity.sub(protocolFee); _deposit(leverInfo.setToken, leverInfo.lendingPool, _collateralAsset, postTradeCollateralQuantity); _updateLeverPositions(leverInfo, _borrowAsset); emit LeverageIncreased( _setToken, _borrowAsset, _collateralAsset, leverInfo.exchangeAdapter, leverInfo.notionalSendQuantity, postTradeCollateralQuantity, protocolFee ); } /** * @dev MANAGER ONLY: Decrease leverage for a given collateral position using an enabled borrow asset. * Withdraws _collateralAsset from Aave. Performs a DEX trade, exchanging the _collateralAsset for _repayAsset. * Repays _repayAsset to Aave and burns corresponding debt tokens. * Note: Both collateral and borrow assets need to be enabled, and they must not be the same asset. * @param _setToken Instance of the SetToken * @param _collateralAsset Address of underlying collateral asset being withdrawn * @param _repayAsset Address of underlying borrowed asset being repaid * @param _redeemQuantityUnits Quantity of collateral asset to delever in position units * @param _minRepayQuantityUnits Minimum amount of repay asset to receive post trade in position units * @param _tradeAdapterName Name of trade adapter * @param _tradeData Arbitrary data for trade */ function delever( ISetToken _setToken, IERC20 _collateralAsset, IERC20 _repayAsset, uint256 _redeemQuantityUnits, uint256 _minRepayQuantityUnits, string memory _tradeAdapterName, bytes memory _tradeData ) external nonReentrant onlyManagerAndValidSet(_setToken) { // Note: for delevering, send quantity is derived from collateral asset and receive quantity is derived from // repay asset ActionInfo memory deleverInfo = _createAndValidateActionInfo( _setToken, _collateralAsset, _repayAsset, _redeemQuantityUnits, _minRepayQuantityUnits, _tradeAdapterName, false ); _withdraw(deleverInfo.setToken, deleverInfo.lendingPool, _collateralAsset, deleverInfo.notionalSendQuantity); uint256 postTradeReceiveQuantity = _executeTrade(deleverInfo, _collateralAsset, _repayAsset, _tradeData); uint256 protocolFee = _accrueProtocolFee(_setToken, _repayAsset, postTradeReceiveQuantity); uint256 repayQuantity = postTradeReceiveQuantity.sub(protocolFee); _repayBorrow(deleverInfo.setToken, deleverInfo.lendingPool, _repayAsset, repayQuantity); _updateDeleverPositions(deleverInfo, _repayAsset); emit LeverageDecreased( _setToken, _collateralAsset, _repayAsset, deleverInfo.exchangeAdapter, deleverInfo.notionalSendQuantity, repayQuantity, protocolFee ); } /** @dev MANAGER ONLY: Pays down the borrow asset to 0 selling off a given amount of collateral asset. * Withdraws _collateralAsset from Aave. Performs a DEX trade, exchanging the _collateralAsset for _repayAsset. * Minimum receive amount for the DEX trade is set to the current variable debt balance of the borrow asset. * Repays received _repayAsset to Aave which burns corresponding debt tokens. Any extra received borrow asset is . * updated as equity. No protocol fee is charged. * Note: Both collateral and borrow assets need to be enabled, and they must not be the same asset. * The function reverts if not enough collateral asset is redeemed to buy the required minimum amount of _repayAsset. * @param _setToken Instance of the SetToken * @param _collateralAsset Address of underlying collateral asset being redeemed * @param _repayAsset Address of underlying asset being repaid * @param _redeemQuantityUnits Quantity of collateral asset to delever in position units * @param _tradeAdapterName Name of trade adapter * @param _tradeData Arbitrary data for trade * @return uint256 Notional repay quantity */ function deleverToZeroBorrowBalance( ISetToken _setToken, IERC20 _collateralAsset, IERC20 _repayAsset, uint256 _redeemQuantityUnits, string memory _tradeAdapterName, bytes memory _tradeData ) external nonReentrant onlyManagerAndValidSet(_setToken) returns (uint256) { uint256 setTotalSupply = _setToken.totalSupply(); uint256 notionalRedeemQuantity = _redeemQuantityUnits.preciseMul(setTotalSupply); require(borrowAssetEnabled[_setToken][_repayAsset], "Borrow not enabled"); uint256 notionalRepayQuantity = underlyingToReserveTokens[_repayAsset].variableDebtToken.balanceOf(address(_setToken)); require(notionalRepayQuantity > 0, "Borrow balance is zero"); ActionInfo memory deleverInfo = _createAndValidateActionInfoNotional( _setToken, _collateralAsset, _repayAsset, notionalRedeemQuantity, notionalRepayQuantity, _tradeAdapterName, false, setTotalSupply ); _withdraw(deleverInfo.setToken, deleverInfo.lendingPool, _collateralAsset, deleverInfo.notionalSendQuantity); _executeTrade(deleverInfo, _collateralAsset, _repayAsset, _tradeData); _repayBorrow(deleverInfo.setToken, deleverInfo.lendingPool, _repayAsset, notionalRepayQuantity); _updateDeleverPositions(deleverInfo, _repayAsset); emit LeverageDecreased( _setToken, _collateralAsset, _repayAsset, deleverInfo.exchangeAdapter, deleverInfo.notionalSendQuantity, notionalRepayQuantity, 0 // No protocol fee ); return notionalRepayQuantity; } /** * @dev CALLABLE BY ANYBODY: Sync Set positions with ALL enabled Aave collateral and borrow positions. * For collateral assets, update aToken default position. For borrow assets, update external borrow position. * - Collateral assets may come out of sync when interest is accrued or a position is liquidated * - Borrow assets may come out of sync when interest is accrued or position is liquidated and borrow is repaid * Note: In Aave, both collateral and borrow interest is accrued in each block by increasing the balance of * aTokens and debtTokens for each user, and 1 aToken = 1 variableDebtToken = 1 underlying. * @param _setToken Instance of the SetToken */ function sync(ISetToken _setToken) public nonReentrant onlyValidAndInitializedSet(_setToken) { uint256 setTotalSupply = _setToken.totalSupply(); // Only sync positions when Set supply is not 0. Without this check, if sync is called by someone before the // first issuance, then editDefaultPosition would remove the default positions from the SetToken if (setTotalSupply > 0) { address[] memory collateralAssets = enabledAssets[_setToken].collateralAssets; for(uint256 i = 0; i < collateralAssets.length; i++) { IAToken aToken = underlyingToReserveTokens[IERC20(collateralAssets[i])].aToken; uint256 previousPositionUnit = _setToken.getDefaultPositionRealUnit(address(aToken)).toUint256(); uint256 newPositionUnit = _getCollateralPosition(_setToken, aToken, setTotalSupply); // Note: Accounts for if position does not exist on SetToken but is tracked in enabledAssets if (previousPositionUnit != newPositionUnit) { _updateCollateralPosition(_setToken, aToken, newPositionUnit); } } address[] memory borrowAssets = enabledAssets[_setToken].borrowAssets; for(uint256 i = 0; i < borrowAssets.length; i++) { IERC20 borrowAsset = IERC20(borrowAssets[i]); int256 previousPositionUnit = _setToken.getExternalPositionRealUnit(address(borrowAsset), address(this)); int256 newPositionUnit = _getBorrowPosition(_setToken, borrowAsset, setTotalSupply); // Note: Accounts for if position does not exist on SetToken but is tracked in enabledAssets if (newPositionUnit != previousPositionUnit) { _updateBorrowPosition(_setToken, borrowAsset, newPositionUnit); } } } } /** * @dev MANAGER ONLY: Initializes this module to the SetToken. Either the SetToken needs to be on the allowed list * or anySetAllowed needs to be true. Only callable by the SetToken's manager. * Note: Managers can enable collateral and borrow assets that don't exist as positions on the SetToken * @param _setToken Instance of the SetToken to initialize * @param _collateralAssets Underlying tokens to be enabled as collateral in the SetToken * @param _borrowAssets Underlying tokens to be enabled as borrow in the SetToken */ function initialize( ISetToken _setToken, IERC20[] memory _collateralAssets, IERC20[] memory _borrowAssets ) external onlySetManager(_setToken, msg.sender) onlyValidAndPendingSet(_setToken) { if (!anySetAllowed) { require(allowedSetTokens[_setToken], "Not allowed SetToken"); } // Initialize module before trying register _setToken.initializeModule(); // Get debt issuance module registered to this module and require that it is initialized require(_setToken.isInitializedModule(getAndValidateAdapter(DEFAULT_ISSUANCE_MODULE_NAME)), "Issuance not initialized"); // Try if register exists on any of the modules including the debt issuance module address[] memory modules = _setToken.getModules(); for(uint256 i = 0; i < modules.length; i++) { try IDebtIssuanceModule(modules[i]).registerToIssuanceModule(_setToken) {} catch {} } // _collateralAssets and _borrowAssets arrays are validated in their respective internal functions _addCollateralAssets(_setToken, _collateralAssets); _addBorrowAssets(_setToken, _borrowAssets); } /** * @dev MANAGER ONLY: Removes this module from the SetToken, via call by the SetToken. Any deposited collateral assets * are disabled to be used as collateral on Aave. Aave Settings and manager enabled assets state is deleted. * Note: Function will revert is there is any debt remaining on Aave */ function removeModule() external override onlyValidAndInitializedSet(ISetToken(msg.sender)) { ISetToken setToken = ISetToken(msg.sender); // Sync Aave and SetToken positions prior to any removal action sync(setToken); address[] memory borrowAssets = enabledAssets[setToken].borrowAssets; for(uint256 i = 0; i < borrowAssets.length; i++) { IERC20 borrowAsset = IERC20(borrowAssets[i]); require(underlyingToReserveTokens[borrowAsset].variableDebtToken.balanceOf(address(setToken)) == 0, "Variable debt remaining"); delete borrowAssetEnabled[setToken][borrowAsset]; } address[] memory collateralAssets = enabledAssets[setToken].collateralAssets; for(uint256 i = 0; i < collateralAssets.length; i++) { IERC20 collateralAsset = IERC20(collateralAssets[i]); _updateUseReserveAsCollateral(setToken, collateralAsset, false); delete collateralAssetEnabled[setToken][collateralAsset]; } delete enabledAssets[setToken]; // Try if unregister exists on any of the modules address[] memory modules = setToken.getModules(); for(uint256 i = 0; i < modules.length; i++) { try IDebtIssuanceModule(modules[i]).unregisterFromIssuanceModule(setToken) {} catch {} } } /** * @dev MANAGER ONLY: Add registration of this module on the debt issuance module for the SetToken. * Note: if the debt issuance module is not added to SetToken before this module is initialized, then this function * needs to be called if the debt issuance module is later added and initialized to prevent state inconsistencies * @param _setToken Instance of the SetToken * @param _debtIssuanceModule Debt issuance module address to register */ function registerToModule(ISetToken _setToken, IDebtIssuanceModule _debtIssuanceModule) external onlyManagerAndValidSet(_setToken) { require(_setToken.isInitializedModule(address(_debtIssuanceModule)), "Issuance not initialized"); _debtIssuanceModule.registerToIssuanceModule(_setToken); } /** * @dev CALLABLE BY ANYBODY: Updates `underlyingToReserveTokens` mappings. Reverts if mapping already exists * or the passed _underlying asset does not have a valid reserve on Aave. * Note: Call this function when Aave adds a new reserve. * @param _underlying Address of underlying asset */ function addUnderlyingToReserveTokensMapping(IERC20 _underlying) external { require(address(underlyingToReserveTokens[_underlying].aToken) == address(0), "Mapping already exists"); // An active reserve is an alias for a valid reserve on Aave. (,,,,,,,, bool isActive,) = protocolDataProvider.getReserveConfigurationData(address(_underlying)); require(isActive, "Invalid aave reserve"); _addUnderlyingToReserveTokensMapping(_underlying); } /** * @dev MANAGER ONLY: Add collateral assets. aTokens corresponding to collateral assets are tracked for syncing positions. * Note: Reverts with "Collateral already enabled" if there are duplicate assets in the passed _newCollateralAssets array. * * NOTE: ALL ADDED COLLATERAL ASSETS CAN BE ADDED AS A POSITION ON THE SET TOKEN WITHOUT MANAGER'S EXPLICIT PERMISSION. * UNWANTED EXTRA POSITIONS CAN BREAK EXTERNAL LOGIC, INCREASE COST OF MINT/REDEEM OF SET TOKEN, AMONG OTHER POTENTIAL UNINTENDED CONSEQUENCES. * SO, PLEASE ADD ONLY THOSE COLLATERAL ASSETS WHOSE CORRESPONDING aTOKENS ARE NEEDED AS DEFAULT POSITIONS ON THE SET TOKEN. * * @param _setToken Instance of the SetToken * @param _newCollateralAssets Addresses of new collateral underlying assets */ function addCollateralAssets(ISetToken _setToken, IERC20[] memory _newCollateralAssets) external onlyManagerAndValidSet(_setToken) { _addCollateralAssets(_setToken, _newCollateralAssets); } /** * @dev MANAGER ONLY: Remove collateral assets. Disable deposited assets to be used as collateral on Aave market. * @param _setToken Instance of the SetToken * @param _collateralAssets Addresses of collateral underlying assets to remove */ function removeCollateralAssets(ISetToken _setToken, IERC20[] memory _collateralAssets) external onlyManagerAndValidSet(_setToken) { for(uint256 i = 0; i < _collateralAssets.length; i++) { IERC20 collateralAsset = _collateralAssets[i]; require(collateralAssetEnabled[_setToken][collateralAsset], "Collateral not enabled"); _updateUseReserveAsCollateral(_setToken, collateralAsset, false); delete collateralAssetEnabled[_setToken][collateralAsset]; enabledAssets[_setToken].collateralAssets.removeStorage(address(collateralAsset)); } emit CollateralAssetsUpdated(_setToken, false, _collateralAssets); } /** * @dev MANAGER ONLY: Add borrow assets. Debt tokens corresponding to borrow assets are tracked for syncing positions. * Note: Reverts with "Borrow already enabled" if there are duplicate assets in the passed _newBorrowAssets array. * @param _setToken Instance of the SetToken * @param _newBorrowAssets Addresses of borrow underlying assets to add */ function addBorrowAssets(ISetToken _setToken, IERC20[] memory _newBorrowAssets) external onlyManagerAndValidSet(_setToken) { _addBorrowAssets(_setToken, _newBorrowAssets); } /** * @dev MANAGER ONLY: Remove borrow assets. * Note: If there is a borrow balance, borrow asset cannot be removed * @param _setToken Instance of the SetToken * @param _borrowAssets Addresses of borrow underlying assets to remove */ function removeBorrowAssets(ISetToken _setToken, IERC20[] memory _borrowAssets) external onlyManagerAndValidSet(_setToken) { for(uint256 i = 0; i < _borrowAssets.length; i++) { IERC20 borrowAsset = _borrowAssets[i]; require(borrowAssetEnabled[_setToken][borrowAsset], "Borrow not enabled"); require(underlyingToReserveTokens[borrowAsset].variableDebtToken.balanceOf(address(_setToken)) == 0, "Variable debt remaining"); delete borrowAssetEnabled[_setToken][borrowAsset]; enabledAssets[_setToken].borrowAssets.removeStorage(address(borrowAsset)); } emit BorrowAssetsUpdated(_setToken, false, _borrowAssets); } /** * @dev GOVERNANCE ONLY: Enable/disable ability of a SetToken to initialize this module. Only callable by governance. * @param _setToken Instance of the SetToken * @param _status Bool indicating if _setToken is allowed to initialize this module */ function updateAllowedSetToken(ISetToken _setToken, bool _status) external onlyOwner { require(controller.isSet(address(_setToken)) || allowedSetTokens[_setToken], "Invalid SetToken"); allowedSetTokens[_setToken] = _status; emit SetTokenStatusUpdated(_setToken, _status); } /** * @dev GOVERNANCE ONLY: Toggle whether ANY SetToken is allowed to initialize this module. Only callable by governance. * @param _anySetAllowed Bool indicating if ANY SetToken is allowed to initialize this module */ function updateAnySetAllowed(bool _anySetAllowed) external onlyOwner { anySetAllowed = _anySetAllowed; emit AnySetAllowedUpdated(_anySetAllowed); } /** * @dev MODULE ONLY: Hook called prior to issuance to sync positions on SetToken. Only callable by valid module. * @param _setToken Instance of the SetToken */ function moduleIssueHook(ISetToken _setToken, uint256 /* _setTokenQuantity */) external override onlyModule(_setToken) { sync(_setToken); } /** * @dev MODULE ONLY: Hook called prior to redemption to sync positions on SetToken. For redemption, always use current borrowed * balance after interest accrual. Only callable by valid module. * @param _setToken Instance of the SetToken */ function moduleRedeemHook(ISetToken _setToken, uint256 /* _setTokenQuantity */) external override onlyModule(_setToken) { sync(_setToken); } /** * @dev MODULE ONLY: Hook called prior to looping through each component on issuance. Invokes borrow in order for * module to return debt to issuer. Only callable by valid module. * @param _setToken Instance of the SetToken * @param _setTokenQuantity Quantity of SetToken * @param _component Address of component */ function componentIssueHook(ISetToken _setToken, uint256 _setTokenQuantity, IERC20 _component, bool _isEquity) external override onlyModule(_setToken) { // Check hook not being called for an equity position. If hook is called with equity position and outstanding borrow position // exists the loan would be taken out twice potentially leading to liquidation if (!_isEquity) { int256 componentDebt = _setToken.getExternalPositionRealUnit(address(_component), address(this)); require(componentDebt < 0, "Component must be negative"); uint256 notionalDebt = componentDebt.mul(-1).toUint256().preciseMul(_setTokenQuantity); _borrowForHook(_setToken, _component, notionalDebt); } } /** * @dev MODULE ONLY: Hook called prior to looping through each component on redemption. Invokes repay after * the issuance module transfers debt from the issuer. Only callable by valid module. * @param _setToken Instance of the SetToken * @param _setTokenQuantity Quantity of SetToken * @param _component Address of component */ function componentRedeemHook(ISetToken _setToken, uint256 _setTokenQuantity, IERC20 _component, bool _isEquity) external override onlyModule(_setToken) { // Check hook not being called for an equity position. If hook is called with equity position and outstanding borrow position // exists the loan would be paid down twice, decollateralizing the Set if (!_isEquity) { int256 componentDebt = _setToken.getExternalPositionRealUnit(address(_component), address(this)); require(componentDebt < 0, "Component must be negative"); uint256 notionalDebt = componentDebt.mul(-1).toUint256().preciseMulCeil(_setTokenQuantity); _repayBorrowForHook(_setToken, _component, notionalDebt); } } /* ============ External Getter Functions ============ */ /** * @dev Get enabled assets for SetToken. Returns an array of collateral and borrow assets. * @return Underlying collateral assets that are enabled * @return Underlying borrowed assets that are enabled */ function getEnabledAssets(ISetToken _setToken) external view returns(address[] memory, address[] memory) { return ( enabledAssets[_setToken].collateralAssets, enabledAssets[_setToken].borrowAssets ); } /* ============ Internal Functions ============ */ /** * @dev Invoke deposit from SetToken using AaveV2 library. Mints aTokens for SetToken. */ function _deposit(ISetToken _setToken, ILendingPool _lendingPool, IERC20 _asset, uint256 _notionalQuantity) internal { _setToken.invokeApprove(address(_asset), address(_lendingPool), _notionalQuantity); _setToken.invokeDeposit(_lendingPool, address(_asset), _notionalQuantity); } /** * @dev Invoke withdraw from SetToken using AaveV2 library. Burns aTokens and returns underlying to SetToken. */ function _withdraw(ISetToken _setToken, ILendingPool _lendingPool, IERC20 _asset, uint256 _notionalQuantity) internal { _setToken.invokeWithdraw(_lendingPool, address(_asset), _notionalQuantity); } /** * @dev Invoke repay from SetToken using AaveV2 library. Burns DebtTokens for SetToken. */ function _repayBorrow(ISetToken _setToken, ILendingPool _lendingPool, IERC20 _asset, uint256 _notionalQuantity) internal { _setToken.invokeApprove(address(_asset), address(_lendingPool), _notionalQuantity); _setToken.invokeRepay(_lendingPool, address(_asset), _notionalQuantity, BORROW_RATE_MODE); } /** * @dev Invoke borrow from the SetToken during issuance hook. Since we only need to interact with AAVE once we fetch the * lending pool in this function to optimize vs forcing a fetch twice during lever/delever. */ function _repayBorrowForHook(ISetToken _setToken, IERC20 _asset, uint256 _notionalQuantity) internal { _repayBorrow(_setToken, ILendingPool(lendingPoolAddressesProvider.getLendingPool()), _asset, _notionalQuantity); } /** * @dev Invoke borrow from the SetToken using AaveV2 library. Mints DebtTokens for SetToken. */ function _borrow(ISetToken _setToken, ILendingPool _lendingPool, IERC20 _asset, uint256 _notionalQuantity) internal { _setToken.invokeBorrow(_lendingPool, address(_asset), _notionalQuantity, BORROW_RATE_MODE); } /** * @dev Invoke borrow from the SetToken during issuance hook. Since we only need to interact with AAVE once we fetch the * lending pool in this function to optimize vs forcing a fetch twice during lever/delever. */ function _borrowForHook(ISetToken _setToken, IERC20 _asset, uint256 _notionalQuantity) internal { _borrow(_setToken, ILendingPool(lendingPoolAddressesProvider.getLendingPool()), _asset, _notionalQuantity); } /** * @dev Invokes approvals, gets trade call data from exchange adapter and invokes trade from SetToken * @return uint256 The quantity of tokens received post-trade */ function _executeTrade( ActionInfo memory _actionInfo, IERC20 _sendToken, IERC20 _receiveToken, bytes memory _data ) internal returns (uint256) { ISetToken setToken = _actionInfo.setToken; uint256 notionalSendQuantity = _actionInfo.notionalSendQuantity; setToken.invokeApprove( address(_sendToken), _actionInfo.exchangeAdapter.getSpender(), notionalSendQuantity ); ( address targetExchange, uint256 callValue, bytes memory methodData ) = _actionInfo.exchangeAdapter.getTradeCalldata( address(_sendToken), address(_receiveToken), address(setToken), notionalSendQuantity, _actionInfo.minNotionalReceiveQuantity, _data ); setToken.invoke(targetExchange, callValue, methodData); uint256 receiveTokenQuantity = _receiveToken.balanceOf(address(setToken)).sub(_actionInfo.preTradeReceiveTokenBalance); require( receiveTokenQuantity >= _actionInfo.minNotionalReceiveQuantity, "Slippage too high" ); return receiveTokenQuantity; } /** * @dev Calculates protocol fee on module and pays protocol fee from SetToken * @return uint256 Total protocol fee paid */ function _accrueProtocolFee(ISetToken _setToken, IERC20 _receiveToken, uint256 _exchangedQuantity) internal returns(uint256) { uint256 protocolFeeTotal = getModuleFee(PROTOCOL_TRADE_FEE_INDEX, _exchangedQuantity); payProtocolFeeFromSetToken(_setToken, address(_receiveToken), protocolFeeTotal); return protocolFeeTotal; } /** * @dev Updates the collateral (aToken held) and borrow position (variableDebtToken held) of the SetToken */ function _updateLeverPositions(ActionInfo memory _actionInfo, IERC20 _borrowAsset) internal { IAToken aToken = underlyingToReserveTokens[_actionInfo.collateralAsset].aToken; _updateCollateralPosition( _actionInfo.setToken, aToken, _getCollateralPosition( _actionInfo.setToken, aToken, _actionInfo.setTotalSupply ) ); _updateBorrowPosition( _actionInfo.setToken, _borrowAsset, _getBorrowPosition( _actionInfo.setToken, _borrowAsset, _actionInfo.setTotalSupply ) ); } /** * @dev Updates positions as per _updateLeverPositions and updates Default position for borrow asset in case Set is * delevered all the way to zero any remaining borrow asset after the debt is paid can be added as a position. */ function _updateDeleverPositions(ActionInfo memory _actionInfo, IERC20 _repayAsset) internal { // if amount of tokens traded for exceeds debt, update default position first to save gas on editing borrow position uint256 repayAssetBalance = _repayAsset.balanceOf(address(_actionInfo.setToken)); if (repayAssetBalance != _actionInfo.preTradeReceiveTokenBalance) { _actionInfo.setToken.calculateAndEditDefaultPosition( address(_repayAsset), _actionInfo.setTotalSupply, _actionInfo.preTradeReceiveTokenBalance ); } _updateLeverPositions(_actionInfo, _repayAsset); } /** * @dev Updates default position unit for given aToken on SetToken */ function _updateCollateralPosition(ISetToken _setToken, IAToken _aToken, uint256 _newPositionUnit) internal { _setToken.editDefaultPosition(address(_aToken), _newPositionUnit); } /** * @dev Updates external position unit for given borrow asset on SetToken */ function _updateBorrowPosition(ISetToken _setToken, IERC20 _underlyingAsset, int256 _newPositionUnit) internal { _setToken.editExternalPosition(address(_underlyingAsset), address(this), _newPositionUnit, ""); } /** * @dev Construct the ActionInfo struct for lever and delever * @return ActionInfo Instance of constructed ActionInfo struct */ function _createAndValidateActionInfo( ISetToken _setToken, IERC20 _sendToken, IERC20 _receiveToken, uint256 _sendQuantityUnits, uint256 _minReceiveQuantityUnits, string memory _tradeAdapterName, bool _isLever ) internal view returns(ActionInfo memory) { uint256 totalSupply = _setToken.totalSupply(); return _createAndValidateActionInfoNotional( _setToken, _sendToken, _receiveToken, _sendQuantityUnits.preciseMul(totalSupply), _minReceiveQuantityUnits.preciseMul(totalSupply), _tradeAdapterName, _isLever, totalSupply ); } /** * @dev Construct the ActionInfo struct for lever and delever accepting notional units * @return ActionInfo Instance of constructed ActionInfo struct */ function _createAndValidateActionInfoNotional( ISetToken _setToken, IERC20 _sendToken, IERC20 _receiveToken, uint256 _notionalSendQuantity, uint256 _minNotionalReceiveQuantity, string memory _tradeAdapterName, bool _isLever, uint256 _setTotalSupply ) internal view returns(ActionInfo memory) { ActionInfo memory actionInfo = ActionInfo ({ exchangeAdapter: IExchangeAdapter(getAndValidateAdapter(_tradeAdapterName)), lendingPool: ILendingPool(lendingPoolAddressesProvider.getLendingPool()), setToken: _setToken, collateralAsset: _isLever ? _receiveToken : _sendToken, borrowAsset: _isLever ? _sendToken : _receiveToken, setTotalSupply: _setTotalSupply, notionalSendQuantity: _notionalSendQuantity, minNotionalReceiveQuantity: _minNotionalReceiveQuantity, preTradeReceiveTokenBalance: IERC20(_receiveToken).balanceOf(address(_setToken)) }); _validateCommon(actionInfo); return actionInfo; } /** * @dev Updates `underlyingToReserveTokens` mappings for given `_underlying` asset. Emits ReserveTokensUpdated event. */ function _addUnderlyingToReserveTokensMapping(IERC20 _underlying) internal { (address aToken, , address variableDebtToken) = protocolDataProvider.getReserveTokensAddresses(address(_underlying)); underlyingToReserveTokens[_underlying].aToken = IAToken(aToken); underlyingToReserveTokens[_underlying].variableDebtToken = IVariableDebtToken(variableDebtToken); emit ReserveTokensUpdated(_underlying, IAToken(aToken), IVariableDebtToken(variableDebtToken)); } /** * @dev Add collateral assets to SetToken. Updates the collateralAssetsEnabled and enabledAssets mappings. * Emits CollateralAssetsUpdated event. */ function _addCollateralAssets(ISetToken _setToken, IERC20[] memory _newCollateralAssets) internal { for(uint256 i = 0; i < _newCollateralAssets.length; i++) { IERC20 collateralAsset = _newCollateralAssets[i]; _validateNewCollateralAsset(_setToken, collateralAsset); _updateUseReserveAsCollateral(_setToken, collateralAsset, true); collateralAssetEnabled[_setToken][collateralAsset] = true; enabledAssets[_setToken].collateralAssets.push(address(collateralAsset)); } emit CollateralAssetsUpdated(_setToken, true, _newCollateralAssets); } /** * @dev Add borrow assets to SetToken. Updates the borrowAssetsEnabled and enabledAssets mappings. * Emits BorrowAssetsUpdated event. */ function _addBorrowAssets(ISetToken _setToken, IERC20[] memory _newBorrowAssets) internal { for(uint256 i = 0; i < _newBorrowAssets.length; i++) { IERC20 borrowAsset = _newBorrowAssets[i]; _validateNewBorrowAsset(_setToken, borrowAsset); borrowAssetEnabled[_setToken][borrowAsset] = true; enabledAssets[_setToken].borrowAssets.push(address(borrowAsset)); } emit BorrowAssetsUpdated(_setToken, true, _newBorrowAssets); } /** * @dev Updates SetToken's ability to use an asset as collateral on Aave */ function _updateUseReserveAsCollateral(ISetToken _setToken, IERC20 _asset, bool _useAsCollateral) internal { /* Note: Aave ENABLES an asset to be used as collateral by `to` address in an `aToken.transfer(to, amount)` call provided 1. msg.sender (from address) isn't the same as `to` address 2. `to` address had zero aToken balance before the transfer 3. transfer `amount` is greater than 0 Note: Aave DISABLES an asset to be used as collateral by `msg.sender`in an `aToken.transfer(to, amount)` call provided 1. msg.sender (from address) isn't the same as `to` address 2. msg.sender has zero balance after the transfer Different states of the SetToken and what this function does in those states: Case 1: Manager adds collateral asset to SetToken before first issuance - Since aToken.balanceOf(setToken) == 0, we do not call `setToken.invokeUserUseReserveAsCollateral` because Aave requires aToken balance to be greater than 0 before enabling/disabling the underlying asset to be used as collateral on Aave markets. Case 2: First issuance of the SetToken - SetToken was initialized with aToken as default position - DebtIssuanceModule reads the default position and transfers corresponding aToken from the issuer to the SetToken - Aave enables aToken to be used as collateral by the SetToken - Manager calls lever() and the aToken is used as collateral to borrow other assets Case 3: Manager removes collateral asset from the SetToken - Disable asset to be used as collateral on SetToken by calling `setToken.invokeSetUserUseReserveAsCollateral` with useAsCollateral equals false - Note: If health factor goes below 1 by removing the collateral asset, then Aave reverts on the above call, thus whole transaction reverts, and manager can't remove corresponding collateral asset Case 4: Manager adds collateral asset after removing it - If aToken.balanceOf(setToken) > 0, we call `setToken.invokeUserUseReserveAsCollateral` and the corresponding aToken is re-enabled as collateral on Aave Case 5: On redemption/delever/liquidated and aToken balance becomes zero - Aave disables aToken to be used as collateral by SetToken Values of variables in below if condition and corresponding action taken: --------------------------------------------------------------------------------------------------------------------- | usageAsCollateralEnabled | _useAsCollateral | aToken.balanceOf() | Action | |--------------------------|-------------------|-----------------------|--------------------------------------------| | true | true | X | Skip invoke. Save gas. | |--------------------------|-------------------|-----------------------|--------------------------------------------| | true | false | greater than 0 | Invoke and set to false. | |--------------------------|-------------------|-----------------------|--------------------------------------------| | true | false | = 0 | Impossible case. Aave disables usage as | | | | | collateral when aToken balance becomes 0 | |--------------------------|-------------------|-----------------------|--------------------------------------------| | false | false | X | Skip invoke. Save gas. | |--------------------------|-------------------|-----------------------|--------------------------------------------| | false | true | greater than 0 | Invoke and set to true. | |--------------------------|-------------------|-----------------------|--------------------------------------------| | false | true | = 0 | Don't invoke. Will revert. | --------------------------------------------------------------------------------------------------------------------- */ (,,,,,,,,bool usageAsCollateralEnabled) = protocolDataProvider.getUserReserveData(address(_asset), address(_setToken)); if ( usageAsCollateralEnabled != _useAsCollateral && underlyingToReserveTokens[_asset].aToken.balanceOf(address(_setToken)) > 0 ) { _setToken.invokeSetUserUseReserveAsCollateral( ILendingPool(lendingPoolAddressesProvider.getLendingPool()), address(_asset), _useAsCollateral ); } } /** * @dev Validate common requirements for lever and delever */ function _validateCommon(ActionInfo memory _actionInfo) internal view { require(collateralAssetEnabled[_actionInfo.setToken][_actionInfo.collateralAsset], "Collateral not enabled"); require(borrowAssetEnabled[_actionInfo.setToken][_actionInfo.borrowAsset], "Borrow not enabled"); require(_actionInfo.collateralAsset != _actionInfo.borrowAsset, "Collateral and borrow asset must be different"); require(_actionInfo.notionalSendQuantity > 0, "Quantity is 0"); } /** * @dev Validates if a new asset can be added as collateral asset for given SetToken */ function _validateNewCollateralAsset(ISetToken _setToken, IERC20 _asset) internal view { require(!collateralAssetEnabled[_setToken][_asset], "Collateral already enabled"); (address aToken, , ) = protocolDataProvider.getReserveTokensAddresses(address(_asset)); require(address(underlyingToReserveTokens[_asset].aToken) == aToken, "Invalid aToken address"); ( , , , , , bool usageAsCollateralEnabled, , , bool isActive, bool isFrozen) = protocolDataProvider.getReserveConfigurationData(address(_asset)); // An active reserve is an alias for a valid reserve on Aave. // We are checking for the availability of the reserve directly on Aave rather than checking our internal `underlyingToReserveTokens` mappings, // because our mappings can be out-of-date if a new reserve is added to Aave require(isActive, "Invalid aave reserve"); // A frozen reserve doesn't allow any new deposit, borrow or rate swap but allows repayments, liquidations and withdrawals require(!isFrozen, "Frozen aave reserve"); require(usageAsCollateralEnabled, "Collateral disabled on Aave"); } /** * @dev Validates if a new asset can be added as borrow asset for given SetToken */ function _validateNewBorrowAsset(ISetToken _setToken, IERC20 _asset) internal view { require(!borrowAssetEnabled[_setToken][_asset], "Borrow already enabled"); ( , , address variableDebtToken) = protocolDataProvider.getReserveTokensAddresses(address(_asset)); require(address(underlyingToReserveTokens[_asset].variableDebtToken) == variableDebtToken, "Invalid variable debt token address"); (, , , , , , bool borrowingEnabled, , bool isActive, bool isFrozen) = protocolDataProvider.getReserveConfigurationData(address(_asset)); require(isActive, "Invalid aave reserve"); require(!isFrozen, "Frozen aave reserve"); require(borrowingEnabled, "Borrowing disabled on Aave"); } /** * @dev Reads aToken balance and calculates default position unit for given collateral aToken and SetToken * * @return uint256 default collateral position unit */ function _getCollateralPosition(ISetToken _setToken, IAToken _aToken, uint256 _setTotalSupply) internal view returns (uint256) { uint256 collateralNotionalBalance = _aToken.balanceOf(address(_setToken)); return collateralNotionalBalance.preciseDiv(_setTotalSupply); } /** * @dev Reads variableDebtToken balance and calculates external position unit for given borrow asset and SetToken * * @return int256 external borrow position unit */ function _getBorrowPosition(ISetToken _setToken, IERC20 _borrowAsset, uint256 _setTotalSupply) internal view returns (int256) { uint256 borrowNotionalBalance = underlyingToReserveTokens[_borrowAsset].variableDebtToken.balanceOf(address(_setToken)); return borrowNotionalBalance.preciseDivCeil(_setTotalSupply).toInt256().mul(-1); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 "../GSN/Context.sol"; /** * @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 {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @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 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; constructor () 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; } }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { ILendingPool } from "../../../interfaces/external/aave-v2/ILendingPool.sol"; import { ISetToken } from "../../../interfaces/ISetToken.sol"; /** * @title AaveV2 * @author Set Protocol * * Collection of helper functions for interacting with AaveV2 integrations. */ library AaveV2 { /* ============ External ============ */ /** * Get deposit calldata from SetToken * * Deposits an `_amountNotional` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User deposits 100 USDC and gets in return 100 aUSDC * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to deposit * @param _amountNotional The amount to be deposited * @param _onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param _referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * * @return address Target contract address * @return uint256 Call value * @return bytes Deposit calldata */ function getDepositCalldata( ILendingPool _lendingPool, address _asset, uint256 _amountNotional, address _onBehalfOf, uint16 _referralCode ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "deposit(address,uint256,address,uint16)", _asset, _amountNotional, _onBehalfOf, _referralCode ); return (address(_lendingPool), 0, callData); } /** * Invoke deposit on LendingPool from SetToken * * Deposits an `_amountNotional` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. SetToken deposits 100 USDC and gets in return 100 aUSDC * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to deposit * @param _amountNotional The amount to be deposited */ function invokeDeposit( ISetToken _setToken, ILendingPool _lendingPool, address _asset, uint256 _amountNotional ) external { ( , , bytes memory depositCalldata) = getDepositCalldata( _lendingPool, _asset, _amountNotional, address(_setToken), 0 ); _setToken.invoke(address(_lendingPool), 0, depositCalldata); } /** * Get withdraw calldata from SetToken * * Withdraws an `_amountNotional` of underlying asset from the reserve, burning the equivalent aTokens owned * - E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to withdraw * @param _amountNotional The underlying amount to be withdrawn * Note: Passing type(uint256).max will withdraw the entire aToken balance * @param _receiver Address that will receive the underlying, same as msg.sender if the user * wants to receive it on his own wallet, or a different address if the beneficiary is a * different wallet * * @return address Target contract address * @return uint256 Call value * @return bytes Withdraw calldata */ function getWithdrawCalldata( ILendingPool _lendingPool, address _asset, uint256 _amountNotional, address _receiver ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "withdraw(address,uint256,address)", _asset, _amountNotional, _receiver ); return (address(_lendingPool), 0, callData); } /** * Invoke withdraw on LendingPool from SetToken * * Withdraws an `_amountNotional` of underlying asset from the reserve, burning the equivalent aTokens owned * - E.g. SetToken has 100 aUSDC, and receives 100 USDC, burning the 100 aUSDC * * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to withdraw * @param _amountNotional The underlying amount to be withdrawn * Note: Passing type(uint256).max will withdraw the entire aToken balance * * @return uint256 The final amount withdrawn */ function invokeWithdraw( ISetToken _setToken, ILendingPool _lendingPool, address _asset, uint256 _amountNotional ) external returns (uint256) { ( , , bytes memory withdrawCalldata) = getWithdrawCalldata( _lendingPool, _asset, _amountNotional, address(_setToken) ); return abi.decode(_setToken.invoke(address(_lendingPool), 0, withdrawCalldata), (uint256)); } /** * Get borrow calldata from SetToken * * Allows users to borrow a specific `_amountNotional` of the reserve underlying `_asset`, provided that * the borrower already deposited enough collateral, or he was given enough allowance by a credit delegator * on the corresponding debt token (StableDebtToken or VariableDebtToken) * * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to borrow * @param _amountNotional The amount to be borrowed * @param _interestRateMode The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable * @param _referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * @param _onBehalfOf Address of the user who will receive the debt. Should be the address of the borrower itself * calling the function if he wants to borrow against his own collateral, or the address of the * credit delegator if he has been given credit delegation allowance * * @return address Target contract address * @return uint256 Call value * @return bytes Borrow calldata */ function getBorrowCalldata( ILendingPool _lendingPool, address _asset, uint256 _amountNotional, uint256 _interestRateMode, uint16 _referralCode, address _onBehalfOf ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "borrow(address,uint256,uint256,uint16,address)", _asset, _amountNotional, _interestRateMode, _referralCode, _onBehalfOf ); return (address(_lendingPool), 0, callData); } /** * Invoke borrow on LendingPool from SetToken * * Allows SetToken to borrow a specific `_amountNotional` of the reserve underlying `_asset`, provided that * the SetToken already deposited enough collateral, or it was given enough allowance by a credit delegator * on the corresponding debt token (StableDebtToken or VariableDebtToken) * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset to borrow * @param _amountNotional The amount to be borrowed * @param _interestRateMode The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable */ function invokeBorrow( ISetToken _setToken, ILendingPool _lendingPool, address _asset, uint256 _amountNotional, uint256 _interestRateMode ) external { ( , , bytes memory borrowCalldata) = getBorrowCalldata( _lendingPool, _asset, _amountNotional, _interestRateMode, 0, address(_setToken) ); _setToken.invoke(address(_lendingPool), 0, borrowCalldata); } /** * Get repay calldata from SetToken * * Repays a borrowed `_amountNotional` on a specific `_asset` reserve, burning the equivalent debt tokens owned * - E.g. User repays 100 USDC, burning 100 variable/stable debt tokens of the `onBehalfOf` address * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the borrowed underlying asset previously borrowed * @param _amountNotional The amount to repay * Note: Passing type(uint256).max will repay the whole debt for `_asset` on the specific `_interestRateMode` * @param _interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @param _onBehalfOf Address of the user who will get his debt reduced/removed. Should be the address of the * user calling the function if he wants to reduce/remove his own debt, or the address of any other * other borrower whose debt should be removed * * @return address Target contract address * @return uint256 Call value * @return bytes Repay calldata */ function getRepayCalldata( ILendingPool _lendingPool, address _asset, uint256 _amountNotional, uint256 _interestRateMode, address _onBehalfOf ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "repay(address,uint256,uint256,address)", _asset, _amountNotional, _interestRateMode, _onBehalfOf ); return (address(_lendingPool), 0, callData); } /** * Invoke repay on LendingPool from SetToken * * Repays a borrowed `_amountNotional` on a specific `_asset` reserve, burning the equivalent debt tokens owned * - E.g. SetToken repays 100 USDC, burning 100 variable/stable debt tokens * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the borrowed underlying asset previously borrowed * @param _amountNotional The amount to repay * Note: Passing type(uint256).max will repay the whole debt for `_asset` on the specific `_interestRateMode` * @param _interestRateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * * @return uint256 The final amount repaid */ function invokeRepay( ISetToken _setToken, ILendingPool _lendingPool, address _asset, uint256 _amountNotional, uint256 _interestRateMode ) external returns (uint256) { ( , , bytes memory repayCalldata) = getRepayCalldata( _lendingPool, _asset, _amountNotional, _interestRateMode, address(_setToken) ); return abi.decode(_setToken.invoke(address(_lendingPool), 0, repayCalldata), (uint256)); } /** * Get setUserUseReserveAsCollateral calldata from SetToken * * Allows borrower to enable/disable a specific deposited asset as collateral * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset deposited * @param _useAsCollateral true` if the user wants to use the deposit as collateral, `false` otherwise * * @return address Target contract address * @return uint256 Call value * @return bytes SetUserUseReserveAsCollateral calldata */ function getSetUserUseReserveAsCollateralCalldata( ILendingPool _lendingPool, address _asset, bool _useAsCollateral ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "setUserUseReserveAsCollateral(address,bool)", _asset, _useAsCollateral ); return (address(_lendingPool), 0, callData); } /** * Invoke an asset to be used as collateral on Aave from SetToken * * Allows SetToken to enable/disable a specific deposited asset as collateral * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset deposited * @param _useAsCollateral true` if the user wants to use the deposit as collateral, `false` otherwise */ function invokeSetUserUseReserveAsCollateral( ISetToken _setToken, ILendingPool _lendingPool, address _asset, bool _useAsCollateral ) external { ( , , bytes memory callData) = getSetUserUseReserveAsCollateralCalldata( _lendingPool, _asset, _useAsCollateral ); _setToken.invoke(address(_lendingPool), 0, callData); } /** * Get swapBorrowRate calldata from SetToken * * Allows a borrower to toggle his debt between stable and variable mode * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset borrowed * @param _rateMode The rate mode that the user wants to swap to * * @return address Target contract address * @return uint256 Call value * @return bytes SwapBorrowRate calldata */ function getSwapBorrowRateModeCalldata( ILendingPool _lendingPool, address _asset, uint256 _rateMode ) public pure returns (address, uint256, bytes memory) { bytes memory callData = abi.encodeWithSignature( "swapBorrowRateMode(address,uint256)", _asset, _rateMode ); return (address(_lendingPool), 0, callData); } /** * Invoke to swap borrow rate of SetToken * * Allows SetToken to toggle it's debt between stable and variable mode * @param _setToken Address of the SetToken * @param _lendingPool Address of the LendingPool contract * @param _asset The address of the underlying asset borrowed * @param _rateMode The rate mode that the user wants to swap to */ function invokeSwapBorrowRateMode( ISetToken _setToken, ILendingPool _lendingPool, address _asset, uint256 _rateMode ) external { ( , , bytes memory callData) = getSwapBorrowRateModeCalldata( _lendingPool, _asset, _rateMode ); _setToken.invoke(address(_lendingPool), 0, callData); } }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IAToken is IERC20 { function UNDERLYING_ASSET_ADDRESS() external view returns (address); }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; interface IController { function addSet(address _setToken) external; function feeRecipient() external view returns(address); function getModuleFee(address _module, uint256 _feeType) external view returns(uint256); function isModule(address _module) external view returns(bool); function isSet(address _setToken) external view returns(bool); function isSystemContract(address _contractAddress) external view returns (bool); function resourceId(uint256 _id) external view returns(address); }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { ISetToken } from "./ISetToken.sol"; /** * @title IDebtIssuanceModule * @author Set Protocol * * Interface for interacting with Debt Issuance module interface. */ interface IDebtIssuanceModule { /** * Called by another module to register itself on debt issuance module. Any logic can be included * in case checks need to be made or state needs to be updated. */ function registerToIssuanceModule(ISetToken _setToken) external; /** * Called by another module to unregister itself on debt issuance module. Any logic can be included * in case checks need to be made or state needs to be cleared. */ function unregisterFromIssuanceModule(ISetToken _setToken) external; }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; interface IExchangeAdapter { function getSpender() external view returns(address); function getTradeCalldata( address _fromToken, address _toToken, address _toAddress, uint256 _fromQuantity, uint256 _minToQuantity, bytes memory _data ) external view returns (address, uint256, bytes memory); }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental ABIEncoderV2; import { ILendingPoolAddressesProvider } from "./ILendingPoolAddressesProvider.sol"; import { DataTypes } from "./lib/DataTypes.sol"; interface ILendingPool { /** * @dev Emitted on deposit() * @param reserve The address of the underlying asset of the reserve * @param user The address initiating the deposit * @param onBehalfOf The beneficiary of the deposit, receiving the aTokens * @param amount The amount deposited * @param referral The referral code used **/ event Deposit( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint16 indexed referral ); /** * @dev Emitted on withdraw() * @param reserve The address of the underlyng asset being withdrawn * @param user The address initiating the withdrawal, owner of aTokens * @param to Address that will receive the underlying * @param amount The amount to be withdrawn **/ event Withdraw(address indexed reserve, address indexed user, address indexed to, uint256 amount); /** * @dev Emitted on borrow() and flashLoan() when debt needs to be opened * @param reserve The address of the underlying asset being borrowed * @param user The address of the user initiating the borrow(), receiving the funds on borrow() or just * initiator of the transaction on flashLoan() * @param onBehalfOf The address that will be getting the debt * @param amount The amount borrowed out * @param borrowRateMode The rate mode: 1 for Stable, 2 for Variable * @param borrowRate The numeric rate at which the user has borrowed * @param referral The referral code used **/ event Borrow( address indexed reserve, address user, address indexed onBehalfOf, uint256 amount, uint256 borrowRateMode, uint256 borrowRate, uint16 indexed referral ); /** * @dev Emitted on repay() * @param reserve The address of the underlying asset of the reserve * @param user The beneficiary of the repayment, getting his debt reduced * @param repayer The address of the user initiating the repay(), providing the funds * @param amount The amount repaid **/ event Repay( address indexed reserve, address indexed user, address indexed repayer, uint256 amount ); /** * @dev Emitted on swapBorrowRateMode() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user swapping his rate mode * @param rateMode The rate mode that the user wants to swap to **/ event Swap(address indexed reserve, address indexed user, uint256 rateMode); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral **/ event ReserveUsedAsCollateralEnabled(address indexed reserve, address indexed user); /** * @dev Emitted on setUserUseReserveAsCollateral() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user enabling the usage as collateral **/ event ReserveUsedAsCollateralDisabled(address indexed reserve, address indexed user); /** * @dev Emitted on rebalanceStableBorrowRate() * @param reserve The address of the underlying asset of the reserve * @param user The address of the user for which the rebalance has been executed **/ event RebalanceStableBorrowRate(address indexed reserve, address indexed user); /** * @dev Emitted on flashLoan() * @param target The address of the flash loan receiver contract * @param initiator The address initiating the flash loan * @param asset The address of the asset being flash borrowed * @param amount The amount flash borrowed * @param premium The fee flash borrowed * @param referralCode The referral code used **/ event FlashLoan( address indexed target, address indexed initiator, address indexed asset, uint256 amount, uint256 premium, uint16 referralCode ); /** * @dev Emitted when the pause is triggered. */ event Paused(); /** * @dev Emitted when the pause is lifted. */ event Unpaused(); /** * @dev Emitted when a borrower is liquidated. This event is emitted by the LendingPool via * LendingPoolCollateral manager using a DELEGATECALL * This allows to have the events in the generated ABI for LendingPool. * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param liquidatedCollateralAmount The amount of collateral received by the liiquidator * @param liquidator The address of the liquidator * @param receiveAToken `true` if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly **/ event LiquidationCall( address indexed collateralAsset, address indexed debtAsset, address indexed user, uint256 debtToCover, uint256 liquidatedCollateralAmount, address liquidator, bool receiveAToken ); /** * @dev Emitted when the state of a reserve is updated. NOTE: This event is actually declared * in the ReserveLogic library and emitted in the updateInterestRates() function. Since the function is internal, * the event will actually be fired by the LendingPool contract. The event is therefore replicated here so it * gets added to the LendingPool ABI * @param reserve The address of the underlying asset of the reserve * @param liquidityRate The new liquidity rate * @param stableBorrowRate The new stable borrow rate * @param variableBorrowRate The new variable borrow rate * @param liquidityIndex The new liquidity index * @param variableBorrowIndex The new variable borrow index **/ event ReserveDataUpdated( address indexed reserve, uint256 liquidityRate, uint256 stableBorrowRate, uint256 variableBorrowRate, uint256 liquidityIndex, uint256 variableBorrowIndex ); /** * @dev Deposits an `amount` of underlying asset into the reserve, receiving in return overlying aTokens. * - E.g. User deposits 100 USDC and gets in return 100 aUSDC * @param asset The address of the underlying asset to deposit * @param amount The amount to be deposited * @param onBehalfOf The address that will receive the aTokens, same as msg.sender if the user * wants to receive them on his own wallet, or a different address if the beneficiary of aTokens * is a different wallet * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man **/ function deposit( address asset, uint256 amount, address onBehalfOf, uint16 referralCode ) external; /** * @dev Withdraws an `amount` of underlying asset from the reserve, burning the equivalent aTokens owned * E.g. User has 100 aUSDC, calls withdraw() and receives 100 USDC, burning the 100 aUSDC * @param asset The address of the underlying asset to withdraw * @param amount The underlying amount to be withdrawn * - Send the value type(uint256).max in order to withdraw the whole aToken balance * @param to Address that will receive the underlying, same as msg.sender if the user * wants to receive it on his own wallet, or a different address if the beneficiary is a * different wallet * @return The final amount withdrawn **/ function withdraw( address asset, uint256 amount, address to ) external returns (uint256); /** * @dev Allows users to borrow a specific `amount` of the reserve underlying asset, provided that the borrower * already deposited enough collateral, or he was given enough allowance by a credit delegator on the * corresponding debt token (StableDebtToken or VariableDebtToken) * - E.g. User borrows 100 USDC passing as `onBehalfOf` his own address, receiving the 100 USDC in his wallet * and 100 stable/variable debt tokens, depending on the `interestRateMode` * @param asset The address of the underlying asset to borrow * @param amount The amount to be borrowed * @param interestRateMode The interest rate mode at which the user wants to borrow: 1 for Stable, 2 for Variable * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man * @param onBehalfOf Address of the user who will receive the debt. Should be the address of the borrower itself * calling the function if he wants to borrow against his own collateral, or the address of the credit delegator * if he has been given credit delegation allowance **/ function borrow( address asset, uint256 amount, uint256 interestRateMode, uint16 referralCode, address onBehalfOf ) external; /** * @notice Repays a borrowed `amount` on a specific reserve, burning the equivalent debt tokens owned * - E.g. User repays 100 USDC, burning 100 variable/stable debt tokens of the `onBehalfOf` address * @param asset The address of the borrowed underlying asset previously borrowed * @param amount The amount to repay * - Send the value type(uint256).max in order to repay the whole debt for `asset` on the specific `debtMode` * @param rateMode The interest rate mode at of the debt the user wants to repay: 1 for Stable, 2 for Variable * @param onBehalfOf Address of the user who will get his debt reduced/removed. Should be the address of the * user calling the function if he wants to reduce/remove his own debt, or the address of any other * other borrower whose debt should be removed * @return The final amount repaid **/ function repay( address asset, uint256 amount, uint256 rateMode, address onBehalfOf ) external returns (uint256); /** * @dev Allows a borrower to swap his debt between stable and variable mode, or viceversa * @param asset The address of the underlying asset borrowed * @param rateMode The rate mode that the user wants to swap to **/ function swapBorrowRateMode(address asset, uint256 rateMode) external; /** * @dev Rebalances the stable interest rate of a user to the current stable rate defined on the reserve. * - Users can be rebalanced if the following conditions are satisfied: * 1. Usage ratio is above 95% * 2. the current deposit APY is below REBALANCE_UP_THRESHOLD * maxVariableBorrowRate, which means that too much has been * borrowed at a stable rate and depositors are not earning enough * @param asset The address of the underlying asset borrowed * @param user The address of the user to be rebalanced **/ function rebalanceStableBorrowRate(address asset, address user) external; /** * @dev Allows depositors to enable/disable a specific deposited asset as collateral * @param asset The address of the underlying asset deposited * @param useAsCollateral `true` if the user wants to use the deposit as collateral, `false` otherwise **/ function setUserUseReserveAsCollateral(address asset, bool useAsCollateral) external; /** * @dev Function to liquidate a non-healthy position collateral-wise, with Health Factor below 1 * - The caller (liquidator) covers `debtToCover` amount of debt of the user getting liquidated, and receives * a proportionally amount of the `collateralAsset` plus a bonus to cover market risk * @param collateralAsset The address of the underlying asset used as collateral, to receive as result of the liquidation * @param debtAsset The address of the underlying borrowed asset to be repaid with the liquidation * @param user The address of the borrower getting liquidated * @param debtToCover The debt amount of borrowed `asset` the liquidator wants to cover * @param receiveAToken `true` if the liquidators wants to receive the collateral aTokens, `false` if he wants * to receive the underlying collateral asset directly **/ function liquidationCall( address collateralAsset, address debtAsset, address user, uint256 debtToCover, bool receiveAToken ) external; /** * @dev Allows smartcontracts to access the liquidity of the pool within one transaction, * as long as the amount taken plus a fee is returned. * IMPORTANT There are security concerns for developers of flashloan receiver contracts that must be kept into consideration. * For further details please visit https://developers.aave.com * @param receiverAddress The address of the contract receiving the funds, implementing the IFlashLoanReceiver interface * @param assets The addresses of the assets being flash-borrowed * @param amounts The amounts amounts being flash-borrowed * @param modes Types of the debt to open if the flash loan is not returned: * 0 -> Don't open any debt, just revert if funds can't be transferred from the receiver * 1 -> Open debt at stable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * 2 -> Open debt at variable rate for the value of the amount flash-borrowed to the `onBehalfOf` address * @param onBehalfOf The address that will receive the debt in the case of using on `modes` 1 or 2 * @param params Variadic packed params to pass to the receiver as extra information * @param referralCode Code used to register the integrator originating the operation, for potential rewards. * 0 if the action is executed directly by the user, without any middle-man **/ function flashLoan( address receiverAddress, address[] calldata assets, uint256[] calldata amounts, uint256[] calldata modes, address onBehalfOf, bytes calldata params, uint16 referralCode ) external; /** * @dev Returns the user account data across all the reserves * @param user The address of the user * @return totalCollateralETH the total collateral in ETH of the user * @return totalDebtETH the total debt in ETH of the user * @return availableBorrowsETH the borrowing power left of the user * @return currentLiquidationThreshold the liquidation threshold of the user * @return ltv the loan to value of the user * @return healthFactor the current health factor of the user **/ function getUserAccountData(address user) external view returns ( uint256 totalCollateralETH, uint256 totalDebtETH, uint256 availableBorrowsETH, uint256 currentLiquidationThreshold, uint256 ltv, uint256 healthFactor ); function initReserve( address reserve, address aTokenAddress, address stableDebtAddress, address variableDebtAddress, address interestRateStrategyAddress ) external; function setReserveInterestRateStrategyAddress(address reserve, address rateStrategyAddress) external; function setConfiguration(address reserve, uint256 configuration) external; /** * @dev Returns the configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The configuration of the reserve **/ function getConfiguration(address asset) external view returns (DataTypes.ReserveConfigurationMap memory); /** * @dev Returns the configuration of the user across all the reserves * @param user The user address * @return The configuration of the user **/ function getUserConfiguration(address user) external view returns (DataTypes.UserConfigurationMap memory); /** * @dev Returns the normalized income normalized income of the reserve * @param asset The address of the underlying asset of the reserve * @return The reserve's normalized income */ function getReserveNormalizedIncome(address asset) external view returns (uint256); /** * @dev Returns the normalized variable debt per unit of asset * @param asset The address of the underlying asset of the reserve * @return The reserve normalized variable debt */ function getReserveNormalizedVariableDebt(address asset) external view returns (uint256); /** * @dev Returns the state and configuration of the reserve * @param asset The address of the underlying asset of the reserve * @return The state of the reserve **/ function getReserveData(address asset) external view returns (DataTypes.ReserveData memory); function finalizeTransfer( address asset, address from, address to, uint256 amount, uint256 balanceFromAfter, uint256 balanceToBefore ) external; function getReservesList() external view returns (address[] memory); function getAddressesProvider() external view returns (ILendingPoolAddressesProvider); function setPause(bool val) external; function paused() external view returns (bool); }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; /** * @title LendingPoolAddressesProvider contract * @dev Main registry of addresses part of or connected to the protocol, including permissioned roles * - Acting also as factory of proxies and admin of those, so with right to change its implementations * - Owned by the Aave Governance * @author Aave **/ interface ILendingPoolAddressesProvider { event MarketIdSet(string newMarketId); event LendingPoolUpdated(address indexed newAddress); event ConfigurationAdminUpdated(address indexed newAddress); event EmergencyAdminUpdated(address indexed newAddress); event LendingPoolConfiguratorUpdated(address indexed newAddress); event LendingPoolCollateralManagerUpdated(address indexed newAddress); event PriceOracleUpdated(address indexed newAddress); event LendingRateOracleUpdated(address indexed newAddress); event ProxyCreated(bytes32 id, address indexed newAddress); event AddressSet(bytes32 id, address indexed newAddress, bool hasProxy); function getMarketId() external view returns (string memory); function setMarketId(string calldata marketId) external; function setAddress(bytes32 id, address newAddress) external; function setAddressAsProxy(bytes32 id, address impl) external; function getAddress(bytes32 id) external view returns (address); function getLendingPool() external view returns (address); function setLendingPoolImpl(address pool) external; function getLendingPoolConfigurator() external view returns (address); function setLendingPoolConfiguratorImpl(address configurator) external; function getLendingPoolCollateralManager() external view returns (address); function setLendingPoolCollateralManager(address manager) external; function getPoolAdmin() external view returns (address); function setPoolAdmin(address admin) external; function getEmergencyAdmin() external view returns (address); function setEmergencyAdmin(address admin) external; function getPriceOracle() external view returns (address); function setPriceOracle(address priceOracle) external; function getLendingRateOracle() external view returns (address); function setLendingRateOracle(address lendingRateOracle) external; }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { ISetToken } from "./ISetToken.sol"; /** * CHANGELOG: * - Added a module level issue hook that can be used to set state ahead of component level * issue hooks */ interface IModuleIssuanceHook { function moduleIssueHook(ISetToken _setToken, uint256 _setTokenQuantity) external; function moduleRedeemHook(ISetToken _setToken, uint256 _setTokenQuantity) external; function componentIssueHook( ISetToken _setToken, uint256 _setTokenQuantity, IERC20 _component, bool _isEquity ) external; function componentRedeemHook( ISetToken _setToken, uint256 _setTokenQuantity, IERC20 _component, bool _isEquity ) external; }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental ABIEncoderV2; import { ILendingPoolAddressesProvider } from "./ILendingPoolAddressesProvider.sol"; interface IProtocolDataProvider { struct TokenData { string symbol; address tokenAddress; } function ADDRESSES_PROVIDER() external view returns (ILendingPoolAddressesProvider); function getAllReservesTokens() external view returns (TokenData[] memory); function getAllATokens() external view returns (TokenData[] memory); function getReserveConfigurationData(address asset) external view returns (uint256 decimals, uint256 ltv, uint256 liquidationThreshold, uint256 liquidationBonus, uint256 reserveFactor, bool usageAsCollateralEnabled, bool borrowingEnabled, bool stableBorrowRateEnabled, bool isActive, bool isFrozen); function getReserveData(address asset) external view returns (uint256 availableLiquidity, uint256 totalStableDebt, uint256 totalVariableDebt, uint256 liquidityRate, uint256 variableBorrowRate, uint256 stableBorrowRate, uint256 averageStableBorrowRate, uint256 liquidityIndex, uint256 variableBorrowIndex, uint40 lastUpdateTimestamp); function getUserReserveData(address asset, address user) external view returns (uint256 currentATokenBalance, uint256 currentStableDebt, uint256 currentVariableDebt, uint256 principalStableDebt, uint256 scaledVariableDebt, uint256 stableBorrowRate, uint256 liquidityRate, uint40 stableRateLastUpdated, bool usageAsCollateralEnabled); function getReserveTokensAddresses(address asset) external view returns (address aTokenAddress, address stableDebtTokenAddress, address variableDebtTokenAddress); }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental "ABIEncoderV2"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title ISetToken * @author Set Protocol * * Interface for operating with SetTokens. */ interface ISetToken is IERC20 { /* ============ Enums ============ */ enum ModuleState { NONE, PENDING, INITIALIZED } /* ============ Structs ============ */ /** * The base definition of a SetToken Position * * @param component Address of token in the Position * @param module If not in default state, the address of associated module * @param unit Each unit is the # of components per 10^18 of a SetToken * @param positionState Position ENUM. Default is 0; External is 1 * @param data Arbitrary data */ struct Position { address component; address module; int256 unit; uint8 positionState; bytes data; } /** * A struct that stores a component's cash position details and external positions * This data structure allows O(1) access to a component's cash position units and * virtual units. * * @param virtualUnit Virtual value of a component's DEFAULT position. Stored as virtual for efficiency * updating all units at once via the position multiplier. Virtual units are achieved * by dividing a "real" value by the "positionMultiplier" * @param componentIndex * @param externalPositionModules List of external modules attached to each external position. Each module * maps to an external position * @param externalPositions Mapping of module => ExternalPosition struct for a given component */ struct ComponentPosition { int256 virtualUnit; address[] externalPositionModules; mapping(address => ExternalPosition) externalPositions; } /** * A struct that stores a component's external position details including virtual unit and any * auxiliary data. * * @param virtualUnit Virtual value of a component's EXTERNAL position. * @param data Arbitrary data */ struct ExternalPosition { int256 virtualUnit; bytes data; } /* ============ Functions ============ */ function addComponent(address _component) external; function removeComponent(address _component) external; function editDefaultPositionUnit(address _component, int256 _realUnit) external; function addExternalPositionModule(address _component, address _positionModule) external; function removeExternalPositionModule(address _component, address _positionModule) external; function editExternalPositionUnit(address _component, address _positionModule, int256 _realUnit) external; function editExternalPositionData(address _component, address _positionModule, bytes calldata _data) external; function invoke(address _target, uint256 _value, bytes calldata _data) external returns(bytes memory); function editPositionMultiplier(int256 _newMultiplier) external; function mint(address _account, uint256 _quantity) external; function burn(address _account, uint256 _quantity) external; function lock() external; function unlock() external; function addModule(address _module) external; function removeModule(address _module) external; function initializeModule() external; function setManager(address _manager) external; function manager() external view returns (address); function moduleStates(address _module) external view returns (ModuleState); function getModules() external view returns (address[] memory); function getDefaultPositionRealUnit(address _component) external view returns(int256); function getExternalPositionRealUnit(address _component, address _positionModule) external view returns(int256); function getComponents() external view returns(address[] memory); function getExternalPositionModules(address _component) external view returns(address[] memory); function getExternalPositionData(address _component, address _positionModule) external view returns(bytes memory); function isExternalPositionModule(address _component, address _module) external view returns(bool); function isComponent(address _component) external view returns(bool); function positionMultiplier() external view returns (int256); function getPositions() external view returns (Position[] memory); function getTotalComponentRealUnits(address _component) external view returns(int256); function isInitializedModule(address _module) external view returns(bool); function isPendingModule(address _module) external view returns(bool); function isLocked() external view returns (bool); }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title IVariableDebtToken * @author Aave * @notice Defines the basic interface for a variable debt token. **/ interface IVariableDebtToken is IERC20 {}
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { AddressArrayUtils } from "../../lib/AddressArrayUtils.sol"; import { ExplicitERC20 } from "../../lib/ExplicitERC20.sol"; import { IController } from "../../interfaces/IController.sol"; import { IModule } from "../../interfaces/IModule.sol"; import { ISetToken } from "../../interfaces/ISetToken.sol"; import { Invoke } from "./Invoke.sol"; import { Position } from "./Position.sol"; import { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol"; import { ResourceIdentifier } from "./ResourceIdentifier.sol"; import { SafeCast } from "@openzeppelin/contracts/utils/SafeCast.sol"; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol"; /** * @title ModuleBase * @author Set Protocol * * Abstract class that houses common Module-related state and functions. * * CHANGELOG: * - 4/21/21: Delegated modifier logic to internal helpers to reduce contract size * */ abstract contract ModuleBase is IModule { using AddressArrayUtils for address[]; using Invoke for ISetToken; using Position for ISetToken; using PreciseUnitMath for uint256; using ResourceIdentifier for IController; using SafeCast for int256; using SafeCast for uint256; using SafeMath for uint256; using SignedSafeMath for int256; /* ============ State Variables ============ */ // Address of the controller IController public controller; /* ============ Modifiers ============ */ modifier onlyManagerAndValidSet(ISetToken _setToken) { _validateOnlyManagerAndValidSet(_setToken); _; } modifier onlySetManager(ISetToken _setToken, address _caller) { _validateOnlySetManager(_setToken, _caller); _; } modifier onlyValidAndInitializedSet(ISetToken _setToken) { _validateOnlyValidAndInitializedSet(_setToken); _; } /** * Throws if the sender is not a SetToken's module or module not enabled */ modifier onlyModule(ISetToken _setToken) { _validateOnlyModule(_setToken); _; } /** * Utilized during module initializations to check that the module is in pending state * and that the SetToken is valid */ modifier onlyValidAndPendingSet(ISetToken _setToken) { _validateOnlyValidAndPendingSet(_setToken); _; } /* ============ Constructor ============ */ /** * Set state variables and map asset pairs to their oracles * * @param _controller Address of controller contract */ constructor(IController _controller) public { controller = _controller; } /* ============ Internal Functions ============ */ /** * Transfers tokens from an address (that has set allowance on the module). * * @param _token The address of the ERC20 token * @param _from The address to transfer from * @param _to The address to transfer to * @param _quantity The number of tokens to transfer */ function transferFrom(IERC20 _token, address _from, address _to, uint256 _quantity) internal { ExplicitERC20.transferFrom(_token, _from, _to, _quantity); } /** * Gets the integration for the module with the passed in name. Validates that the address is not empty */ function getAndValidateAdapter(string memory _integrationName) internal view returns(address) { bytes32 integrationHash = getNameHash(_integrationName); return getAndValidateAdapterWithHash(integrationHash); } /** * Gets the integration for the module with the passed in hash. Validates that the address is not empty */ function getAndValidateAdapterWithHash(bytes32 _integrationHash) internal view returns(address) { address adapter = controller.getIntegrationRegistry().getIntegrationAdapterWithHash( address(this), _integrationHash ); require(adapter != address(0), "Must be valid adapter"); return adapter; } /** * Gets the total fee for this module of the passed in index (fee % * quantity) */ function getModuleFee(uint256 _feeIndex, uint256 _quantity) internal view returns(uint256) { uint256 feePercentage = controller.getModuleFee(address(this), _feeIndex); return _quantity.preciseMul(feePercentage); } /** * Pays the _feeQuantity from the _setToken denominated in _token to the protocol fee recipient */ function payProtocolFeeFromSetToken(ISetToken _setToken, address _token, uint256 _feeQuantity) internal { if (_feeQuantity > 0) { _setToken.strictInvokeTransfer(_token, controller.feeRecipient(), _feeQuantity); } } /** * Returns true if the module is in process of initialization on the SetToken */ function isSetPendingInitialization(ISetToken _setToken) internal view returns(bool) { return _setToken.isPendingModule(address(this)); } /** * Returns true if the address is the SetToken's manager */ function isSetManager(ISetToken _setToken, address _toCheck) internal view returns(bool) { return _setToken.manager() == _toCheck; } /** * Returns true if SetToken must be enabled on the controller * and module is registered on the SetToken */ function isSetValidAndInitialized(ISetToken _setToken) internal view returns(bool) { return controller.isSet(address(_setToken)) && _setToken.isInitializedModule(address(this)); } /** * Hashes the string and returns a bytes32 value */ function getNameHash(string memory _name) internal pure returns(bytes32) { return keccak256(bytes(_name)); } /* ============== Modifier Helpers =============== * Internal functions used to reduce bytecode size */ /** * Caller must SetToken manager and SetToken must be valid and initialized */ function _validateOnlyManagerAndValidSet(ISetToken _setToken) internal view { require(isSetManager(_setToken, msg.sender), "Must be the SetToken manager"); require(isSetValidAndInitialized(_setToken), "Must be a valid and initialized SetToken"); } /** * Caller must SetToken manager */ function _validateOnlySetManager(ISetToken _setToken, address _caller) internal view { require(isSetManager(_setToken, _caller), "Must be the SetToken manager"); } /** * SetToken must be valid and initialized */ function _validateOnlyValidAndInitializedSet(ISetToken _setToken) internal view { require(isSetValidAndInitialized(_setToken), "Must be a valid and initialized SetToken"); } /** * Caller must be initialized module and module must be enabled on the controller */ function _validateOnlyModule(ISetToken _setToken) internal view { require( _setToken.moduleStates(msg.sender) == ISetToken.ModuleState.INITIALIZED, "Only the module can call" ); require( controller.isModule(msg.sender), "Module must be enabled on controller" ); } /** * SetToken must be in a pending state and module must be in pending state */ function _validateOnlyValidAndPendingSet(ISetToken _setToken) internal view { require(controller.isSet(address(_setToken)), "Must be controller-enabled SetToken"); require(isSetPendingInitialization(_setToken), "Must be pending initialization"); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
/* Copyright 2021 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; library DataTypes { // refer to the whitepaper, section 1.1 basic concepts for a formal description of these properties. struct ReserveData { //stores the reserve configuration ReserveConfigurationMap configuration; //the liquidity index. Expressed in ray uint128 liquidityIndex; //variable borrow index. Expressed in ray uint128 variableBorrowIndex; //the current supply rate. Expressed in ray uint128 currentLiquidityRate; //the current variable borrow rate. Expressed in ray uint128 currentVariableBorrowRate; //the current stable borrow rate. Expressed in ray uint128 currentStableBorrowRate; uint40 lastUpdateTimestamp; //tokens addresses address aTokenAddress; address stableDebtTokenAddress; address variableDebtTokenAddress; //address of the interest rate strategy address interestRateStrategyAddress; //the id of the reserve. Represents the position in the list of the active reserves uint8 id; } struct ReserveConfigurationMap { //bit 0-15: LTV //bit 16-31: Liq. threshold //bit 32-47: Liq. bonus //bit 48-55: Decimals //bit 56: Reserve is active //bit 57: reserve is frozen //bit 58: borrowing is enabled //bit 59: stable rate borrowing enabled //bit 60-63: reserved //bit 64-79: reserve factor uint256 data; } struct UserConfigurationMap { uint256 data; } enum InterestRateMode {NONE, STABLE, VARIABLE} }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; /** * @title AddressArrayUtils * @author Set Protocol * * Utility functions to handle Address Arrays * * CHANGELOG: * - 4/21/21: Added validatePairsWithArray methods */ library AddressArrayUtils { /** * Finds the index of the first occurrence of the given element. * @param A The input array to search * @param a The value to find * @return Returns (index and isIn) for the first occurrence starting from index 0 */ function indexOf(address[] memory A, address a) internal pure returns (uint256, bool) { uint256 length = A.length; for (uint256 i = 0; i < length; i++) { if (A[i] == a) { return (i, true); } } return (uint256(-1), false); } /** * Returns true if the value is present in the list. Uses indexOf internally. * @param A The input array to search * @param a The value to find * @return Returns isIn for the first occurrence starting from index 0 */ function contains(address[] memory A, address a) internal pure returns (bool) { (, bool isIn) = indexOf(A, a); return isIn; } /** * Returns true if there are 2 elements that are the same in an array * @param A The input array to search * @return Returns boolean for the first occurrence of a duplicate */ function hasDuplicate(address[] memory A) internal pure returns(bool) { require(A.length > 0, "A is empty"); for (uint256 i = 0; i < A.length - 1; i++) { address current = A[i]; for (uint256 j = i + 1; j < A.length; j++) { if (current == A[j]) { return true; } } } return false; } /** * @param A The input array to search * @param a The address to remove * @return Returns the array with the object removed. */ function remove(address[] memory A, address a) internal pure returns (address[] memory) { (uint256 index, bool isIn) = indexOf(A, a); if (!isIn) { revert("Address not in array."); } else { (address[] memory _A,) = pop(A, index); return _A; } } /** * @param A The input array to search * @param a The address to remove */ function removeStorage(address[] storage A, address a) internal { (uint256 index, bool isIn) = indexOf(A, a); if (!isIn) { revert("Address not in array."); } else { uint256 lastIndex = A.length - 1; // If the array would be empty, the previous line would throw, so no underflow here if (index != lastIndex) { A[index] = A[lastIndex]; } A.pop(); } } /** * Removes specified index from array * @param A The input array to search * @param index The index to remove * @return Returns the new array and the removed entry */ function pop(address[] memory A, uint256 index) internal pure returns (address[] memory, address) { uint256 length = A.length; require(index < A.length, "Index must be < A length"); address[] memory newAddresses = new address[](length - 1); for (uint256 i = 0; i < index; i++) { newAddresses[i] = A[i]; } for (uint256 j = index + 1; j < length; j++) { newAddresses[j - 1] = A[j]; } return (newAddresses, A[index]); } /** * Returns the combination of the two arrays * @param A The first array * @param B The second array * @return Returns A extended by B */ function extend(address[] memory A, address[] memory B) internal pure returns (address[] memory) { uint256 aLength = A.length; uint256 bLength = B.length; address[] memory newAddresses = new address[](aLength + bLength); for (uint256 i = 0; i < aLength; i++) { newAddresses[i] = A[i]; } for (uint256 j = 0; j < bLength; j++) { newAddresses[aLength + j] = B[j]; } return newAddresses; } /** * Validate that address and uint array lengths match. Validate address array is not empty * and contains no duplicate elements. * * @param A Array of addresses * @param B Array of uint */ function validatePairsWithArray(address[] memory A, uint[] memory B) internal pure { require(A.length == B.length, "Array length mismatch"); _validateLengthAndUniqueness(A); } /** * Validate that address and bool array lengths match. Validate address array is not empty * and contains no duplicate elements. * * @param A Array of addresses * @param B Array of bool */ function validatePairsWithArray(address[] memory A, bool[] memory B) internal pure { require(A.length == B.length, "Array length mismatch"); _validateLengthAndUniqueness(A); } /** * Validate that address and string array lengths match. Validate address array is not empty * and contains no duplicate elements. * * @param A Array of addresses * @param B Array of strings */ function validatePairsWithArray(address[] memory A, string[] memory B) internal pure { require(A.length == B.length, "Array length mismatch"); _validateLengthAndUniqueness(A); } /** * Validate that address array lengths match, and calling address array are not empty * and contain no duplicate elements. * * @param A Array of addresses * @param B Array of addresses */ function validatePairsWithArray(address[] memory A, address[] memory B) internal pure { require(A.length == B.length, "Array length mismatch"); _validateLengthAndUniqueness(A); } /** * Validate that address and bytes array lengths match. Validate address array is not empty * and contains no duplicate elements. * * @param A Array of addresses * @param B Array of bytes */ function validatePairsWithArray(address[] memory A, bytes[] memory B) internal pure { require(A.length == B.length, "Array length mismatch"); _validateLengthAndUniqueness(A); } /** * Validate address array is not empty and contains no duplicate elements. * * @param A Array of addresses */ function _validateLengthAndUniqueness(address[] memory A) internal pure { require(A.length > 0, "Array length must be > 0"); require(!hasDuplicate(A), "Cannot duplicate addresses"); } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeERC20 } from "@openzeppelin/contracts/token/ERC20/SafeERC20.sol"; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; /** * @title ExplicitERC20 * @author Set Protocol * * Utility functions for ERC20 transfers that require the explicit amount to be transferred. */ library ExplicitERC20 { using SafeMath for uint256; /** * When given allowance, transfers a token from the "_from" to the "_to" of quantity "_quantity". * Ensures that the recipient has received the correct quantity (ie no fees taken on transfer) * * @param _token ERC20 token to approve * @param _from The account to transfer tokens from * @param _to The account to transfer tokens to * @param _quantity The quantity to transfer */ function transferFrom( IERC20 _token, address _from, address _to, uint256 _quantity ) internal { // Call specified ERC20 contract to transfer tokens (via proxy). if (_quantity > 0) { uint256 existingBalance = _token.balanceOf(_to); SafeERC20.safeTransferFrom( _token, _from, _to, _quantity ); uint256 newBalance = _token.balanceOf(_to); // Verify transfer quantity is reflected in balance require( newBalance == existingBalance.add(_quantity), "Invalid post transfer balance" ); } } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; /** * @title IModule * @author Set Protocol * * Interface for interacting with Modules. */ interface IModule { /** * Called by a SetToken to notify that this module was removed from the Set token. Any logic can be included * in case checks need to be made or state needs to be cleared. */ function removeModule() external; }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { ISetToken } from "../../interfaces/ISetToken.sol"; /** * @title Invoke * @author Set Protocol * * A collection of common utility functions for interacting with the SetToken's invoke function */ library Invoke { using SafeMath for uint256; /* ============ Internal ============ */ /** * Instructs the SetToken to set approvals of the ERC20 token to a spender. * * @param _setToken SetToken instance to invoke * @param _token ERC20 token to approve * @param _spender The account allowed to spend the SetToken's balance * @param _quantity The quantity of allowance to allow */ function invokeApprove( ISetToken _setToken, address _token, address _spender, uint256 _quantity ) internal { bytes memory callData = abi.encodeWithSignature("approve(address,uint256)", _spender, _quantity); _setToken.invoke(_token, 0, callData); } /** * Instructs the SetToken to transfer the ERC20 token to a recipient. * * @param _setToken SetToken instance to invoke * @param _token ERC20 token to transfer * @param _to The recipient account * @param _quantity The quantity to transfer */ function invokeTransfer( ISetToken _setToken, address _token, address _to, uint256 _quantity ) internal { if (_quantity > 0) { bytes memory callData = abi.encodeWithSignature("transfer(address,uint256)", _to, _quantity); _setToken.invoke(_token, 0, callData); } } /** * Instructs the SetToken to transfer the ERC20 token to a recipient. * The new SetToken balance must equal the existing balance less the quantity transferred * * @param _setToken SetToken instance to invoke * @param _token ERC20 token to transfer * @param _to The recipient account * @param _quantity The quantity to transfer */ function strictInvokeTransfer( ISetToken _setToken, address _token, address _to, uint256 _quantity ) internal { if (_quantity > 0) { // Retrieve current balance of token for the SetToken uint256 existingBalance = IERC20(_token).balanceOf(address(_setToken)); Invoke.invokeTransfer(_setToken, _token, _to, _quantity); // Get new balance of transferred token for SetToken uint256 newBalance = IERC20(_token).balanceOf(address(_setToken)); // Verify only the transfer quantity is subtracted require( newBalance == existingBalance.sub(_quantity), "Invalid post transfer balance" ); } } /** * Instructs the SetToken to unwrap the passed quantity of WETH * * @param _setToken SetToken instance to invoke * @param _weth WETH address * @param _quantity The quantity to unwrap */ function invokeUnwrapWETH(ISetToken _setToken, address _weth, uint256 _quantity) internal { bytes memory callData = abi.encodeWithSignature("withdraw(uint256)", _quantity); _setToken.invoke(_weth, 0, callData); } /** * Instructs the SetToken to wrap the passed quantity of ETH * * @param _setToken SetToken instance to invoke * @param _weth WETH address * @param _quantity The quantity to unwrap */ function invokeWrapWETH(ISetToken _setToken, address _weth, uint256 _quantity) internal { bytes memory callData = abi.encodeWithSignature("deposit()"); _setToken.invoke(_weth, _quantity, callData); } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental "ABIEncoderV2"; import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import { SafeCast } from "@openzeppelin/contracts/utils/SafeCast.sol"; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol"; import { ISetToken } from "../../interfaces/ISetToken.sol"; import { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol"; /** * @title Position * @author Set Protocol * * Collection of helper functions for handling and updating SetToken Positions * * CHANGELOG: * - Updated editExternalPosition to work when no external position is associated with module */ library Position { using SafeCast for uint256; using SafeMath for uint256; using SafeCast for int256; using SignedSafeMath for int256; using PreciseUnitMath for uint256; /* ============ Helper ============ */ /** * Returns whether the SetToken has a default position for a given component (if the real unit is > 0) */ function hasDefaultPosition(ISetToken _setToken, address _component) internal view returns(bool) { return _setToken.getDefaultPositionRealUnit(_component) > 0; } /** * Returns whether the SetToken has an external position for a given component (if # of position modules is > 0) */ function hasExternalPosition(ISetToken _setToken, address _component) internal view returns(bool) { return _setToken.getExternalPositionModules(_component).length > 0; } /** * Returns whether the SetToken component default position real unit is greater than or equal to units passed in. */ function hasSufficientDefaultUnits(ISetToken _setToken, address _component, uint256 _unit) internal view returns(bool) { return _setToken.getDefaultPositionRealUnit(_component) >= _unit.toInt256(); } /** * Returns whether the SetToken component external position is greater than or equal to the real units passed in. */ function hasSufficientExternalUnits( ISetToken _setToken, address _component, address _positionModule, uint256 _unit ) internal view returns(bool) { return _setToken.getExternalPositionRealUnit(_component, _positionModule) >= _unit.toInt256(); } /** * If the position does not exist, create a new Position and add to the SetToken. If it already exists, * then set the position units. If the new units is 0, remove the position. Handles adding/removing of * components where needed (in light of potential external positions). * * @param _setToken Address of SetToken being modified * @param _component Address of the component * @param _newUnit Quantity of Position units - must be >= 0 */ function editDefaultPosition(ISetToken _setToken, address _component, uint256 _newUnit) internal { bool isPositionFound = hasDefaultPosition(_setToken, _component); if (!isPositionFound && _newUnit > 0) { // If there is no Default Position and no External Modules, then component does not exist if (!hasExternalPosition(_setToken, _component)) { _setToken.addComponent(_component); } } else if (isPositionFound && _newUnit == 0) { // If there is a Default Position and no external positions, remove the component if (!hasExternalPosition(_setToken, _component)) { _setToken.removeComponent(_component); } } _setToken.editDefaultPositionUnit(_component, _newUnit.toInt256()); } /** * Update an external position and remove and external positions or components if necessary. The logic flows as follows: * 1) If component is not already added then add component and external position. * 2) If component is added but no existing external position using the passed module exists then add the external position. * 3) If the existing position is being added to then just update the unit and data * 4) If the position is being closed and no other external positions or default positions are associated with the component * then untrack the component and remove external position. * 5) If the position is being closed and other existing positions still exist for the component then just remove the * external position. * * @param _setToken SetToken being updated * @param _component Component position being updated * @param _module Module external position is associated with * @param _newUnit Position units of new external position * @param _data Arbitrary data associated with the position */ function editExternalPosition( ISetToken _setToken, address _component, address _module, int256 _newUnit, bytes memory _data ) internal { if (_newUnit != 0) { if (!_setToken.isComponent(_component)) { _setToken.addComponent(_component); _setToken.addExternalPositionModule(_component, _module); } else if (!_setToken.isExternalPositionModule(_component, _module)) { _setToken.addExternalPositionModule(_component, _module); } _setToken.editExternalPositionUnit(_component, _module, _newUnit); _setToken.editExternalPositionData(_component, _module, _data); } else { require(_data.length == 0, "Passed data must be null"); // If no default or external position remaining then remove component from components array if (_setToken.getExternalPositionRealUnit(_component, _module) != 0) { address[] memory positionModules = _setToken.getExternalPositionModules(_component); if (_setToken.getDefaultPositionRealUnit(_component) == 0 && positionModules.length == 1) { require(positionModules[0] == _module, "External positions must be 0 to remove component"); _setToken.removeComponent(_component); } _setToken.removeExternalPositionModule(_component, _module); } } } /** * Get total notional amount of Default position * * @param _setTokenSupply Supply of SetToken in precise units (10^18) * @param _positionUnit Quantity of Position units * * @return Total notional amount of units */ function getDefaultTotalNotional(uint256 _setTokenSupply, uint256 _positionUnit) internal pure returns (uint256) { return _setTokenSupply.preciseMul(_positionUnit); } /** * Get position unit from total notional amount * * @param _setTokenSupply Supply of SetToken in precise units (10^18) * @param _totalNotional Total notional amount of component prior to * @return Default position unit */ function getDefaultPositionUnit(uint256 _setTokenSupply, uint256 _totalNotional) internal pure returns (uint256) { return _totalNotional.preciseDiv(_setTokenSupply); } /** * Get the total tracked balance - total supply * position unit * * @param _setToken Address of the SetToken * @param _component Address of the component * @return Notional tracked balance */ function getDefaultTrackedBalance(ISetToken _setToken, address _component) internal view returns(uint256) { int256 positionUnit = _setToken.getDefaultPositionRealUnit(_component); return _setToken.totalSupply().preciseMul(positionUnit.toUint256()); } /** * Calculates the new default position unit and performs the edit with the new unit * * @param _setToken Address of the SetToken * @param _component Address of the component * @param _setTotalSupply Current SetToken supply * @param _componentPreviousBalance Pre-action component balance * @return Current component balance * @return Previous position unit * @return New position unit */ function calculateAndEditDefaultPosition( ISetToken _setToken, address _component, uint256 _setTotalSupply, uint256 _componentPreviousBalance ) internal returns(uint256, uint256, uint256) { uint256 currentBalance = IERC20(_component).balanceOf(address(_setToken)); uint256 positionUnit = _setToken.getDefaultPositionRealUnit(_component).toUint256(); uint256 newTokenUnit; if (currentBalance > 0) { newTokenUnit = calculateDefaultEditPositionUnit( _setTotalSupply, _componentPreviousBalance, currentBalance, positionUnit ); } else { newTokenUnit = 0; } editDefaultPosition(_setToken, _component, newTokenUnit); return (currentBalance, positionUnit, newTokenUnit); } /** * Calculate the new position unit given total notional values pre and post executing an action that changes SetToken state * The intention is to make updates to the units without accidentally picking up airdropped assets as well. * * @param _setTokenSupply Supply of SetToken in precise units (10^18) * @param _preTotalNotional Total notional amount of component prior to executing action * @param _postTotalNotional Total notional amount of component after the executing action * @param _prePositionUnit Position unit of SetToken prior to executing action * @return New position unit */ function calculateDefaultEditPositionUnit( uint256 _setTokenSupply, uint256 _preTotalNotional, uint256 _postTotalNotional, uint256 _prePositionUnit ) internal pure returns (uint256) { // If pre action total notional amount is greater then subtract post action total notional and calculate new position units uint256 airdroppedAmount = _preTotalNotional.sub(_prePositionUnit.preciseMul(_setTokenSupply)); return _postTotalNotional.sub(airdroppedAmount).preciseDiv(_setTokenSupply); } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; pragma experimental ABIEncoderV2; import { SafeMath } from "@openzeppelin/contracts/math/SafeMath.sol"; import { SignedSafeMath } from "@openzeppelin/contracts/math/SignedSafeMath.sol"; /** * @title PreciseUnitMath * @author Set Protocol * * Arithmetic for fixed-point numbers with 18 decimals of precision. Some functions taken from * dYdX's BaseMath library. * * CHANGELOG: * - 9/21/20: Added safePower function * - 4/21/21: Added approximatelyEquals function */ library PreciseUnitMath { using SafeMath for uint256; using SignedSafeMath for int256; // The number One in precise units. uint256 constant internal PRECISE_UNIT = 10 ** 18; int256 constant internal PRECISE_UNIT_INT = 10 ** 18; // Max unsigned integer value uint256 constant internal MAX_UINT_256 = type(uint256).max; // Max and min signed integer value int256 constant internal MAX_INT_256 = type(int256).max; int256 constant internal MIN_INT_256 = type(int256).min; /** * @dev Getter function since constants can't be read directly from libraries. */ function preciseUnit() internal pure returns (uint256) { return PRECISE_UNIT; } /** * @dev Getter function since constants can't be read directly from libraries. */ function preciseUnitInt() internal pure returns (int256) { return PRECISE_UNIT_INT; } /** * @dev Getter function since constants can't be read directly from libraries. */ function maxUint256() internal pure returns (uint256) { return MAX_UINT_256; } /** * @dev Getter function since constants can't be read directly from libraries. */ function maxInt256() internal pure returns (int256) { return MAX_INT_256; } /** * @dev Getter function since constants can't be read directly from libraries. */ function minInt256() internal pure returns (int256) { return MIN_INT_256; } /** * @dev Multiplies value a by value b (result is rounded down). It's assumed that the value b is the significand * of a number with 18 decimals precision. */ function preciseMul(uint256 a, uint256 b) internal pure returns (uint256) { return a.mul(b).div(PRECISE_UNIT); } /** * @dev Multiplies value a by value b (result is rounded towards zero). It's assumed that the value b is the * significand of a number with 18 decimals precision. */ function preciseMul(int256 a, int256 b) internal pure returns (int256) { return a.mul(b).div(PRECISE_UNIT_INT); } /** * @dev Multiplies value a by value b (result is rounded up). It's assumed that the value b is the significand * of a number with 18 decimals precision. */ function preciseMulCeil(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0 || b == 0) { return 0; } return a.mul(b).sub(1).div(PRECISE_UNIT).add(1); } /** * @dev Divides value a by value b (result is rounded down). */ function preciseDiv(uint256 a, uint256 b) internal pure returns (uint256) { return a.mul(PRECISE_UNIT).div(b); } /** * @dev Divides value a by value b (result is rounded towards 0). */ function preciseDiv(int256 a, int256 b) internal pure returns (int256) { return a.mul(PRECISE_UNIT_INT).div(b); } /** * @dev Divides value a by value b (result is rounded up or away from 0). */ function preciseDivCeil(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "Cant divide by 0"); return a > 0 ? a.mul(PRECISE_UNIT).sub(1).div(b).add(1) : 0; } /** * @dev Divides value a by value b (result is rounded down - positive numbers toward 0 and negative away from 0). */ function divDown(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "Cant divide by 0"); require(a != MIN_INT_256 || b != -1, "Invalid input"); int256 result = a.div(b); if (a ^ b < 0 && a % b != 0) { result -= 1; } return result; } /** * @dev Multiplies value a by value b where rounding is towards the lesser number. * (positive values are rounded towards zero and negative values are rounded away from 0). */ function conservativePreciseMul(int256 a, int256 b) internal pure returns (int256) { return divDown(a.mul(b), PRECISE_UNIT_INT); } /** * @dev Divides value a by value b where rounding is towards the lesser number. * (positive values are rounded towards zero and negative values are rounded away from 0). */ function conservativePreciseDiv(int256 a, int256 b) internal pure returns (int256) { return divDown(a.mul(PRECISE_UNIT_INT), b); } /** * @dev Performs the power on a specified value, reverts on overflow. */ function safePower( uint256 a, uint256 pow ) internal pure returns (uint256) { require(a > 0, "Value must be positive"); uint256 result = 1; for (uint256 i = 0; i < pow; i++){ uint256 previousResult = result; // Using safemath multiplication prevents overflows result = previousResult.mul(a); } return result; } /** * @dev Returns true if a =~ b within range, false otherwise. */ function approximatelyEquals(uint256 a, uint256 b, uint256 range) internal pure returns (bool) { return a <= b.add(range) && a >= b.sub(range); } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { IController } from "../../interfaces/IController.sol"; import { IIntegrationRegistry } from "../../interfaces/IIntegrationRegistry.sol"; import { IPriceOracle } from "../../interfaces/IPriceOracle.sol"; import { ISetValuer } from "../../interfaces/ISetValuer.sol"; /** * @title ResourceIdentifier * @author Set Protocol * * A collection of utility functions to fetch information related to Resource contracts in the system */ library ResourceIdentifier { // IntegrationRegistry will always be resource ID 0 in the system uint256 constant internal INTEGRATION_REGISTRY_RESOURCE_ID = 0; // PriceOracle will always be resource ID 1 in the system uint256 constant internal PRICE_ORACLE_RESOURCE_ID = 1; // SetValuer resource will always be resource ID 2 in the system uint256 constant internal SET_VALUER_RESOURCE_ID = 2; /* ============ Internal ============ */ /** * Gets the instance of integration registry stored on Controller. Note: IntegrationRegistry is stored as index 0 on * the Controller */ function getIntegrationRegistry(IController _controller) internal view returns (IIntegrationRegistry) { return IIntegrationRegistry(_controller.resourceId(INTEGRATION_REGISTRY_RESOURCE_ID)); } /** * Gets instance of price oracle on Controller. Note: PriceOracle is stored as index 1 on the Controller */ function getPriceOracle(IController _controller) internal view returns (IPriceOracle) { return IPriceOracle(_controller.resourceId(PRICE_ORACLE_RESOURCE_ID)); } /** * Gets the instance of Set valuer on Controller. Note: SetValuer is stored as index 2 on the Controller */ function getSetValuer(IController _controller) internal view returns (ISetValuer) { return ISetValuer(_controller.resourceId(SET_VALUER_RESOURCE_ID)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such 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. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint128 from uint256, reverting on * overflow (when the input is greater than largest uint128). * * Counterpart to Solidity's `uint128` operator. * * Requirements: * * - input must fit into 128 bits */ function toUint128(uint256 value) internal pure returns (uint128) { require(value < 2**128, "SafeCast: value doesn\'t fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint64 from uint256, reverting on * overflow (when the input is greater than largest uint64). * * Counterpart to Solidity's `uint64` operator. * * Requirements: * * - input must fit into 64 bits */ function toUint64(uint256 value) internal pure returns (uint64) { require(value < 2**64, "SafeCast: value doesn\'t fit in 64 bits"); return uint64(value); } /** * @dev Returns the downcasted uint32 from uint256, reverting on * overflow (when the input is greater than largest uint32). * * Counterpart to Solidity's `uint32` operator. * * Requirements: * * - input must fit into 32 bits */ function toUint32(uint256 value) internal pure returns (uint32) { require(value < 2**32, "SafeCast: value doesn\'t fit in 32 bits"); return uint32(value); } /** * @dev Returns the downcasted uint16 from uint256, reverting on * overflow (when the input is greater than largest uint16). * * Counterpart to Solidity's `uint16` operator. * * Requirements: * * - input must fit into 16 bits */ function toUint16(uint256 value) internal pure returns (uint16) { require(value < 2**16, "SafeCast: value doesn\'t fit in 16 bits"); return uint16(value); } /** * @dev Returns the downcasted uint8 from uint256, reverting on * overflow (when the input is greater than largest uint8). * * Counterpart to Solidity's `uint8` operator. * * Requirements: * * - input must fit into 8 bits. */ function toUint8(uint256 value) internal pure returns (uint8) { require(value < 2**8, "SafeCast: value doesn\'t fit in 8 bits"); return uint8(value); } /** * @dev Converts a signed int256 into an unsigned uint256. * * Requirements: * * - input must be greater than or equal to 0. */ function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } /** * @dev Returns the downcasted int128 from int256, reverting on * overflow (when the input is less than smallest int128 or * greater than largest int128). * * Counterpart to Solidity's `int128` operator. * * Requirements: * * - input must fit into 128 bits * * _Available since v3.1._ */ function toInt128(int256 value) internal pure returns (int128) { require(value >= -2**127 && value < 2**127, "SafeCast: value doesn\'t fit in 128 bits"); return int128(value); } /** * @dev Returns the downcasted int64 from int256, reverting on * overflow (when the input is less than smallest int64 or * greater than largest int64). * * Counterpart to Solidity's `int64` operator. * * Requirements: * * - input must fit into 64 bits * * _Available since v3.1._ */ function toInt64(int256 value) internal pure returns (int64) { require(value >= -2**63 && value < 2**63, "SafeCast: value doesn\'t fit in 64 bits"); return int64(value); } /** * @dev Returns the downcasted int32 from int256, reverting on * overflow (when the input is less than smallest int32 or * greater than largest int32). * * Counterpart to Solidity's `int32` operator. * * Requirements: * * - input must fit into 32 bits * * _Available since v3.1._ */ function toInt32(int256 value) internal pure returns (int32) { require(value >= -2**31 && value < 2**31, "SafeCast: value doesn\'t fit in 32 bits"); return int32(value); } /** * @dev Returns the downcasted int16 from int256, reverting on * overflow (when the input is less than smallest int16 or * greater than largest int16). * * Counterpart to Solidity's `int16` operator. * * Requirements: * * - input must fit into 16 bits * * _Available since v3.1._ */ function toInt16(int256 value) internal pure returns (int16) { require(value >= -2**15 && value < 2**15, "SafeCast: value doesn\'t fit in 16 bits"); return int16(value); } /** * @dev Returns the downcasted int8 from int256, reverting on * overflow (when the input is less than smallest int8 or * greater than largest int8). * * Counterpart to Solidity's `int8` operator. * * Requirements: * * - input must fit into 8 bits. * * _Available since v3.1._ */ function toInt8(int256 value) internal pure returns (int8) { require(value >= -2**7 && value < 2**7, "SafeCast: value doesn\'t fit in 8 bits"); return int8(value); } /** * @dev Converts an unsigned uint256 into a signed int256. * * Requirements: * * - input must be less than or equal to maxInt256. */ function toInt256(uint256 value) internal pure returns (int256) { require(value < 2**255, "SafeCast: value doesn't fit in an int256"); return int256(value); } }
// 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 SafeMath { /** * @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; /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // 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; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed 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(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./IERC20.sol"; import "../../math/SafeMath.sol"; import "../../utils/Address.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 SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 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(IERC20 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(IERC20 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(IERC20 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(IERC20 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 Address { /** * @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); } } } }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; interface IIntegrationRegistry { function addIntegration(address _module, string memory _id, address _wrapper) external; function getIntegrationAdapter(address _module, string memory _id) external view returns(address); function getIntegrationAdapterWithHash(address _module, bytes32 _id) external view returns(address); function isValidIntegration(address _module, string memory _id) external view returns(bool); }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; /** * @title IPriceOracle * @author Set Protocol * * Interface for interacting with PriceOracle */ interface IPriceOracle { /* ============ Functions ============ */ function getPrice(address _assetOne, address _assetTwo) external view returns (uint256); function masterQuoteAsset() external view returns (address); }
/* Copyright 2020 Set Labs Inc. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. SPDX-License-Identifier: Apache License, Version 2.0 */ pragma solidity 0.6.10; import { ISetToken } from "../interfaces/ISetToken.sol"; interface ISetValuer { function calculateSetTokenValuation(ISetToken _setToken, address _quoteAsset) external view returns (uint256); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": { "contracts/protocol/integration/lib/AaveV2.sol": { "AaveV2": "0x034820a152d42445344f63f7de495dbd26f51ad1" } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IController","name":"_controller","type":"address"},{"internalType":"contract ILendingPoolAddressesProvider","name":"_lendingPoolAddressesProvider","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"_anySetAllowed","type":"bool"}],"name":"AnySetAllowedUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":true,"internalType":"bool","name":"_added","type":"bool"},{"indexed":false,"internalType":"contract IERC20[]","name":"_assets","type":"address[]"}],"name":"BorrowAssetsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":true,"internalType":"bool","name":"_added","type":"bool"},{"indexed":false,"internalType":"contract IERC20[]","name":"_assets","type":"address[]"}],"name":"CollateralAssetsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"_collateralAsset","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"_repayAsset","type":"address"},{"indexed":false,"internalType":"contract IExchangeAdapter","name":"_exchangeAdapter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_totalRedeemAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_totalRepayAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_protocolFee","type":"uint256"}],"name":"LeverageDecreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"_borrowAsset","type":"address"},{"indexed":true,"internalType":"contract IERC20","name":"_collateralAsset","type":"address"},{"indexed":false,"internalType":"contract IExchangeAdapter","name":"_exchangeAdapter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_totalBorrowAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_totalReceiveAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_protocolFee","type":"uint256"}],"name":"LeverageIncreased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract IERC20","name":"_underlying","type":"address"},{"indexed":true,"internalType":"contract IAToken","name":"_aToken","type":"address"},{"indexed":true,"internalType":"contract IVariableDebtToken","name":"_variableDebtToken","type":"address"}],"name":"ReserveTokensUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":true,"internalType":"bool","name":"_added","type":"bool"}],"name":"SetTokenStatusUpdated","type":"event"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20[]","name":"_newBorrowAssets","type":"address[]"}],"name":"addBorrowAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20[]","name":"_newCollateralAssets","type":"address[]"}],"name":"addCollateralAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_underlying","type":"address"}],"name":"addUnderlyingToReserveTokensMapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"","type":"address"}],"name":"allowedSetTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"anySetAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"","type":"address"},{"internalType":"contract IERC20","name":"","type":"address"}],"name":"borrowAssetEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"","type":"address"},{"internalType":"contract IERC20","name":"","type":"address"}],"name":"collateralAssetEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"internalType":"contract IERC20","name":"_component","type":"address"},{"internalType":"bool","name":"_isEquity","type":"bool"}],"name":"componentIssueHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"internalType":"contract IERC20","name":"_component","type":"address"},{"internalType":"bool","name":"_isEquity","type":"bool"}],"name":"componentRedeemHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"controller","outputs":[{"internalType":"contract IController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20","name":"_collateralAsset","type":"address"},{"internalType":"contract IERC20","name":"_repayAsset","type":"address"},{"internalType":"uint256","name":"_redeemQuantityUnits","type":"uint256"},{"internalType":"uint256","name":"_minRepayQuantityUnits","type":"uint256"},{"internalType":"string","name":"_tradeAdapterName","type":"string"},{"internalType":"bytes","name":"_tradeData","type":"bytes"}],"name":"delever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20","name":"_collateralAsset","type":"address"},{"internalType":"contract IERC20","name":"_repayAsset","type":"address"},{"internalType":"uint256","name":"_redeemQuantityUnits","type":"uint256"},{"internalType":"string","name":"_tradeAdapterName","type":"string"},{"internalType":"bytes","name":"_tradeData","type":"bytes"}],"name":"deleverToZeroBorrowBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"}],"name":"getEnabledAssets","outputs":[{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20[]","name":"_collateralAssets","type":"address[]"},{"internalType":"contract IERC20[]","name":"_borrowAssets","type":"address[]"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lendingPoolAddressesProvider","outputs":[{"internalType":"contract ILendingPoolAddressesProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20","name":"_borrowAsset","type":"address"},{"internalType":"contract IERC20","name":"_collateralAsset","type":"address"},{"internalType":"uint256","name":"_borrowQuantityUnits","type":"uint256"},{"internalType":"uint256","name":"_minReceiveQuantityUnits","type":"uint256"},{"internalType":"string","name":"_tradeAdapterName","type":"string"},{"internalType":"bytes","name":"_tradeData","type":"bytes"}],"name":"lever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"moduleIssueHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"moduleRedeemHook","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"protocolDataProvider","outputs":[{"internalType":"contract IProtocolDataProvider","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IDebtIssuanceModule","name":"_debtIssuanceModule","type":"address"}],"name":"registerToModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20[]","name":"_borrowAssets","type":"address[]"}],"name":"removeBorrowAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"contract IERC20[]","name":"_collateralAssets","type":"address[]"}],"name":"removeCollateralAssets","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"}],"name":"sync","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"name":"underlyingToReserveTokens","outputs":[{"internalType":"contract IAToken","name":"aToken","type":"address"},{"internalType":"contract IVariableDebtToken","name":"variableDebtToken","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"updateAllowedSetToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anySetAllowed","type":"bool"}],"name":"updateAnySetAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b506040516200654938038062006549833981016040819052620000349162000515565b600080546001600160a01b0319166001600160a01b038416178155600180556200005d6200033b565b600280546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506001600160601b0319606082901b1660a0526040516321f8a72160e01b81526000906001600160a01b038316906321f8a72190620000f290600160f81b9060040162000567565b60206040518083038186803b1580156200010b57600080fd5b505afa15801562000120573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001469190620003f8565b9050806001600160a01b03166080816001600160a01b031660601b815250506060816001600160a01b031663b316ff896040518163ffffffff1660e01b815260040160006040518083038186803b158015620001a157600080fd5b505afa158015620001b6573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052620001e0919081019062000471565b905060005b81518110156200033057600080846001600160a01b031663d2493b6c8585815181106200020e57fe5b6020026020010151602001516040518263ffffffff1660e01b815260040162000238919062000553565b60606040518083038186803b1580156200025157600080fd5b505afa15801562000266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028c91906200041e565b92505091506040518060400160405280836001600160a01b03168152602001826001600160a01b031681525060036000868681518110620002c957fe5b6020908102919091018101518101516001600160a01b039081168352828201939093526040909101600020835181549084166001600160a01b0319918216178255939091015160019182018054919093169316929092179055929092019150620001e59050565b5050505050620005e3565b3390565b60006040828403121562000351578081fd5b6200035d604062000570565b82519091506001600160401b03808211156200037857600080fd5b81840185601f8201126200038b57600080fd5b80519250818311156200039d57600080fd5b60209150620003b5601f8401601f1916830162000570565b8381528683858401011115620003ca57600080fd5b620003db8484830185850162000597565b845250838101519150620003ef82620005ca565b82015292915050565b6000602082840312156200040a578081fd5b81516200041781620005ca565b9392505050565b60008060006060848603121562000433578182fd5b83516200044081620005ca565b60208501519093506200045381620005ca565b60408501519092506200046681620005ca565b809150509250925092565b6000602080838503121562000484578182fd5b82516001600160401b03808211156200049b578384fd5b81850186601f820112620004ad578485fd5b8051925081831115620004be578485fd5b620004cd848585020162000570565b8381528481019250818501865b858110156200050757620004f48a8884518701016200033f565b85529386019390860190600101620004da565b509098975050505050505050565b6000806040838503121562000528578182fd5b82516200053581620005ca565b60208401519092506200054881620005ca565b809150509250929050565b6001600160a01b0391909116815260200190565b90815260200190565b6040518181016001600160401b03811182821017156200058f57600080fd5b604052919050565b60005b83811015620005b45781810151838201526020016200059a565b83811115620005c4576000848401525b50505050565b6001600160a01b0381168114620005e057600080fd5b50565b60805160601c60a05160601c615f05620006446000398061175a52806121cc5280612c14528061300652806130c95250806106f35280610e765280612ab55280612cff528061372652806137f352806139535280613a255250615f056000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c8063847ef08d11610104578063c153dd07116100a2578063ee78244f11610071578063ee78244f146103c6578063f2fde38b146103d9578063f77c4791146103ec578063ffbad25c146103f4576101da565b8063c153dd0714610246578063c690a74c14610380578063d4fd27eb14610393578063e4e9ce92146103b3576101da565b8063b1c02678116100de578063b1c026781461033c578063b1dd4d921461035d578063bba00ba514610365578063c137f4d71461036d576101da565b8063847ef08d146103195780638da5cb5b14610321578063a584119414610329576101da565b80634fdd283c1161017c5780635b1365121161014b5780635b136512146102d8578063715018a6146102eb578063717ca2a5146102f35780637c7a624e14610306576101da565b80634fdd283c1461028c578063516595fc1461029f5780635199e418146102b25780635809ae27146102c5576101da565b80633f843bce116101b85780633f843bce146102315780633fe6106b14610246578063427eddb5146102595780634a200fa514610279576101da565b806302577224146101df5780630df96ef6146102095780630fb96b211461021e575b600080fd5b6101f26101ed366004614c84565b610407565b604051610200929190615333565b60405180910390f35b61021c610217366004614e67565b61042d565b005b61021c61022c3660046150fb565b6105fc565b6102396106f1565b604051610200919061531f565b61021c6102543660046150d0565b610715565b61026c610267366004614f56565b61072d565b604051610200919061549d565b61021c610287366004614eb5565b61074d565b61021c61029a366004615024565b6109d2565b61021c6102ad366004614e67565b610afc565b61021c6102c0366004614dfc565b610b10565b61021c6102d3366004614e67565b610b82565b61021c6102e6366004614f56565b610c95565b61021c610d91565b61021c610301366004614e67565b610e10565b61021c610314366004614c84565b610e24565b61021c610f31565b6102396112dd565b61021c610337366004614c84565b6112ed565b61034f61034a366004614c84565b611671565b60405161020092919061542b565b61026c61174f565b610239611758565b61021c61037b3660046150fb565b61177c565b61021c61038e366004614f1e565b611862565b6103a66103a1366004614f83565b6119aa565b6040516102009190615e0c565b61026c6103c1366004614f56565b611c36565b61026c6103d4366004614c84565b611c56565b61021c6103e7366004614c84565b611c6b565b610239611d22565b61021c610402366004615024565b611d31565b600360205260009081526040902080546001909101546001600160a01b03918216911682565b8161043781611e45565b60005b82518110156105b157600083828151811061045157fe5b6020908102919091018101516001600160a01b0380881660009081526005845260408082209284168252919093529091205490915060ff166104ae5760405162461bcd60e51b81526004016104a5906158a5565b60405180910390fd5b6001600160a01b03808216600090815260036020526040908190206001015490516370a0823160e01b81529116906370a08231906104f090889060040161531f565b60206040518083038186803b15801561050857600080fd5b505afa15801561051c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610540919061516c565b1561055d5760405162461bcd60e51b81526004016104a590615b53565b6001600160a01b0380861660008181526005602090815260408083209486168352938152838220805460ff191690559181526006909152206105a8906001018263ffffffff611e9316565b5060010161043a565b5060001515836001600160a01b03167f1c400b459725a0446742d6688375dffe941d5f9a65fe3900c93e07d9e772250b846040516105ef9190615450565b60405180910390a3505050565b8361060681611fc0565b816106ea576040516308bafae960e21b81526000906001600160a01b038716906322ebeba49061063c9087903090600401615333565b60206040518083038186803b15801561065457600080fd5b505afa158015610668573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068c919061516c565b9050600081126106ae5760405162461bcd60e51b81526004016104a5906155f8565b60006106da866106ce6106c98560001963ffffffff61210216565b612176565b9063ffffffff61219c16565b90506106e78786836121c6565b50505b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b8161071f81611fc0565b610728836112ed565b505050565b600460209081526000928352604080842090915290825290205460ff1681565b82336107598282612262565b8461076381612288565b60085460ff166107a5576001600160a01b03861660009081526007602052604090205460ff166107a55760405162461bcd60e51b81526004016104a590615aa7565b856001600160a01b0316630ffe0f1e6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156107e057600080fd5b505af11580156107f4573d6000803e3d6000fd5b50505050856001600160a01b031663d7f1b27c61083d6040518060400160405280601581526020017444656661756c7449737375616e63654d6f64756c6560581b815250612349565b6040518263ffffffff1660e01b8152600401610859919061531f565b60206040518083038186803b15801561087157600080fd5b505afa158015610885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a99190614e18565b6108c55760405162461bcd60e51b81526004016104a590615980565b6060866001600160a01b031663b2494df36040518163ffffffff1660e01b815260040160006040518083038186803b15801561090057600080fd5b505afa158015610914573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261093c9190810190614d60565b905060005b81518110156109bd5781818151811061095657fe5b60200260200101516001600160a01b031663d9b1b6e0896040518263ffffffff1660e01b8152600401610989919061531f565b600060405180830381600087803b1580156109a357600080fd5b505af19250505080156109b4575060015b50600101610941565b506109c88787612367565b6106e78786612454565b600260015414156109f55760405162461bcd60e51b81526004016104a590615d2e565b600260015586610a0481611e45565b610a0c614af3565b610a1c898989898989600061252b565b9050610a36816000015182602001518a84608001516125e3565b6000610a44828a8a87612679565b90506000610a538b8a84612908565b90506000610a67838363ffffffff61292b16565b9050610a7d846000015185602001518c8461296d565b610a87848b6129d1565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f7cda30123ddfc96659344700585861a8670352b9cc86d1b1054d10083b1dcdd4876040015188608001518688604051610ae294939291906154a8565b60405180910390a450506001805550505050505050505050565b81610b0681611e45565b6107288383612454565b610b18612a97565b6002546001600160a01b03908116911614610b455760405162461bcd60e51b81526004016104a590615a72565b6008805460ff19168215159081179091556040517f563e1633136cdd43b8793897cb53ba2a9e31c18b3ae0b6827fbbb03b9902e6c690600090a250565b81610b8c81611e45565b60005b8251811015610c57576000838281518110610ba657fe5b6020908102919091018101516001600160a01b0380881660009081526004845260408082209284168252919093529091205490915060ff16610bfa5760405162461bcd60e51b81526004016104a590615875565b610c0685826000612a9b565b6001600160a01b0380861660008181526004602090815260408083209486168352938152838220805460ff19169055918152600690915220610c4e908263ffffffff611e9316565b50600101610b8f565b5060001515836001600160a01b03167fdd2a86f23a66f86496c82312e991b49f87ad96c4f25094a43c49f7aca0ea3542846040516105ef9190615450565b81610c9f81611e45565b6040516335fc6c9f60e21b81526001600160a01b0384169063d7f1b27c90610ccb90859060040161531f565b60206040518083038186803b158015610ce357600080fd5b505afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b9190614e18565b610d375760405162461bcd60e51b81526004016104a590615980565b6040516306cd8db760e51b81526001600160a01b0383169063d9b1b6e090610d6390869060040161531f565b600060405180830381600087803b158015610d7d57600080fd5b505af11580156106e7573d6000803e3d6000fd5b610d99612a97565b6002546001600160a01b03908116911614610dc65760405162461bcd60e51b81526004016104a590615a72565b6002546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600280546001600160a01b0319169055565b81610e1a81611e45565b6107288383612367565b6001600160a01b038181166000908152600360205260409020541615610e5c5760405162461bcd60e51b81526004016104a5906155c8565b604051633e15014160e01b81526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690633e15014190610eab90859060040161531f565b6101406040518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc9190615184565b509850505050505050505080610f245760405162461bcd60e51b81526004016104a5906157ed565b610f2d82612cfa565b5050565b33610f3b81611e6b565b33610f45816112ed565b6001600160a01b038116600090815260066020908152604091829020600101805483518184028101840190945280845260609392830182828015610fb257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f94575b50939450600093505050505b81518110156110cd576000828281518110610fd557fe5b6020908102919091018101516001600160a01b03808216600090815260039093526040928390206001015492516370a0823160e01b815291935091909116906370a082319061102890879060040161531f565b60206040518083038186803b15801561104057600080fd5b505afa158015611054573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611078919061516c565b156110955760405162461bcd60e51b81526004016104a590615b53565b6001600160a01b038085166000908152600560209081526040808320949093168252929092529020805460ff19169055600101610fbe565b506001600160a01b03821660009081526006602090815260409182902080548351818402810184019094528084526060939283018282801561113857602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161111a575b50939450600093505050505b81518110156111a957600082828151811061115b57fe5b6020026020010151905061117185826000612a9b565b6001600160a01b038086166000908152600460209081526040808320949093168252929092529020805460ff19169055600101611144565b506001600160a01b0383166000908152600660205260408120906111cd8282614b3f565b6111db600183016000614b3f565b50506060836001600160a01b031663b2494df36040518163ffffffff1660e01b815260040160006040518083038186803b15801561121857600080fd5b505afa15801561122c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112549190810190614d60565b905060005b81518110156112d55781818151811061126e57fe5b60200260200101516001600160a01b031663e0799620866040518263ffffffff1660e01b81526004016112a1919061531f565b600060405180830381600087803b1580156112bb57600080fd5b505af19250505080156112cc575060015b50600101611259565b505050505050565b6002546001600160a01b03165b90565b600260015414156113105760405162461bcd60e51b81526004016104a590615d2e565b60026001558061131f81611e6b565b6000826001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135a57600080fd5b505afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611392919061516c565b90508015611668576001600160a01b03831660009081526006602090815260409182902080548351818402810184019094528084526060939283018282801561140457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113e6575b50939450600093505050505b815181101561151b5760006003600084848151811061142b57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160009054906101000a90046001600160a01b0316905060006114ed876001600160a01b03166366cb8d2f846040518263ffffffff1660e01b815260040161149d919061531f565b60206040518083038186803b1580156114b557600080fd5b505afa1580156114c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c9919061516c565b905060006114fc888488612e11565b905080821461151057611510888483612eab565b505050600101611410565b506001600160a01b03841660009081526006602090815260409182902060010180548351818402810184019094528084526060939283018282801561158957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161156b575b50939450600093505050505b81518110156116645760008282815181106115ac57fe5b602002602001015190506000876001600160a01b03166322ebeba483306040518363ffffffff1660e01b81526004016115e6929190615333565b60206040518083038186803b1580156115fe57600080fd5b505afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611636919061516c565b90506000611645898489612ec5565b905081811461165957611659898483612f86565b505050600101611595565b5050505b50506001805550565b6001600160a01b03811660009081526006602090815260409182902080548351818402810184019094528084526060938493600184019284918301828280156116e357602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116116c5575b505050505091508080548060200260200160405190810160405280929190818152602001828054801561173f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611721575b5050505050905091509150915091565b60085460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b8361178681611fc0565b816106ea576040516308bafae960e21b81526000906001600160a01b038716906322ebeba4906117bc9087903090600401615333565b60206040518083038186803b1580156117d457600080fd5b505afa1580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c919061516c565b90506000811261182e5760405162461bcd60e51b81526004016104a5906155f8565b6000611855866118496106c98560001963ffffffff61210216565b9063ffffffff612fb516565b90506106e7878683613000565b61186a612a97565b6002546001600160a01b039081169116146118975760405162461bcd60e51b81526004016104a590615a72565b600054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec906118c790859060040161531f565b60206040518083038186803b1580156118df57600080fd5b505afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190614e18565b8061193a57506001600160a01b03821660009081526007602052604090205460ff165b6119565760405162461bcd60e51b81526004016104a590615a48565b6001600160a01b038216600081815260076020526040808220805460ff191685151590811790915590519092917f2035981b48691b10f6ac65174e570b4d0a8a889ae01bef3e5e7759ff9444f0c491a35050565b6000600260015414156119cf5760405162461bcd60e51b81526004016104a590615d2e565b6002600155866119de81611e45565b6000886001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a1957600080fd5b505afa158015611a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a51919061516c565b90506000611a65878363ffffffff61219c16565b6001600160a01b03808c166000908152600560209081526040808320938d168352929052205490915060ff16611aad5760405162461bcd60e51b81526004016104a5906158a5565b6001600160a01b038089166000908152600360205260408082206001015490516370a0823160e01b8152919216906370a0823190611aef908e9060040161531f565b60206040518083038186803b158015611b0757600080fd5b505afa158015611b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3f919061516c565b905060008111611b615760405162461bcd60e51b81526004016104a590615cfe565b611b69614af3565b611b7a8c8c8c86868d60008b61309c565b9050611b94816000015182602001518d84608001516125e3565b611ba0818c8c8a612679565b50611bb5816000015182602001518c8561296d565b611bbf818b6129d1565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f7cda30123ddfc96659344700585861a8670352b9cc86d1b1054d10083b1dcdd484604001518560800151876000604051611c1b94939291906154a8565b60405180910390a450600180559a9950505050505050505050565b600560209081526000928352604080842090915290825290205460ff1681565b60076020526000908152604090205460ff1681565b611c73612a97565b6002546001600160a01b03908116911614611ca05760405162461bcd60e51b81526004016104a590615a72565b6001600160a01b038116611cc65760405162461bcd60e51b81526004016104a590615677565b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60026001541415611d545760405162461bcd60e51b81526004016104a590615d2e565b600260015586611d6381611e45565b611d6b614af3565b611d7b898989898989600161252b565b9050611d99816000015182602001518360e00151846080015161324e565b6000611da7828a8a87612679565b90506000611db68b8a84612908565b90506000611dca838363ffffffff61292b16565b9050611de0846000015185602001518c84613296565b611dea848c6132f7565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f359f8b62a966cfd521a3815681266407201b20a7c334925faa49e7d9d5dd57ab876040015188608001518688604051610ae294939291906154a8565b611e4f813361335b565b611e6b5760405162461bcd60e51b81526004016104a590615c90565b611e74816133e9565b611e905760405162461bcd60e51b81526004016104a59061562f565b50565b600080611ef984805480602002602001604051908101604052809291908181526020018280548015611eee57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611ed0575b5050505050846134ed565b9150915080611f1a5760405162461bcd60e51b81526004016104a590615599565b835460001901828114611f8c57848181548110611f3357fe5b9060005260206000200160009054906101000a90046001600160a01b0316858481548110611f5d57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b84805480611f9657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b50505050565b6002604051631ade272960e11b81526001600160a01b038316906335bc4e5290611fee90339060040161531f565b60206040518083038186803b15801561200657600080fd5b505afa15801561201a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203e919061514d565b600281111561204957fe5b146120665760405162461bcd60e51b81526004016104a590615949565b6000546040516342f6e38960e01b81526001600160a01b03909116906342f6e3899061209690339060040161531f565b60206040518083038186803b1580156120ae57600080fd5b505afa1580156120c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e69190614e18565b611e905760405162461bcd60e51b81526004016104a590615c09565b60008261211157506000612170565b826000191480156121255750600160ff1b82145b156121425760405162461bcd60e51b81526004016104a590615ad5565b8282028284828161214f57fe5b051461216d5760405162461bcd60e51b81526004016104a590615ad5565b90505b92915050565b6000808212156121985760405162461bcd60e51b81526004016104a5906158d1565b5090565b600061216d670de0b6b3a76400006121ba858563ffffffff61355316565b9063ffffffff61358d16565b610728837f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561222357600080fd5b505afa158015612237573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225b9190614ca0565b848461324e565b61226c828261335b565b610f2d5760405162461bcd60e51b81526004016104a590615c90565b600054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec906122b890849060040161531f565b60206040518083038186803b1580156122d057600080fd5b505afa1580156122e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123089190614e18565b6123245760405162461bcd60e51b81526004016104a590615c4d565b61232d816135cf565b611e905760405162461bcd60e51b81526004016104a590615758565b600080612355836135fe565b905061236081613609565b9392505050565b60005b815181101561240a57600082828151811061238157fe5b6020026020010151905061239584826136c6565b6123a184826001612a9b565b6001600160a01b03808516600081815260046020908152604080832095909416808352948152838220805460ff19166001908117909155928252600681529281208054808401825590825292902090910180546001600160a01b0319169092179091550161236a565b5060011515826001600160a01b03167fdd2a86f23a66f86496c82312e991b49f87ad96c4f25094a43c49f7aca0ea3542836040516124489190615450565b60405180910390a35050565b60005b81518110156124ed57600082828151811061246e57fe5b6020026020010151905061248284826138f3565b6001600160a01b03808516600081815260056020908152604080832095909416808352948152838220805460ff191660019081179091559282526006815292812082018054808401825590825292902090910180546001600160a01b03191690921790915501612457565b5060011515826001600160a01b03167f1c400b459725a0446742d6688375dffe941d5f9a65fe3900c93e07d9e772250b836040516124489190615450565b612533614af3565b6000886001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561256e57600080fd5b505afa158015612582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a6919061516c565b90506125d68989896125be8a8663ffffffff61219c16565b6125ce8a8763ffffffff61219c16565b89898861309c565b9998505050505050505050565b60405163ab36d4d560e01b815273034820a152d42445344f63f7de495dbd26f51ad19063ab36d4d590612629906001600160a01b038816908790879087906004016154f8565b60206040518083038186803b15801561264157600080fd5b505af4158015612655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ea919061516c565b6000808560000151905060008660800151905061271d8688604001516001600160a01b031663334fc2896040518163ffffffff1660e01b815260040160206040518083038186803b1580156126cd57600080fd5b505afa1580156126e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127059190614ca0565b6001600160a01b03851691908463ffffffff613b2516565b600080606089604001516001600160a01b031663e171fcab8a8a88888f60a001518d6040518763ffffffff1660e01b81526004016127609695949392919061534d565b60006040518083038186803b15801561277857600080fd5b505afa15801561278c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127b49190810190614d08565b925092509250846001600160a01b0316638f6f03328484846040518463ffffffff1660e01b81526004016127ea93929190615404565b600060405180830381600087803b15801561280457600080fd5b505af1158015612818573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128409190810190614e34565b5060006128d48b61010001518a6001600160a01b03166370a08231896040518263ffffffff1660e01b8152600401612878919061531f565b60206040518083038186803b15801561289057600080fd5b505afa1580156128a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c8919061516c565b9063ffffffff61292b16565b90508a60a001518110156128fa5760405162461bcd60e51b81526004016104a59061584a565b9a9950505050505050505050565b600080612916600084613bec565b9050612923858583613c81565b949350505050565b600061216d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d28565b6129886001600160a01b03851683858463ffffffff613b2516565b604051630cca200b60e31b815273034820a152d42445344f63f7de495dbd26f51ad190636651005890612629906001600160a01b03881690879087908790600290600401615522565b81516040516370a0823160e01b81526000916001600160a01b038416916370a0823191612a009160040161531f565b60206040518083038186803b158015612a1857600080fd5b505afa158015612a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a50919061516c565b90508261010001518114612a8d5760608301516101008401518451612a89926001600160a01b039091169185919063ffffffff613d5416565b5050505b61072883836132f7565b3390565b6040516328dd2d0160e01b81526000906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906328dd2d0190612aec9086908890600401615333565b6101206040518083038186803b158015612b0557600080fd5b505afa158015612b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3d919061522a565b9850505050505050505081151581151514158015612be757506001600160a01b038084166000908152600360205260408082205490516370a0823160e01b8152919216906370a0823190612b9590889060040161531f565b60206040518083038186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be5919061516c565b115b15611fba57836001600160a01b031673034820a152d42445344f63f7de495dbd26f51ad16378c8823990917f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c6b57600080fd5b505afa158015612c7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ca39190614ca0565b86866040518563ffffffff1660e01b8152600401612cc494939291906154ce565b60006040518083038186803b158015612cdc57600080fd5b505af4158015612cf0573d6000803e3d6000fd5b5050505050505050565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d2493b6c846040518263ffffffff1660e01b8152600401612d49919061531f565b60606040518083038186803b158015612d6157600080fd5b505afa158015612d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d999190614cbc565b6001600160a01b0380871660008181526003602052604080822080548589166001600160a01b03199182168117835560019092018054968816969091168617905590519698509396509194929350917fc45243255b6bdd38d8648b8c5e5b9429c7143b47e850cad1601dc1edbb6a3b5b9190a4505050565b600080836001600160a01b03166370a08231866040518263ffffffff1660e01b8152600401612e40919061531f565b60206040518083038186803b158015612e5857600080fd5b505afa158015612e6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e90919061516c565b9050612ea2818463ffffffff613e4516565b95945050505050565b6107286001600160a01b038416838363ffffffff613e6316565b6001600160a01b038083166000908152600360205260408082206001015490516370a0823160e01b8152919283929116906370a0823190612f0a90889060040161531f565b60206040518083038186803b158015612f2257600080fd5b505afa158015612f36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5a919061516c565b9050612ea2600019612f7a612f75848763ffffffff613fd716565b61402a565b9063ffffffff61210216565b604080516020810190915260008152610728906001600160a01b0385169084903090859063ffffffff61404f16565b6000821580612fc2575081155b15612fcf57506000612170565b61216d6001612ff4670de0b6b3a76400006121ba836128c8898963ffffffff61355316565b9063ffffffff61460716565b610728837f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561305d57600080fd5b505afa158015613071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130959190614ca0565b848461296d565b6130a4614af3565b6130ac614af3565b6040518061012001604052808b6001600160a01b031681526020017f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561312057600080fd5b505afa158015613134573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131589190614ca0565b6001600160a01b0316815260200161316f87612349565b6001600160a01b031681526020018481526020018881526020018781526020018561319a578a61319c565b895b6001600160a01b03168152602001856131b557896131b7565b8a5b6001600160a01b03168152602001896001600160a01b03166370a082318d6040518263ffffffff1660e01b81526004016131f1919061531f565b60206040518083038186803b15801561320957600080fd5b505afa15801561321d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613241919061516c565b905290506125d68161462c565b60405162b0489960e41b815273034820a152d42445344f63f7de495dbd26f51ad190630b04899090612cc4906001600160a01b03881690879087908790600290600401615522565b6132b16001600160a01b03851683858463ffffffff613b2516565b604051630460b91f60e41b815273034820a152d42445344f63f7de495dbd26f51ad19063460b91f090612cc4906001600160a01b038816908790879087906004016154f8565b60c08201516001600160a01b0390811660009081526003602052604090205483516060850151919092169161333a9183906133359083908390612e11565b612eab565b6107288360000151836133568660000151868860600151612ec5565b612f86565b6000816001600160a01b0316836001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156133a057600080fd5b505afa1580156133b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d89190614ca0565b6001600160a01b0316149392505050565b60008054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec9061341a90859060040161531f565b60206040518083038186803b15801561343257600080fd5b505afa158015613446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346a9190614e18565b801561217057506040516335fc6c9f60e21b81526001600160a01b0383169063d7f1b27c9061349d90309060040161531f565b60206040518083038186803b1580156134b557600080fd5b505afa1580156134c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121709190614e18565b81516000908190815b8181101561354057846001600160a01b031686828151811061351457fe5b60200260200101516001600160a01b031614156135385792506001915061354c9050565b6001016134f6565b50600019600092509250505b9250929050565b60008261356257506000612170565b8282028284828161356f57fe5b041461216d5760405162461bcd60e51b81526004016104a590615a07565b600061216d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614722565b6040516353bae5f760e01b81526000906001600160a01b038316906353bae5f79061349d90309060040161531f565b805160209091012090565b600080548190613621906001600160a01b0316614759565b6001600160a01b031663e6d642c530856040518363ffffffff1660e01b815260040161364e9291906153eb565b60206040518083038186803b15801561366657600080fd5b505afa15801561367a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061369e9190614ca0565b90506001600160a01b0381166121705760405162461bcd60e51b81526004016104a59061581b565b6001600160a01b0380831660009081526004602090815260408083209385168352929052205460ff161561370c5760405162461bcd60e51b81526004016104a590615721565b6040516334924edb60e21b81526000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d2493b6c9061375b90859060040161531f565b60606040518083038186803b15801561377357600080fd5b505afa158015613787573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ab9190614cbc565b50506001600160a01b038381166000908152600360205260409020549192508281169116146137ec5760405162461bcd60e51b81526004016104a590615569565b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633e150141866040518263ffffffff1660e01b815260040161383d919061531f565b6101406040518083038186803b15801561385657600080fd5b505afa15801561386a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061388e9190615184565b99509950505097505050505050816138b85760405162461bcd60e51b81526004016104a5906157ed565b80156138d65760405162461bcd60e51b81526004016104a5906156f4565b826112d55760405162461bcd60e51b81526004016104a590615cc7565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff16156139395760405162461bcd60e51b81526004016104a590615d65565b6040516334924edb60e21b81526000906001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063d2493b6c9061398890859060040161531f565b60606040518083038186803b1580156139a057600080fd5b505afa1580156139b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d89190614cbc565b6001600160a01b038581166000908152600360205260409020600101549194508481169116149150613a1e90505760405162461bcd60e51b81526004016104a590615906565b60008060007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316633e150141866040518263ffffffff1660e01b8152600401613a6f919061531f565b6101406040518083038186803b158015613a8857600080fd5b505afa158015613a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac09190615184565b9950995050985050505050505081613aea5760405162461bcd60e51b81526004016104a5906157ed565b8015613b085760405162461bcd60e51b81526004016104a5906156f4565b826112d55760405162461bcd60e51b81526004016104a59061578f565b60608282604051602401613b3a9291906153eb565b60408051601f198184030181529181526020820180516001600160e01b031663095ea7b360e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f033290613b969087906000908690600401615404565b600060405180830381600087803b158015613bb057600080fd5b505af1158015613bc4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112d59190810190614e34565b6000805460405163792aa04f60e01b815282916001600160a01b03169063792aa04f90613c1f90309088906004016153eb565b60206040518083038186803b158015613c3757600080fd5b505afa158015613c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6f919061516c565b9050612923838263ffffffff61219c16565b801561072857610728826000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b158015613cd857600080fd5b505afa158015613cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d109190614ca0565b6001600160a01b03861691908463ffffffff6147d816565b60008184841115613d4c5760405162461bcd60e51b81526004016104a59190615556565b505050900390565b600080600080866001600160a01b03166370a08231896040518263ffffffff1660e01b8152600401613d86919061531f565b60206040518083038186803b158015613d9e57600080fd5b505afa158015613db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dd6919061516c565b90506000613e09896001600160a01b03166366cb8d2f8a6040518263ffffffff1660e01b815260040161149d919061531f565b905060008215613e2657613e1f8888858561491a565b9050613e2a565b5060005b613e358a8a83613e63565b9199909850909650945050505050565b600061216d826121ba85670de0b6b3a764000063ffffffff61355316565b6000613e6f8484614969565b905080158015613e7f5750600082115b15613ef657613e8e84846149f0565b613ef1576040516304e3532760e41b81526001600160a01b03851690634e35327090613ebe90869060040161531f565b600060405180830381600087803b158015613ed857600080fd5b505af1158015613eec573d6000803e3d6000fd5b505050505b613f73565b808015613f01575081155b15613f7357613f1084846149f0565b613f7357604051636f86c89760e01b81526001600160a01b03851690636f86c89790613f4090869060040161531f565b600060405180830381600087803b158015613f5a57600080fd5b505af1158015613f6e573d6000803e3d6000fd5b505050505b836001600160a01b0316632ba57d1784613f8c8561402a565b6040518363ffffffff1660e01b8152600401613fa99291906153eb565b600060405180830381600087803b158015613fc357600080fd5b505af1158015612cf0573d6000803e3d6000fd5b600081613ff65760405162461bcd60e51b81526004016104a590615de2565b6000831161400557600061216d565b61216d6001612ff4846121ba836128c889670de0b6b3a764000063ffffffff61355316565b6000600160ff1b82106121985760405162461bcd60e51b81526004016104a590615bc1565b81156143445760405163df5e9b2960e01b81526001600160a01b0386169063df5e9b299061408190879060040161531f565b60206040518083038186803b15801561409957600080fd5b505afa1580156140ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140d19190614e18565b614198576040516304e3532760e41b81526001600160a01b03861690634e3532709061410190879060040161531f565b600060405180830381600087803b15801561411b57600080fd5b505af115801561412f573d6000803e3d6000fd5b505060405163ea0ee55960e01b81526001600160a01b038816925063ea0ee55991506141619087908790600401615333565b600060405180830381600087803b15801561417b57600080fd5b505af115801561418f573d6000803e3d6000fd5b5050505061427b565b604051637d96659360e01b81526001600160a01b03861690637d966593906141c69087908790600401615333565b60206040518083038186803b1580156141de57600080fd5b505afa1580156141f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142169190614e18565b61427b5760405163ea0ee55960e01b81526001600160a01b0386169063ea0ee559906142489087908790600401615333565b600060405180830381600087803b15801561426257600080fd5b505af1158015614276573d6000803e3d6000fd5b505050505b6040516363a90fc160e01b81526001600160a01b038616906363a90fc1906142ab908790879087906004016153c7565b600060405180830381600087803b1580156142c557600080fd5b505af11580156142d9573d6000803e3d6000fd5b50506040516326898fe160e01b81526001600160a01b03881692506326898fe1915061430d9087908790869060040161539b565b600060405180830381600087803b15801561432757600080fd5b505af115801561433b573d6000803e3d6000fd5b505050506106ea565b8051156143635760405162461bcd60e51b81526004016104a590615b8a565b6040516308bafae960e21b81526001600160a01b038616906322ebeba4906143919087908790600401615333565b60206040518083038186803b1580156143a957600080fd5b505afa1580156143bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e1919061516c565b156106ea5760405163a7bdad0360e01b81526060906001600160a01b0387169063a7bdad039061441590889060040161531f565b60006040518083038186803b15801561442d57600080fd5b505afa158015614441573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526144699190810190614d60565b6040516366cb8d2f60e01b81529091506001600160a01b038716906366cb8d2f9061449890889060040161531f565b60206040518083038186803b1580156144b057600080fd5b505afa1580156144c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144e8919061516c565b1580156144f6575080516001145b1561459f57836001600160a01b03168160008151811061451257fe5b60200260200101516001600160a01b0316146145405760405162461bcd60e51b81526004016104a5906159b7565b604051636f86c89760e01b81526001600160a01b03871690636f86c8979061456c90889060040161531f565b600060405180830381600087803b15801561458657600080fd5b505af115801561459a573d6000803e3d6000fd5b505050505b60405163acf3f07760e01b81526001600160a01b0387169063acf3f077906145cd9088908890600401615333565b600060405180830381600087803b1580156145e757600080fd5b505af11580156145fb573d6000803e3d6000fd5b50505050505050505050565b60008282018381101561216d5760405162461bcd60e51b81526004016104a5906156bd565b80516001600160a01b03908116600090815260046020908152604080832060c08601519094168352929052205460ff166146785760405162461bcd60e51b81526004016104a590615875565b80516001600160a01b03908116600090815260056020908152604080832060e08601519094168352929052205460ff166146c45760405162461bcd60e51b81526004016104a5906158a5565b8060e001516001600160a01b03168160c001516001600160a01b031614156146fe5760405162461bcd60e51b81526004016104a590615d95565b6000816080015111611e905760405162461bcd60e51b81526004016104a5906157c6565b600081836147435760405162461bcd60e51b81526004016104a59190615556565b50600083858161474f57fe5b0495945050505050565b6040516373b2e76b60e11b81526000906001600160a01b0383169063e765ced690614788908490600401615e0c565b60206040518083038186803b1580156147a057600080fd5b505afa1580156147b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121709190614ca0565b8015611fba576040516370a0823160e01b81526000906001600160a01b038516906370a082319061480d90889060040161531f565b60206040518083038186803b15801561482557600080fd5b505afa158015614839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061485d919061516c565b905061486b85858585614a7c565b6040516370a0823160e01b81526000906001600160a01b038616906370a082319061489a90899060040161531f565b60206040518083038186803b1580156148b257600080fd5b505afa1580156148c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148ea919061516c565b90506148fc828463ffffffff61292b16565b81146112d55760405162461bcd60e51b81526004016104a590615b1c565b60008061493d614930848863ffffffff61219c16565b869063ffffffff61292b16565b905061495f86614953868463ffffffff61292b16565b9063ffffffff613e4516565b9695505050505050565b600080836001600160a01b03166366cb8d2f846040518263ffffffff1660e01b8152600401614998919061531f565b60206040518083038186803b1580156149b057600080fd5b505afa1580156149c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149e8919061516c565b139392505050565b600080836001600160a01b031663a7bdad03846040518263ffffffff1660e01b8152600401614a1f919061531f565b60006040518083038186803b158015614a3757600080fd5b505afa158015614a4b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614a739190810190614d60565b51119392505050565b8015611fba5760608282604051602401614a979291906153eb565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f033290613b969087906000908690600401615404565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915290565b5080546000825590600052602060002090810190611e9091906112ea91905b808211156121985760008155600101614b5e565b600082601f830112614b82578081fd5b8135614b95614b9082615e3c565b615e15565b818152915060208083019084810181840286018201871015614bb657600080fd5b60005b84811015614bde578135614bcc81615eac565b84529282019290820190600101614bb9565b505050505092915050565b600082601f830112614bf9578081fd5b8135614c07614b9082615e5c565b9150808252836020828501011115614c1e57600080fd5b8060208401602084013760009082016020015292915050565b600082601f830112614c47578081fd5b8151614c55614b9082615e5c565b9150808252836020828501011115614c6c57600080fd5b614c7d816020840160208601615e80565b5092915050565b600060208284031215614c95578081fd5b813561216d81615eac565b600060208284031215614cb1578081fd5b815161216d81615eac565b600080600060608486031215614cd0578182fd5b8351614cdb81615eac565b6020850151909350614cec81615eac565b6040850151909250614cfd81615eac565b809150509250925092565b600080600060608486031215614d1c578283fd5b8351614d2781615eac565b60208501516040860151919450925067ffffffffffffffff811115614d4a578182fd5b614d5686828701614c37565b9150509250925092565b60006020808385031215614d72578182fd5b825167ffffffffffffffff811115614d88578283fd5b80840185601f820112614d99578384fd5b80519150614da9614b9083615e3c565b8281528381019082850185850284018601891015614dc5578687fd5b8693505b84841015614df0578051614ddc81615eac565b835260019390930192918501918501614dc9565b50979650505050505050565b600060208284031215614e0d578081fd5b813561216d81615ec1565b600060208284031215614e29578081fd5b815161216d81615ec1565b600060208284031215614e45578081fd5b815167ffffffffffffffff811115614e5b578182fd5b61292384828501614c37565b60008060408385031215614e79578182fd5b8235614e8481615eac565b9150602083013567ffffffffffffffff811115614e9f578182fd5b614eab85828601614b72565b9150509250929050565b600080600060608486031215614ec9578081fd5b8335614ed481615eac565b9250602084013567ffffffffffffffff80821115614ef0578283fd5b614efc87838801614b72565b93506040860135915080821115614f11578283fd5b50614d5686828701614b72565b60008060408385031215614f30578182fd5b8235614f3b81615eac565b91506020830135614f4b81615ec1565b809150509250929050565b60008060408385031215614f68578182fd5b8235614f7381615eac565b91506020830135614f4b81615eac565b60008060008060008060c08789031215614f9b578384fd5b8635614fa681615eac565b95506020870135614fb681615eac565b94506040870135614fc681615eac565b935060608701359250608087013567ffffffffffffffff80821115614fe9578384fd5b614ff58a838b01614be9565b935060a089013591508082111561500a578283fd5b5061501789828a01614be9565b9150509295509295509295565b600080600080600080600060e0888a03121561503e578485fd5b873561504981615eac565b9650602088013561505981615eac565b9550604088013561506981615eac565b9450606088013593506080880135925060a088013567ffffffffffffffff80821115615093578283fd5b61509f8b838c01614be9565b935060c08a01359150808211156150b4578283fd5b506150c18a828b01614be9565b91505092959891949750929550565b600080604083850312156150e2578182fd5b82356150ed81615eac565b946020939093013593505050565b60008060008060808587031215615110578182fd5b843561511b81615eac565b935060208501359250604085013561513281615eac565b9150606085013561514281615ec1565b939692955090935050565b60006020828403121561515e578081fd5b81516003811061216d578182fd5b60006020828403121561517d578081fd5b5051919050565b6000806000806000806000806000806101408b8d0312156151a3578384fd5b8a51995060208b0151985060408b0151975060608b0151965060808b0151955060a08b01516151d181615ec1565b60c08c01519095506151e281615ec1565b60e08c01519094506151f381615ec1565b6101008c015190935061520581615ec1565b6101208c015190925061521781615ec1565b809150509295989b9194979a5092959850565b60008060008060008060008060006101208a8c031215615248578283fd5b8951985060208a0151975060408a0151965060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a015164ffffffffff8116811461528d578283fd5b6101008b015190925061529f81615ec1565b809150509295985092959850929598565b6000815180845260208085019450808401835b838110156152e85781516001600160a01b0316875295820195908201906001016152c3565b509495945050505050565b6000815180845261530b816020860160208601615e80565b601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b038781168252868116602083015285166040820152606081018490526080810183905260c060a0820181905260009061538f908301846152f3565b98975050505050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612ea2908301846152f3565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b600060018060a01b038516825283602083015260606040830152612ea260608301846152f3565b60006040825261543e60408301856152b0565b8281036020840152612ea281856152b0565b6020808252825182820181905260009190848201906040850190845b818110156154915783516001600160a01b03168352928401929184019160010161546c565b50909695505050505050565b901515815260200190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039485168152928416602084015292166040820152901515606082015260800190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b6001600160a01b03958616815293851660208501529190931660408301526060820192909252608081019190915260a00190565b60006020825261216d60208301846152f3565b602080825260169082015275496e76616c69642061546f6b656e206164647265737360501b604082015260600190565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b6020808252601690820152754d617070696e6720616c72656164792065786973747360501b604082015260600190565b6020808252601a908201527f436f6d706f6e656e74206d757374206265206e65676174697665000000000000604082015260600190565b60208082526028908201527f4d75737420626520612076616c696420616e6420696e697469616c697a65642060408201526729b2ba2a37b5b2b760c11b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526013908201527246726f7a656e2061617665207265736572766560681b604082015260600190565b6020808252601a908201527f436f6c6c61746572616c20616c726561647920656e61626c6564000000000000604082015260600190565b6020808252601e908201527f4d7573742062652070656e64696e6720696e697469616c697a6174696f6e0000604082015260600190565b6020808252601a908201527f426f72726f77696e672064697361626c6564206f6e2041617665000000000000604082015260600190565b6020808252600d908201526c05175616e74697479206973203609c1b604082015260600190565b602080825260149082015273496e76616c69642061617665207265736572766560601b604082015260600190565b60208082526015908201527426bab9ba103132903b30b634b21030b230b83a32b960591b604082015260600190565b6020808252601190820152700a6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604082015260600190565b60208082526016908201527510dbdb1b185d195c985b081b9bdd08195b98589b195960521b604082015260600190565b602080825260129082015271109bdc9c9bddc81b9bdd08195b98589b195960721b604082015260600190565b6020808252818101527f53616665436173743a2076616c7565206d75737420626520706f736974697665604082015260600190565b60208082526023908201527f496e76616c6964207661726961626c65206465627420746f6b656e206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f4f6e6c7920746865206d6f64756c652063616e2063616c6c0000000000000000604082015260600190565b60208082526018908201527f49737375616e6365206e6f7420696e697469616c697a65640000000000000000604082015260600190565b60208082526030908201527f45787465726e616c20706f736974696f6e73206d757374206265203020746f2060408201526f1c995b5bdd994818dbdb5c1bdb995b9d60821b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526010908201526f24b73b30b634b21029b2ba2a37b5b2b760811b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152732737ba1030b63637bbb2b21029b2ba2a37b5b2b760611b604082015260600190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252601d908201527f496e76616c696420706f7374207472616e736665722062616c616e6365000000604082015260600190565b60208082526017908201527f5661726961626c6520646562742072656d61696e696e67000000000000000000604082015260600190565b60208082526018908201527f5061737365642064617461206d757374206265206e756c6c0000000000000000604082015260600190565b60208082526028908201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604082015267371034b73a191a9b60c11b606082015260800190565b60208082526024908201527f4d6f64756c65206d75737420626520656e61626c6564206f6e20636f6e74726f604082015263363632b960e11b606082015260800190565b60208082526023908201527f4d75737420626520636f6e74726f6c6c65722d656e61626c656420536574546f60408201526235b2b760e91b606082015260800190565b6020808252601c908201527f4d7573742062652074686520536574546f6b656e206d616e6167657200000000604082015260600190565b6020808252601b908201527f436f6c6c61746572616c2064697361626c6564206f6e20416176650000000000604082015260600190565b602080825260169082015275426f72726f772062616c616e6365206973207a65726f60501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260169082015275109bdc9c9bddc8185b1c9958591e48195b98589b195960521b604082015260600190565b6020808252602d908201527f436f6c6c61746572616c20616e6420626f72726f77206173736574206d75737460408201526c08189948191a5999995c995b9d609a1b606082015260800190565b60208082526010908201526f043616e742064697669646520627920360841b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715615e3457600080fd5b604052919050565b600067ffffffffffffffff821115615e52578081fd5b5060209081020190565b600067ffffffffffffffff821115615e72578081fd5b50601f01601f191660200190565b60005b83811015615e9b578181015183820152602001615e83565b83811115611fba5750506000910152565b6001600160a01b0381168114611e9057600080fd5b8015158114611e9057600080fdfea26469706673582212204ff7d3d92604311a6145fbd9a7b4faab9925c806550f27b1d3fed69669323f3764736f6c634300060a0033000000000000000000000000a4c8d221d8bb851f83aadd0223a8900a6921a349000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c8063847ef08d11610104578063c153dd07116100a2578063ee78244f11610071578063ee78244f146103c6578063f2fde38b146103d9578063f77c4791146103ec578063ffbad25c146103f4576101da565b8063c153dd0714610246578063c690a74c14610380578063d4fd27eb14610393578063e4e9ce92146103b3576101da565b8063b1c02678116100de578063b1c026781461033c578063b1dd4d921461035d578063bba00ba514610365578063c137f4d71461036d576101da565b8063847ef08d146103195780638da5cb5b14610321578063a584119414610329576101da565b80634fdd283c1161017c5780635b1365121161014b5780635b136512146102d8578063715018a6146102eb578063717ca2a5146102f35780637c7a624e14610306576101da565b80634fdd283c1461028c578063516595fc1461029f5780635199e418146102b25780635809ae27146102c5576101da565b80633f843bce116101b85780633f843bce146102315780633fe6106b14610246578063427eddb5146102595780634a200fa514610279576101da565b806302577224146101df5780630df96ef6146102095780630fb96b211461021e575b600080fd5b6101f26101ed366004614c84565b610407565b604051610200929190615333565b60405180910390f35b61021c610217366004614e67565b61042d565b005b61021c61022c3660046150fb565b6105fc565b6102396106f1565b604051610200919061531f565b61021c6102543660046150d0565b610715565b61026c610267366004614f56565b61072d565b604051610200919061549d565b61021c610287366004614eb5565b61074d565b61021c61029a366004615024565b6109d2565b61021c6102ad366004614e67565b610afc565b61021c6102c0366004614dfc565b610b10565b61021c6102d3366004614e67565b610b82565b61021c6102e6366004614f56565b610c95565b61021c610d91565b61021c610301366004614e67565b610e10565b61021c610314366004614c84565b610e24565b61021c610f31565b6102396112dd565b61021c610337366004614c84565b6112ed565b61034f61034a366004614c84565b611671565b60405161020092919061542b565b61026c61174f565b610239611758565b61021c61037b3660046150fb565b61177c565b61021c61038e366004614f1e565b611862565b6103a66103a1366004614f83565b6119aa565b6040516102009190615e0c565b61026c6103c1366004614f56565b611c36565b61026c6103d4366004614c84565b611c56565b61021c6103e7366004614c84565b611c6b565b610239611d22565b61021c610402366004615024565b611d31565b600360205260009081526040902080546001909101546001600160a01b03918216911682565b8161043781611e45565b60005b82518110156105b157600083828151811061045157fe5b6020908102919091018101516001600160a01b0380881660009081526005845260408082209284168252919093529091205490915060ff166104ae5760405162461bcd60e51b81526004016104a5906158a5565b60405180910390fd5b6001600160a01b03808216600090815260036020526040908190206001015490516370a0823160e01b81529116906370a08231906104f090889060040161531f565b60206040518083038186803b15801561050857600080fd5b505afa15801561051c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610540919061516c565b1561055d5760405162461bcd60e51b81526004016104a590615b53565b6001600160a01b0380861660008181526005602090815260408083209486168352938152838220805460ff191690559181526006909152206105a8906001018263ffffffff611e9316565b5060010161043a565b5060001515836001600160a01b03167f1c400b459725a0446742d6688375dffe941d5f9a65fe3900c93e07d9e772250b846040516105ef9190615450565b60405180910390a3505050565b8361060681611fc0565b816106ea576040516308bafae960e21b81526000906001600160a01b038716906322ebeba49061063c9087903090600401615333565b60206040518083038186803b15801561065457600080fd5b505afa158015610668573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061068c919061516c565b9050600081126106ae5760405162461bcd60e51b81526004016104a5906155f8565b60006106da866106ce6106c98560001963ffffffff61210216565b612176565b9063ffffffff61219c16565b90506106e78786836121c6565b50505b5050505050565b7f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d81565b8161071f81611fc0565b610728836112ed565b505050565b600460209081526000928352604080842090915290825290205460ff1681565b82336107598282612262565b8461076381612288565b60085460ff166107a5576001600160a01b03861660009081526007602052604090205460ff166107a55760405162461bcd60e51b81526004016104a590615aa7565b856001600160a01b0316630ffe0f1e6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156107e057600080fd5b505af11580156107f4573d6000803e3d6000fd5b50505050856001600160a01b031663d7f1b27c61083d6040518060400160405280601581526020017444656661756c7449737375616e63654d6f64756c6560581b815250612349565b6040518263ffffffff1660e01b8152600401610859919061531f565b60206040518083038186803b15801561087157600080fd5b505afa158015610885573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108a99190614e18565b6108c55760405162461bcd60e51b81526004016104a590615980565b6060866001600160a01b031663b2494df36040518163ffffffff1660e01b815260040160006040518083038186803b15801561090057600080fd5b505afa158015610914573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160405261093c9190810190614d60565b905060005b81518110156109bd5781818151811061095657fe5b60200260200101516001600160a01b031663d9b1b6e0896040518263ffffffff1660e01b8152600401610989919061531f565b600060405180830381600087803b1580156109a357600080fd5b505af19250505080156109b4575060015b50600101610941565b506109c88787612367565b6106e78786612454565b600260015414156109f55760405162461bcd60e51b81526004016104a590615d2e565b600260015586610a0481611e45565b610a0c614af3565b610a1c898989898989600061252b565b9050610a36816000015182602001518a84608001516125e3565b6000610a44828a8a87612679565b90506000610a538b8a84612908565b90506000610a67838363ffffffff61292b16565b9050610a7d846000015185602001518c8461296d565b610a87848b6129d1565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f7cda30123ddfc96659344700585861a8670352b9cc86d1b1054d10083b1dcdd4876040015188608001518688604051610ae294939291906154a8565b60405180910390a450506001805550505050505050505050565b81610b0681611e45565b6107288383612454565b610b18612a97565b6002546001600160a01b03908116911614610b455760405162461bcd60e51b81526004016104a590615a72565b6008805460ff19168215159081179091556040517f563e1633136cdd43b8793897cb53ba2a9e31c18b3ae0b6827fbbb03b9902e6c690600090a250565b81610b8c81611e45565b60005b8251811015610c57576000838281518110610ba657fe5b6020908102919091018101516001600160a01b0380881660009081526004845260408082209284168252919093529091205490915060ff16610bfa5760405162461bcd60e51b81526004016104a590615875565b610c0685826000612a9b565b6001600160a01b0380861660008181526004602090815260408083209486168352938152838220805460ff19169055918152600690915220610c4e908263ffffffff611e9316565b50600101610b8f565b5060001515836001600160a01b03167fdd2a86f23a66f86496c82312e991b49f87ad96c4f25094a43c49f7aca0ea3542846040516105ef9190615450565b81610c9f81611e45565b6040516335fc6c9f60e21b81526001600160a01b0384169063d7f1b27c90610ccb90859060040161531f565b60206040518083038186803b158015610ce357600080fd5b505afa158015610cf7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d1b9190614e18565b610d375760405162461bcd60e51b81526004016104a590615980565b6040516306cd8db760e51b81526001600160a01b0383169063d9b1b6e090610d6390869060040161531f565b600060405180830381600087803b158015610d7d57600080fd5b505af11580156106e7573d6000803e3d6000fd5b610d99612a97565b6002546001600160a01b03908116911614610dc65760405162461bcd60e51b81526004016104a590615a72565b6002546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600280546001600160a01b0319169055565b81610e1a81611e45565b6107288383612367565b6001600160a01b038181166000908152600360205260409020541615610e5c5760405162461bcd60e51b81526004016104a5906155c8565b604051633e15014160e01b81526000906001600160a01b037f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d1690633e15014190610eab90859060040161531f565b6101406040518083038186803b158015610ec457600080fd5b505afa158015610ed8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610efc9190615184565b509850505050505050505080610f245760405162461bcd60e51b81526004016104a5906157ed565b610f2d82612cfa565b5050565b33610f3b81611e6b565b33610f45816112ed565b6001600160a01b038116600090815260066020908152604091829020600101805483518184028101840190945280845260609392830182828015610fb257602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610f94575b50939450600093505050505b81518110156110cd576000828281518110610fd557fe5b6020908102919091018101516001600160a01b03808216600090815260039093526040928390206001015492516370a0823160e01b815291935091909116906370a082319061102890879060040161531f565b60206040518083038186803b15801561104057600080fd5b505afa158015611054573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611078919061516c565b156110955760405162461bcd60e51b81526004016104a590615b53565b6001600160a01b038085166000908152600560209081526040808320949093168252929092529020805460ff19169055600101610fbe565b506001600160a01b03821660009081526006602090815260409182902080548351818402810184019094528084526060939283018282801561113857602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161111a575b50939450600093505050505b81518110156111a957600082828151811061115b57fe5b6020026020010151905061117185826000612a9b565b6001600160a01b038086166000908152600460209081526040808320949093168252929092529020805460ff19169055600101611144565b506001600160a01b0383166000908152600660205260408120906111cd8282614b3f565b6111db600183016000614b3f565b50506060836001600160a01b031663b2494df36040518163ffffffff1660e01b815260040160006040518083038186803b15801561121857600080fd5b505afa15801561122c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112549190810190614d60565b905060005b81518110156112d55781818151811061126e57fe5b60200260200101516001600160a01b031663e0799620866040518263ffffffff1660e01b81526004016112a1919061531f565b600060405180830381600087803b1580156112bb57600080fd5b505af19250505080156112cc575060015b50600101611259565b505050505050565b6002546001600160a01b03165b90565b600260015414156113105760405162461bcd60e51b81526004016104a590615d2e565b60026001558061131f81611e6b565b6000826001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561135a57600080fd5b505afa15801561136e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611392919061516c565b90508015611668576001600160a01b03831660009081526006602090815260409182902080548351818402810184019094528084526060939283018282801561140457602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116113e6575b50939450600093505050505b815181101561151b5760006003600084848151811061142b57fe5b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060000160009054906101000a90046001600160a01b0316905060006114ed876001600160a01b03166366cb8d2f846040518263ffffffff1660e01b815260040161149d919061531f565b60206040518083038186803b1580156114b557600080fd5b505afa1580156114c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106c9919061516c565b905060006114fc888488612e11565b905080821461151057611510888483612eab565b505050600101611410565b506001600160a01b03841660009081526006602090815260409182902060010180548351818402810184019094528084526060939283018282801561158957602002820191906000526020600020905b81546001600160a01b0316815260019091019060200180831161156b575b50939450600093505050505b81518110156116645760008282815181106115ac57fe5b602002602001015190506000876001600160a01b03166322ebeba483306040518363ffffffff1660e01b81526004016115e6929190615333565b60206040518083038186803b1580156115fe57600080fd5b505afa158015611612573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611636919061516c565b90506000611645898489612ec5565b905081811461165957611659898483612f86565b505050600101611595565b5050505b50506001805550565b6001600160a01b03811660009081526006602090815260409182902080548351818402810184019094528084526060938493600184019284918301828280156116e357602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116116c5575b505050505091508080548060200260200160405190810160405280929190818152602001828054801561173f57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611721575b5050505050905091509150915091565b60085460ff1681565b7f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c581565b8361178681611fc0565b816106ea576040516308bafae960e21b81526000906001600160a01b038716906322ebeba4906117bc9087903090600401615333565b60206040518083038186803b1580156117d457600080fd5b505afa1580156117e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061180c919061516c565b90506000811261182e5760405162461bcd60e51b81526004016104a5906155f8565b6000611855866118496106c98560001963ffffffff61210216565b9063ffffffff612fb516565b90506106e7878683613000565b61186a612a97565b6002546001600160a01b039081169116146118975760405162461bcd60e51b81526004016104a590615a72565b600054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec906118c790859060040161531f565b60206040518083038186803b1580156118df57600080fd5b505afa1580156118f3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119179190614e18565b8061193a57506001600160a01b03821660009081526007602052604090205460ff165b6119565760405162461bcd60e51b81526004016104a590615a48565b6001600160a01b038216600081815260076020526040808220805460ff191685151590811790915590519092917f2035981b48691b10f6ac65174e570b4d0a8a889ae01bef3e5e7759ff9444f0c491a35050565b6000600260015414156119cf5760405162461bcd60e51b81526004016104a590615d2e565b6002600155866119de81611e45565b6000886001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611a1957600080fd5b505afa158015611a2d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a51919061516c565b90506000611a65878363ffffffff61219c16565b6001600160a01b03808c166000908152600560209081526040808320938d168352929052205490915060ff16611aad5760405162461bcd60e51b81526004016104a5906158a5565b6001600160a01b038089166000908152600360205260408082206001015490516370a0823160e01b8152919216906370a0823190611aef908e9060040161531f565b60206040518083038186803b158015611b0757600080fd5b505afa158015611b1b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b3f919061516c565b905060008111611b615760405162461bcd60e51b81526004016104a590615cfe565b611b69614af3565b611b7a8c8c8c86868d60008b61309c565b9050611b94816000015182602001518d84608001516125e3565b611ba0818c8c8a612679565b50611bb5816000015182602001518c8561296d565b611bbf818b6129d1565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f7cda30123ddfc96659344700585861a8670352b9cc86d1b1054d10083b1dcdd484604001518560800151876000604051611c1b94939291906154a8565b60405180910390a450600180559a9950505050505050505050565b600560209081526000928352604080842090915290825290205460ff1681565b60076020526000908152604090205460ff1681565b611c73612a97565b6002546001600160a01b03908116911614611ca05760405162461bcd60e51b81526004016104a590615a72565b6001600160a01b038116611cc65760405162461bcd60e51b81526004016104a590615677565b6002546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600280546001600160a01b0319166001600160a01b0392909216919091179055565b6000546001600160a01b031681565b60026001541415611d545760405162461bcd60e51b81526004016104a590615d2e565b600260015586611d6381611e45565b611d6b614af3565b611d7b898989898989600161252b565b9050611d99816000015182602001518360e00151846080015161324e565b6000611da7828a8a87612679565b90506000611db68b8a84612908565b90506000611dca838363ffffffff61292b16565b9050611de0846000015185602001518c84613296565b611dea848c6132f7565b896001600160a01b03168b6001600160a01b03168d6001600160a01b03167f359f8b62a966cfd521a3815681266407201b20a7c334925faa49e7d9d5dd57ab876040015188608001518688604051610ae294939291906154a8565b611e4f813361335b565b611e6b5760405162461bcd60e51b81526004016104a590615c90565b611e74816133e9565b611e905760405162461bcd60e51b81526004016104a59061562f565b50565b600080611ef984805480602002602001604051908101604052809291908181526020018280548015611eee57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311611ed0575b5050505050846134ed565b9150915080611f1a5760405162461bcd60e51b81526004016104a590615599565b835460001901828114611f8c57848181548110611f3357fe5b9060005260206000200160009054906101000a90046001600160a01b0316858481548110611f5d57fe5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b84805480611f9657fe5b600082815260209020810160001990810180546001600160a01b0319169055019055505b50505050565b6002604051631ade272960e11b81526001600160a01b038316906335bc4e5290611fee90339060040161531f565b60206040518083038186803b15801561200657600080fd5b505afa15801561201a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061203e919061514d565b600281111561204957fe5b146120665760405162461bcd60e51b81526004016104a590615949565b6000546040516342f6e38960e01b81526001600160a01b03909116906342f6e3899061209690339060040161531f565b60206040518083038186803b1580156120ae57600080fd5b505afa1580156120c2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120e69190614e18565b611e905760405162461bcd60e51b81526004016104a590615c09565b60008261211157506000612170565b826000191480156121255750600160ff1b82145b156121425760405162461bcd60e51b81526004016104a590615ad5565b8282028284828161214f57fe5b051461216d5760405162461bcd60e51b81526004016104a590615ad5565b90505b92915050565b6000808212156121985760405162461bcd60e51b81526004016104a5906158d1565b5090565b600061216d670de0b6b3a76400006121ba858563ffffffff61355316565b9063ffffffff61358d16565b610728837f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c56001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561222357600080fd5b505afa158015612237573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061225b9190614ca0565b848461324e565b61226c828261335b565b610f2d5760405162461bcd60e51b81526004016104a590615c90565b600054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec906122b890849060040161531f565b60206040518083038186803b1580156122d057600080fd5b505afa1580156122e4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123089190614e18565b6123245760405162461bcd60e51b81526004016104a590615c4d565b61232d816135cf565b611e905760405162461bcd60e51b81526004016104a590615758565b600080612355836135fe565b905061236081613609565b9392505050565b60005b815181101561240a57600082828151811061238157fe5b6020026020010151905061239584826136c6565b6123a184826001612a9b565b6001600160a01b03808516600081815260046020908152604080832095909416808352948152838220805460ff19166001908117909155928252600681529281208054808401825590825292902090910180546001600160a01b0319169092179091550161236a565b5060011515826001600160a01b03167fdd2a86f23a66f86496c82312e991b49f87ad96c4f25094a43c49f7aca0ea3542836040516124489190615450565b60405180910390a35050565b60005b81518110156124ed57600082828151811061246e57fe5b6020026020010151905061248284826138f3565b6001600160a01b03808516600081815260056020908152604080832095909416808352948152838220805460ff191660019081179091559282526006815292812082018054808401825590825292902090910180546001600160a01b03191690921790915501612457565b5060011515826001600160a01b03167f1c400b459725a0446742d6688375dffe941d5f9a65fe3900c93e07d9e772250b836040516124489190615450565b612533614af3565b6000886001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561256e57600080fd5b505afa158015612582573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125a6919061516c565b90506125d68989896125be8a8663ffffffff61219c16565b6125ce8a8763ffffffff61219c16565b89898861309c565b9998505050505050505050565b60405163ab36d4d560e01b815273034820a152d42445344f63f7de495dbd26f51ad19063ab36d4d590612629906001600160a01b038816908790879087906004016154f8565b60206040518083038186803b15801561264157600080fd5b505af4158015612655573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106ea919061516c565b6000808560000151905060008660800151905061271d8688604001516001600160a01b031663334fc2896040518163ffffffff1660e01b815260040160206040518083038186803b1580156126cd57600080fd5b505afa1580156126e1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127059190614ca0565b6001600160a01b03851691908463ffffffff613b2516565b600080606089604001516001600160a01b031663e171fcab8a8a88888f60a001518d6040518763ffffffff1660e01b81526004016127609695949392919061534d565b60006040518083038186803b15801561277857600080fd5b505afa15801561278c573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526127b49190810190614d08565b925092509250846001600160a01b0316638f6f03328484846040518463ffffffff1660e01b81526004016127ea93929190615404565b600060405180830381600087803b15801561280457600080fd5b505af1158015612818573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526128409190810190614e34565b5060006128d48b61010001518a6001600160a01b03166370a08231896040518263ffffffff1660e01b8152600401612878919061531f565b60206040518083038186803b15801561289057600080fd5b505afa1580156128a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128c8919061516c565b9063ffffffff61292b16565b90508a60a001518110156128fa5760405162461bcd60e51b81526004016104a59061584a565b9a9950505050505050505050565b600080612916600084613bec565b9050612923858583613c81565b949350505050565b600061216d83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250613d28565b6129886001600160a01b03851683858463ffffffff613b2516565b604051630cca200b60e31b815273034820a152d42445344f63f7de495dbd26f51ad190636651005890612629906001600160a01b03881690879087908790600290600401615522565b81516040516370a0823160e01b81526000916001600160a01b038416916370a0823191612a009160040161531f565b60206040518083038186803b158015612a1857600080fd5b505afa158015612a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612a50919061516c565b90508261010001518114612a8d5760608301516101008401518451612a89926001600160a01b039091169185919063ffffffff613d5416565b5050505b61072883836132f7565b3390565b6040516328dd2d0160e01b81526000906001600160a01b037f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d16906328dd2d0190612aec9086908890600401615333565b6101206040518083038186803b158015612b0557600080fd5b505afa158015612b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b3d919061522a565b9850505050505050505081151581151514158015612be757506001600160a01b038084166000908152600360205260408082205490516370a0823160e01b8152919216906370a0823190612b9590889060040161531f565b60206040518083038186803b158015612bad57600080fd5b505afa158015612bc1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612be5919061516c565b115b15611fba57836001600160a01b031673034820a152d42445344f63f7de495dbd26f51ad16378c8823990917f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c56001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b158015612c6b57600080fd5b505afa158015612c7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ca39190614ca0565b86866040518563ffffffff1660e01b8152600401612cc494939291906154ce565b60006040518083038186803b158015612cdc57600080fd5b505af4158015612cf0573d6000803e3d6000fd5b5050505050505050565b6000807f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d6001600160a01b031663d2493b6c846040518263ffffffff1660e01b8152600401612d49919061531f565b60606040518083038186803b158015612d6157600080fd5b505afa158015612d75573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612d999190614cbc565b6001600160a01b0380871660008181526003602052604080822080548589166001600160a01b03199182168117835560019092018054968816969091168617905590519698509396509194929350917fc45243255b6bdd38d8648b8c5e5b9429c7143b47e850cad1601dc1edbb6a3b5b9190a4505050565b600080836001600160a01b03166370a08231866040518263ffffffff1660e01b8152600401612e40919061531f565b60206040518083038186803b158015612e5857600080fd5b505afa158015612e6c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e90919061516c565b9050612ea2818463ffffffff613e4516565b95945050505050565b6107286001600160a01b038416838363ffffffff613e6316565b6001600160a01b038083166000908152600360205260408082206001015490516370a0823160e01b8152919283929116906370a0823190612f0a90889060040161531f565b60206040518083038186803b158015612f2257600080fd5b505afa158015612f36573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612f5a919061516c565b9050612ea2600019612f7a612f75848763ffffffff613fd716565b61402a565b9063ffffffff61210216565b604080516020810190915260008152610728906001600160a01b0385169084903090859063ffffffff61404f16565b6000821580612fc2575081155b15612fcf57506000612170565b61216d6001612ff4670de0b6b3a76400006121ba836128c8898963ffffffff61355316565b9063ffffffff61460716565b610728837f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c56001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561305d57600080fd5b505afa158015613071573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906130959190614ca0565b848461296d565b6130a4614af3565b6130ac614af3565b6040518061012001604052808b6001600160a01b031681526020017f000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c56001600160a01b0316630261bf8b6040518163ffffffff1660e01b815260040160206040518083038186803b15801561312057600080fd5b505afa158015613134573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906131589190614ca0565b6001600160a01b0316815260200161316f87612349565b6001600160a01b031681526020018481526020018881526020018781526020018561319a578a61319c565b895b6001600160a01b03168152602001856131b557896131b7565b8a5b6001600160a01b03168152602001896001600160a01b03166370a082318d6040518263ffffffff1660e01b81526004016131f1919061531f565b60206040518083038186803b15801561320957600080fd5b505afa15801561321d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613241919061516c565b905290506125d68161462c565b60405162b0489960e41b815273034820a152d42445344f63f7de495dbd26f51ad190630b04899090612cc4906001600160a01b03881690879087908790600290600401615522565b6132b16001600160a01b03851683858463ffffffff613b2516565b604051630460b91f60e41b815273034820a152d42445344f63f7de495dbd26f51ad19063460b91f090612cc4906001600160a01b038816908790879087906004016154f8565b60c08201516001600160a01b0390811660009081526003602052604090205483516060850151919092169161333a9183906133359083908390612e11565b612eab565b6107288360000151836133568660000151868860600151612ec5565b612f86565b6000816001600160a01b0316836001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156133a057600080fd5b505afa1580156133b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906133d89190614ca0565b6001600160a01b0316149392505050565b60008054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec9061341a90859060040161531f565b60206040518083038186803b15801561343257600080fd5b505afa158015613446573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061346a9190614e18565b801561217057506040516335fc6c9f60e21b81526001600160a01b0383169063d7f1b27c9061349d90309060040161531f565b60206040518083038186803b1580156134b557600080fd5b505afa1580156134c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121709190614e18565b81516000908190815b8181101561354057846001600160a01b031686828151811061351457fe5b60200260200101516001600160a01b031614156135385792506001915061354c9050565b6001016134f6565b50600019600092509250505b9250929050565b60008261356257506000612170565b8282028284828161356f57fe5b041461216d5760405162461bcd60e51b81526004016104a590615a07565b600061216d83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250614722565b6040516353bae5f760e01b81526000906001600160a01b038316906353bae5f79061349d90309060040161531f565b805160209091012090565b600080548190613621906001600160a01b0316614759565b6001600160a01b031663e6d642c530856040518363ffffffff1660e01b815260040161364e9291906153eb565b60206040518083038186803b15801561366657600080fd5b505afa15801561367a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061369e9190614ca0565b90506001600160a01b0381166121705760405162461bcd60e51b81526004016104a59061581b565b6001600160a01b0380831660009081526004602090815260408083209385168352929052205460ff161561370c5760405162461bcd60e51b81526004016104a590615721565b6040516334924edb60e21b81526000906001600160a01b037f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d169063d2493b6c9061375b90859060040161531f565b60606040518083038186803b15801561377357600080fd5b505afa158015613787573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137ab9190614cbc565b50506001600160a01b038381166000908152600360205260409020549192508281169116146137ec5760405162461bcd60e51b81526004016104a590615569565b60008060007f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d6001600160a01b0316633e150141866040518263ffffffff1660e01b815260040161383d919061531f565b6101406040518083038186803b15801561385657600080fd5b505afa15801561386a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061388e9190615184565b99509950505097505050505050816138b85760405162461bcd60e51b81526004016104a5906157ed565b80156138d65760405162461bcd60e51b81526004016104a5906156f4565b826112d55760405162461bcd60e51b81526004016104a590615cc7565b6001600160a01b0380831660009081526005602090815260408083209385168352929052205460ff16156139395760405162461bcd60e51b81526004016104a590615d65565b6040516334924edb60e21b81526000906001600160a01b037f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d169063d2493b6c9061398890859060040161531f565b60606040518083038186803b1580156139a057600080fd5b505afa1580156139b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139d89190614cbc565b6001600160a01b038581166000908152600360205260409020600101549194508481169116149150613a1e90505760405162461bcd60e51b81526004016104a590615906565b60008060007f000000000000000000000000057835ad21a177dbdd3090bb1cae03eacf78fc6d6001600160a01b0316633e150141866040518263ffffffff1660e01b8152600401613a6f919061531f565b6101406040518083038186803b158015613a8857600080fd5b505afa158015613a9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ac09190615184565b9950995050985050505050505081613aea5760405162461bcd60e51b81526004016104a5906157ed565b8015613b085760405162461bcd60e51b81526004016104a5906156f4565b826112d55760405162461bcd60e51b81526004016104a59061578f565b60608282604051602401613b3a9291906153eb565b60408051601f198184030181529181526020820180516001600160e01b031663095ea7b360e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f033290613b969087906000908690600401615404565b600060405180830381600087803b158015613bb057600080fd5b505af1158015613bc4573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526112d59190810190614e34565b6000805460405163792aa04f60e01b815282916001600160a01b03169063792aa04f90613c1f90309088906004016153eb565b60206040518083038186803b158015613c3757600080fd5b505afa158015613c4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613c6f919061516c565b9050612923838263ffffffff61219c16565b801561072857610728826000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b158015613cd857600080fd5b505afa158015613cec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613d109190614ca0565b6001600160a01b03861691908463ffffffff6147d816565b60008184841115613d4c5760405162461bcd60e51b81526004016104a59190615556565b505050900390565b600080600080866001600160a01b03166370a08231896040518263ffffffff1660e01b8152600401613d86919061531f565b60206040518083038186803b158015613d9e57600080fd5b505afa158015613db2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613dd6919061516c565b90506000613e09896001600160a01b03166366cb8d2f8a6040518263ffffffff1660e01b815260040161149d919061531f565b905060008215613e2657613e1f8888858561491a565b9050613e2a565b5060005b613e358a8a83613e63565b9199909850909650945050505050565b600061216d826121ba85670de0b6b3a764000063ffffffff61355316565b6000613e6f8484614969565b905080158015613e7f5750600082115b15613ef657613e8e84846149f0565b613ef1576040516304e3532760e41b81526001600160a01b03851690634e35327090613ebe90869060040161531f565b600060405180830381600087803b158015613ed857600080fd5b505af1158015613eec573d6000803e3d6000fd5b505050505b613f73565b808015613f01575081155b15613f7357613f1084846149f0565b613f7357604051636f86c89760e01b81526001600160a01b03851690636f86c89790613f4090869060040161531f565b600060405180830381600087803b158015613f5a57600080fd5b505af1158015613f6e573d6000803e3d6000fd5b505050505b836001600160a01b0316632ba57d1784613f8c8561402a565b6040518363ffffffff1660e01b8152600401613fa99291906153eb565b600060405180830381600087803b158015613fc357600080fd5b505af1158015612cf0573d6000803e3d6000fd5b600081613ff65760405162461bcd60e51b81526004016104a590615de2565b6000831161400557600061216d565b61216d6001612ff4846121ba836128c889670de0b6b3a764000063ffffffff61355316565b6000600160ff1b82106121985760405162461bcd60e51b81526004016104a590615bc1565b81156143445760405163df5e9b2960e01b81526001600160a01b0386169063df5e9b299061408190879060040161531f565b60206040518083038186803b15801561409957600080fd5b505afa1580156140ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906140d19190614e18565b614198576040516304e3532760e41b81526001600160a01b03861690634e3532709061410190879060040161531f565b600060405180830381600087803b15801561411b57600080fd5b505af115801561412f573d6000803e3d6000fd5b505060405163ea0ee55960e01b81526001600160a01b038816925063ea0ee55991506141619087908790600401615333565b600060405180830381600087803b15801561417b57600080fd5b505af115801561418f573d6000803e3d6000fd5b5050505061427b565b604051637d96659360e01b81526001600160a01b03861690637d966593906141c69087908790600401615333565b60206040518083038186803b1580156141de57600080fd5b505afa1580156141f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142169190614e18565b61427b5760405163ea0ee55960e01b81526001600160a01b0386169063ea0ee559906142489087908790600401615333565b600060405180830381600087803b15801561426257600080fd5b505af1158015614276573d6000803e3d6000fd5b505050505b6040516363a90fc160e01b81526001600160a01b038616906363a90fc1906142ab908790879087906004016153c7565b600060405180830381600087803b1580156142c557600080fd5b505af11580156142d9573d6000803e3d6000fd5b50506040516326898fe160e01b81526001600160a01b03881692506326898fe1915061430d9087908790869060040161539b565b600060405180830381600087803b15801561432757600080fd5b505af115801561433b573d6000803e3d6000fd5b505050506106ea565b8051156143635760405162461bcd60e51b81526004016104a590615b8a565b6040516308bafae960e21b81526001600160a01b038616906322ebeba4906143919087908790600401615333565b60206040518083038186803b1580156143a957600080fd5b505afa1580156143bd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906143e1919061516c565b156106ea5760405163a7bdad0360e01b81526060906001600160a01b0387169063a7bdad039061441590889060040161531f565b60006040518083038186803b15801561442d57600080fd5b505afa158015614441573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526144699190810190614d60565b6040516366cb8d2f60e01b81529091506001600160a01b038716906366cb8d2f9061449890889060040161531f565b60206040518083038186803b1580156144b057600080fd5b505afa1580156144c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906144e8919061516c565b1580156144f6575080516001145b1561459f57836001600160a01b03168160008151811061451257fe5b60200260200101516001600160a01b0316146145405760405162461bcd60e51b81526004016104a5906159b7565b604051636f86c89760e01b81526001600160a01b03871690636f86c8979061456c90889060040161531f565b600060405180830381600087803b15801561458657600080fd5b505af115801561459a573d6000803e3d6000fd5b505050505b60405163acf3f07760e01b81526001600160a01b0387169063acf3f077906145cd9088908890600401615333565b600060405180830381600087803b1580156145e757600080fd5b505af11580156145fb573d6000803e3d6000fd5b50505050505050505050565b60008282018381101561216d5760405162461bcd60e51b81526004016104a5906156bd565b80516001600160a01b03908116600090815260046020908152604080832060c08601519094168352929052205460ff166146785760405162461bcd60e51b81526004016104a590615875565b80516001600160a01b03908116600090815260056020908152604080832060e08601519094168352929052205460ff166146c45760405162461bcd60e51b81526004016104a5906158a5565b8060e001516001600160a01b03168160c001516001600160a01b031614156146fe5760405162461bcd60e51b81526004016104a590615d95565b6000816080015111611e905760405162461bcd60e51b81526004016104a5906157c6565b600081836147435760405162461bcd60e51b81526004016104a59190615556565b50600083858161474f57fe5b0495945050505050565b6040516373b2e76b60e11b81526000906001600160a01b0383169063e765ced690614788908490600401615e0c565b60206040518083038186803b1580156147a057600080fd5b505afa1580156147b4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121709190614ca0565b8015611fba576040516370a0823160e01b81526000906001600160a01b038516906370a082319061480d90889060040161531f565b60206040518083038186803b15801561482557600080fd5b505afa158015614839573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061485d919061516c565b905061486b85858585614a7c565b6040516370a0823160e01b81526000906001600160a01b038616906370a082319061489a90899060040161531f565b60206040518083038186803b1580156148b257600080fd5b505afa1580156148c6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906148ea919061516c565b90506148fc828463ffffffff61292b16565b81146112d55760405162461bcd60e51b81526004016104a590615b1c565b60008061493d614930848863ffffffff61219c16565b869063ffffffff61292b16565b905061495f86614953868463ffffffff61292b16565b9063ffffffff613e4516565b9695505050505050565b600080836001600160a01b03166366cb8d2f846040518263ffffffff1660e01b8152600401614998919061531f565b60206040518083038186803b1580156149b057600080fd5b505afa1580156149c4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906149e8919061516c565b139392505050565b600080836001600160a01b031663a7bdad03846040518263ffffffff1660e01b8152600401614a1f919061531f565b60006040518083038186803b158015614a3757600080fd5b505afa158015614a4b573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052614a739190810190614d60565b51119392505050565b8015611fba5760608282604051602401614a979291906153eb565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f033290613b969087906000908690600401615404565b6040805161012081018252600080825260208201819052918101829052606081018290526080810182905260a0810182905260c0810182905260e0810182905261010081019190915290565b5080546000825590600052602060002090810190611e9091906112ea91905b808211156121985760008155600101614b5e565b600082601f830112614b82578081fd5b8135614b95614b9082615e3c565b615e15565b818152915060208083019084810181840286018201871015614bb657600080fd5b60005b84811015614bde578135614bcc81615eac565b84529282019290820190600101614bb9565b505050505092915050565b600082601f830112614bf9578081fd5b8135614c07614b9082615e5c565b9150808252836020828501011115614c1e57600080fd5b8060208401602084013760009082016020015292915050565b600082601f830112614c47578081fd5b8151614c55614b9082615e5c565b9150808252836020828501011115614c6c57600080fd5b614c7d816020840160208601615e80565b5092915050565b600060208284031215614c95578081fd5b813561216d81615eac565b600060208284031215614cb1578081fd5b815161216d81615eac565b600080600060608486031215614cd0578182fd5b8351614cdb81615eac565b6020850151909350614cec81615eac565b6040850151909250614cfd81615eac565b809150509250925092565b600080600060608486031215614d1c578283fd5b8351614d2781615eac565b60208501516040860151919450925067ffffffffffffffff811115614d4a578182fd5b614d5686828701614c37565b9150509250925092565b60006020808385031215614d72578182fd5b825167ffffffffffffffff811115614d88578283fd5b80840185601f820112614d99578384fd5b80519150614da9614b9083615e3c565b8281528381019082850185850284018601891015614dc5578687fd5b8693505b84841015614df0578051614ddc81615eac565b835260019390930192918501918501614dc9565b50979650505050505050565b600060208284031215614e0d578081fd5b813561216d81615ec1565b600060208284031215614e29578081fd5b815161216d81615ec1565b600060208284031215614e45578081fd5b815167ffffffffffffffff811115614e5b578182fd5b61292384828501614c37565b60008060408385031215614e79578182fd5b8235614e8481615eac565b9150602083013567ffffffffffffffff811115614e9f578182fd5b614eab85828601614b72565b9150509250929050565b600080600060608486031215614ec9578081fd5b8335614ed481615eac565b9250602084013567ffffffffffffffff80821115614ef0578283fd5b614efc87838801614b72565b93506040860135915080821115614f11578283fd5b50614d5686828701614b72565b60008060408385031215614f30578182fd5b8235614f3b81615eac565b91506020830135614f4b81615ec1565b809150509250929050565b60008060408385031215614f68578182fd5b8235614f7381615eac565b91506020830135614f4b81615eac565b60008060008060008060c08789031215614f9b578384fd5b8635614fa681615eac565b95506020870135614fb681615eac565b94506040870135614fc681615eac565b935060608701359250608087013567ffffffffffffffff80821115614fe9578384fd5b614ff58a838b01614be9565b935060a089013591508082111561500a578283fd5b5061501789828a01614be9565b9150509295509295509295565b600080600080600080600060e0888a03121561503e578485fd5b873561504981615eac565b9650602088013561505981615eac565b9550604088013561506981615eac565b9450606088013593506080880135925060a088013567ffffffffffffffff80821115615093578283fd5b61509f8b838c01614be9565b935060c08a01359150808211156150b4578283fd5b506150c18a828b01614be9565b91505092959891949750929550565b600080604083850312156150e2578182fd5b82356150ed81615eac565b946020939093013593505050565b60008060008060808587031215615110578182fd5b843561511b81615eac565b935060208501359250604085013561513281615eac565b9150606085013561514281615ec1565b939692955090935050565b60006020828403121561515e578081fd5b81516003811061216d578182fd5b60006020828403121561517d578081fd5b5051919050565b6000806000806000806000806000806101408b8d0312156151a3578384fd5b8a51995060208b0151985060408b0151975060608b0151965060808b0151955060a08b01516151d181615ec1565b60c08c01519095506151e281615ec1565b60e08c01519094506151f381615ec1565b6101008c015190935061520581615ec1565b6101208c015190925061521781615ec1565b809150509295989b9194979a5092959850565b60008060008060008060008060006101208a8c031215615248578283fd5b8951985060208a0151975060408a0151965060608a0151955060808a0151945060a08a0151935060c08a0151925060e08a015164ffffffffff8116811461528d578283fd5b6101008b015190925061529f81615ec1565b809150509295985092959850929598565b6000815180845260208085019450808401835b838110156152e85781516001600160a01b0316875295820195908201906001016152c3565b509495945050505050565b6000815180845261530b816020860160208601615e80565b601f01601f19169290920160200192915050565b6001600160a01b0391909116815260200190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b038781168252868116602083015285166040820152606081018490526080810183905260c060a0820181905260009061538f908301846152f3565b98975050505050505050565b6001600160a01b03848116825283166020820152606060408201819052600090612ea2908301846152f3565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b600060018060a01b038516825283602083015260606040830152612ea260608301846152f3565b60006040825261543e60408301856152b0565b8281036020840152612ea281856152b0565b6020808252825182820181905260009190848201906040850190845b818110156154915783516001600160a01b03168352928401929184019160010161546c565b50909695505050505050565b901515815260200190565b6001600160a01b0394909416845260208401929092526040830152606082015260800190565b6001600160a01b039485168152928416602084015292166040820152901515606082015260800190565b6001600160a01b039485168152928416602084015292166040820152606081019190915260800190565b6001600160a01b03958616815293851660208501529190931660408301526060820192909252608081019190915260a00190565b60006020825261216d60208301846152f3565b602080825260169082015275496e76616c69642061546f6b656e206164647265737360501b604082015260600190565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b6020808252601690820152754d617070696e6720616c72656164792065786973747360501b604082015260600190565b6020808252601a908201527f436f6d706f6e656e74206d757374206265206e65676174697665000000000000604082015260600190565b60208082526028908201527f4d75737420626520612076616c696420616e6420696e697469616c697a65642060408201526729b2ba2a37b5b2b760c11b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526013908201527246726f7a656e2061617665207265736572766560681b604082015260600190565b6020808252601a908201527f436f6c6c61746572616c20616c726561647920656e61626c6564000000000000604082015260600190565b6020808252601e908201527f4d7573742062652070656e64696e6720696e697469616c697a6174696f6e0000604082015260600190565b6020808252601a908201527f426f72726f77696e672064697361626c6564206f6e2041617665000000000000604082015260600190565b6020808252600d908201526c05175616e74697479206973203609c1b604082015260600190565b602080825260149082015273496e76616c69642061617665207265736572766560601b604082015260600190565b60208082526015908201527426bab9ba103132903b30b634b21030b230b83a32b960591b604082015260600190565b6020808252601190820152700a6d8d2e0e0c2ceca40e8dede40d0d2ced607b1b604082015260600190565b60208082526016908201527510dbdb1b185d195c985b081b9bdd08195b98589b195960521b604082015260600190565b602080825260129082015271109bdc9c9bddc81b9bdd08195b98589b195960721b604082015260600190565b6020808252818101527f53616665436173743a2076616c7565206d75737420626520706f736974697665604082015260600190565b60208082526023908201527f496e76616c6964207661726961626c65206465627420746f6b656e206164647260408201526265737360e81b606082015260800190565b60208082526018908201527f4f6e6c7920746865206d6f64756c652063616e2063616c6c0000000000000000604082015260600190565b60208082526018908201527f49737375616e6365206e6f7420696e697469616c697a65640000000000000000604082015260600190565b60208082526030908201527f45787465726e616c20706f736974696f6e73206d757374206265203020746f2060408201526f1c995b5bdd994818dbdb5c1bdb995b9d60821b606082015260800190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526010908201526f24b73b30b634b21029b2ba2a37b5b2b760811b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152732737ba1030b63637bbb2b21029b2ba2a37b5b2b760611b604082015260600190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252601d908201527f496e76616c696420706f7374207472616e736665722062616c616e6365000000604082015260600190565b60208082526017908201527f5661726961626c6520646562742072656d61696e696e67000000000000000000604082015260600190565b60208082526018908201527f5061737365642064617461206d757374206265206e756c6c0000000000000000604082015260600190565b60208082526028908201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604082015267371034b73a191a9b60c11b606082015260800190565b60208082526024908201527f4d6f64756c65206d75737420626520656e61626c6564206f6e20636f6e74726f604082015263363632b960e11b606082015260800190565b60208082526023908201527f4d75737420626520636f6e74726f6c6c65722d656e61626c656420536574546f60408201526235b2b760e91b606082015260800190565b6020808252601c908201527f4d7573742062652074686520536574546f6b656e206d616e6167657200000000604082015260600190565b6020808252601b908201527f436f6c6c61746572616c2064697361626c6564206f6e20416176650000000000604082015260600190565b602080825260169082015275426f72726f772062616c616e6365206973207a65726f60501b604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b602080825260169082015275109bdc9c9bddc8185b1c9958591e48195b98589b195960521b604082015260600190565b6020808252602d908201527f436f6c6c61746572616c20616e6420626f72726f77206173736574206d75737460408201526c08189948191a5999995c995b9d609a1b606082015260800190565b60208082526010908201526f043616e742064697669646520627920360841b604082015260600190565b90815260200190565b60405181810167ffffffffffffffff81118282101715615e3457600080fd5b604052919050565b600067ffffffffffffffff821115615e52578081fd5b5060209081020190565b600067ffffffffffffffff821115615e72578081fd5b50601f01601f191660200190565b60005b83811015615e9b578181015183820152602001615e83565b83811115611fba5750506000910152565b6001600160a01b0381168114611e9057600080fd5b8015158114611e9057600080fdfea26469706673582212204ff7d3d92604311a6145fbd9a7b4faab9925c806550f27b1d3fed69669323f3764736f6c634300060a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a4c8d221d8bb851f83aadd0223a8900a6921a349000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5
-----Decoded View---------------
Arg [0] : _controller (address): 0xa4c8d221d8BB851f83aadd0223a8900A6921A349
Arg [1] : _lendingPoolAddressesProvider (address): 0xB53C1a33016B2DC2fF3653530bfF1848a515c8c5
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000a4c8d221d8bb851f83aadd0223a8900a6921a349
Arg [1] : 000000000000000000000000b53c1a33016b2dc2ff3653530bff1848a515c8c5
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.