Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 25 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Issue | 11500447 | 1417 days ago | IN | 0 ETH | 0.0143383 | ||||
Issue | 11500354 | 1417 days ago | IN | 0 ETH | 0.0091719 | ||||
Initialize | 11472464 | 1421 days ago | IN | 0 ETH | 0.02251774 | ||||
Issue | 11434733 | 1427 days ago | IN | 0 ETH | 0.00696627 | ||||
Issue | 11434542 | 1427 days ago | IN | 0 ETH | 0.00163203 | ||||
Initialize | 11434474 | 1427 days ago | IN | 0 ETH | 0.01148085 | ||||
Issue | 11429250 | 1428 days ago | IN | 0 ETH | 0.00175027 | ||||
Redeem Into Ethe... | 10927367 | 1505 days ago | IN | 0 ETH | 0.03937942 | ||||
Issue With Ether | 10927358 | 1505 days ago | IN | 1 ETH | 0.03464999 | ||||
Redeem Into Ethe... | 10927355 | 1505 days ago | IN | 0 ETH | 0.04086421 | ||||
Initialize | 10927348 | 1505 days ago | IN | 0 ETH | 0.033532 | ||||
Initialize | 10927318 | 1505 days ago | IN | 0 ETH | 0.03158343 | ||||
Initialize | 10926922 | 1505 days ago | IN | 0 ETH | 0.0276851 | ||||
Initialize | 10926921 | 1505 days ago | IN | 0 ETH | 0.02768595 | ||||
Redeem Into Ethe... | 10913422 | 1507 days ago | IN | 0 ETH | 0.13287678 | ||||
Issue With Ether | 10910651 | 1508 days ago | IN | 3 ETH | 0.03095022 | ||||
Issue With Ether | 10910523 | 1508 days ago | IN | 2 ETH | 0.02445004 | ||||
Issue With Ether | 10910273 | 1508 days ago | IN | 3 ETH | 0.02355974 | ||||
Issue With Ether | 10910173 | 1508 days ago | IN | 3 ETH | 0.03040564 | ||||
Issue With Ether | 10910167 | 1508 days ago | IN | 5 ETH | 0.0346584 | ||||
Redeem Into Ethe... | 10909924 | 1508 days ago | IN | 0 ETH | 0.04212626 | ||||
Issue With Ether | 10909858 | 1508 days ago | IN | 0.1 ETH | 0.02579337 | ||||
Initialize | 10909690 | 1508 days ago | IN | 0 ETH | 0.03046824 | ||||
Initialize | 10909607 | 1508 days ago | IN | 0 ETH | 0.03046824 | ||||
0x60a06040 | 10909289 | 1508 days ago | IN | 0 ETH | 0.40377728 |
Latest 15 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
10927367 | 1505 days ago | 0.33107903 ETH | ||||
10927367 | 1505 days ago | 0.33107903 ETH | ||||
10927358 | 1505 days ago | 1 ETH | ||||
10927355 | 1505 days ago | 0.00300648 ETH | ||||
10927355 | 1505 days ago | 0.00300648 ETH | ||||
10913422 | 1507 days ago | 0.00310721 ETH | ||||
10913422 | 1507 days ago | 0.00310721 ETH | ||||
10910651 | 1508 days ago | 3 ETH | ||||
10910523 | 1508 days ago | 2 ETH | ||||
10910273 | 1508 days ago | 3 ETH | ||||
10910173 | 1508 days ago | 3 ETH | ||||
10910167 | 1508 days ago | 5 ETH | ||||
10909924 | 1508 days ago | 0.00058423 ETH | ||||
10909924 | 1508 days ago | 0.00058423 ETH | ||||
10909858 | 1508 days ago | 0.1 ETH |
Loading...
Loading
Contract Name:
NavIssuanceModule
Compiler Version
v0.6.10+commit.00c0fcaf
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-09-22 */ // Dependency file: @openzeppelin/contracts/token/ERC20/SafeERC20.sol // SPDX-License-Identifier: MIT // pragma solidity ^0.6.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"); } } } // Dependency file: contracts/interfaces/ISetValuer.sol /* 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. */ // pragma solidity 0.6.10; // import { ISetToken } from "../interfaces/ISetToken.sol"; interface ISetValuer { function calculateSetTokenValuation(ISetToken _setToken, address _quoteAsset) external view returns (uint256); } // Dependency file: contracts/interfaces/IPriceOracle.sol /* 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. */ // 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); } // Dependency file: contracts/interfaces/IIntegrationRegistry.sol /* 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. */ // 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); } // Dependency file: contracts/interfaces/IModule.sol /* 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. */ // 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; } // Dependency file: contracts/lib/ExplicitERC20.sol /* 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. */ // 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" ); } } } // Dependency file: @openzeppelin/contracts/utils/Address.sol // pragma solidity ^0.6.2; /** * @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) { // According to EIP-1052, 0x0 is the value returned for not-yet created accounts // and 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470 is returned // for accounts without code, i.e. `keccak256('')` bytes32 codehash; bytes32 accountHash = 0xc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470; // solhint-disable-next-line no-inline-assembly assembly { codehash := extcodehash(account) } return (codehash != accountHash && codehash != 0x0); } /** * @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"); return _functionCallWithValue(target, data, value, errorMessage); } function _functionCallWithValue(address target, bytes memory data, uint256 weiValue, string memory errorMessage) private returns (bytes memory) { require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: weiValue }(data); 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); } } } } // Dependency file: @openzeppelin/contracts/GSN/Context.sol // pragma solidity ^0.6.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; } } // Dependency file: contracts/protocol/lib/ResourceIdentifier.sol /* 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. */ // 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)); } } // Dependency file: contracts/lib/PreciseUnitMath.sol /* 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. */ // 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 */ 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; } } // Dependency file: contracts/protocol/lib/Position.sol /* 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. */ // 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 */ 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 * 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 (!_setToken.isComponent(_component)) { _setToken.addComponent(_component); addExternalPosition(_setToken, _component, _module, _newUnit, _data); } else if (!_setToken.isExternalPositionModule(_component, _module)) { addExternalPosition(_setToken, _component, _module, _newUnit, _data); } else if (_newUnit != 0) { _setToken.editExternalPositionUnit(_component, _module, _newUnit); } else { // If no default or external position remaining then remove component from components array if (_setToken.getDefaultPositionRealUnit(_component) == 0 && _setToken.getExternalPositionModules(_component).length == 1) { _setToken.removeComponent(_component); } _setToken.removeExternalPositionModule(_component, _module); } } /** * Add a new external position from a previously untracked module. * * @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 addExternalPosition( ISetToken _setToken, address _component, address _module, int256 _newUnit, bytes memory _data ) internal { _setToken.addExternalPositionModule(_component, _module); _setToken.editExternalPositionUnit(_component, _module, _newUnit); _setToken.editExternalPositionData(_component, _module, _data); } /** * 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 = calculateDefaultEditPositionUnit( _setTotalSupply, _componentPreviousBalance, currentBalance, positionUnit ); 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 if (_preTotalNotional >= _postTotalNotional) { uint256 unitsToSub = _preTotalNotional.sub(_postTotalNotional).preciseDivCeil(_setTokenSupply); return _prePositionUnit.sub(unitsToSub); } else { // Else subtract post action total notional from pre action total notional and calculate new position units uint256 unitsToAdd = _postTotalNotional.sub(_preTotalNotional).preciseDiv(_setTokenSupply); return _prePositionUnit.add(unitsToAdd); } } } // Dependency file: contracts/protocol/lib/ModuleBase.sol /* 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. */ // pragma solidity 0.6.10; // import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.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 { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol"; // import { ResourceIdentifier } from "./ResourceIdentifier.sol"; /** * @title ModuleBase * @author Set Protocol * * Abstract class that houses common Module-related state and functions. */ abstract contract ModuleBase is IModule { using PreciseUnitMath for uint256; using Invoke for ISetToken; using ResourceIdentifier for IController; /* ============ State Variables ============ */ // Address of the controller IController public controller; /* ============ Modifiers ============ */ modifier onlyManagerAndValidSet(ISetToken _setToken) { require(isSetManager(_setToken, msg.sender), "Must be the SetToken manager"); require(isSetValidAndInitialized(_setToken), "Must be a valid and initialized SetToken"); _; } modifier onlySetManager(ISetToken _setToken, address _caller) { require(isSetManager(_setToken, _caller), "Must be the SetToken manager"); _; } modifier onlyValidAndInitializedSet(ISetToken _setToken) { require(isSetValidAndInitialized(_setToken), "Must be a valid and initialized SetToken"); _; } /** * Throws if the sender is not a SetToken's module or module not enabled */ modifier onlyModule(ISetToken _setToken) { require( _setToken.moduleStates(msg.sender) == ISetToken.ModuleState.INITIALIZED, "Only the module can call" ); require( controller.isModule(msg.sender), "Module must be enabled on controller" ); _; } /** * Utilized during module initializations to check that the module is in pending state * and that the SetToken is valid */ modifier onlyValidAndPendingSet(ISetToken _setToken) { require(controller.isSet(address(_setToken)), "Must be controller-enabled SetToken"); require(isSetPendingInitialization(_setToken), "Must be pending initialization"); _; } /* ============ 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)); } } // Dependency file: contracts/interfaces/external/IWETH.sol /* Copyright 2018 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. */ // Dependency file: @openzeppelin/contracts/token/ERC20/IERC20.sol // pragma solidity ^0.6.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); } // pragma solidity 0.6.10; // import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title IWETH * @author Set Protocol * * Interface for Wrapped Ether. This interface allows for interaction for wrapped ether's deposit and withdrawal * functionality. */ interface IWETH is IERC20{ function deposit() external payable; function withdraw( uint256 wad ) external; } // Dependency file: contracts/interfaces/ISetToken.sol /* 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. */ // 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); } // Dependency file: contracts/protocol/lib/Invoke.sol /* 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. */ // 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); } } // Dependency file: contracts/interfaces/INAVIssuanceHook.sol /* 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. */ // pragma solidity 0.6.10; // import { ISetToken } from "./ISetToken.sol"; interface INAVIssuanceHook { function invokePreIssueHook( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity, address _sender, address _to ) external; function invokePreRedeemHook( ISetToken _setToken, uint256 _redeemQuantity, address _sender, address _to ) external; } // Dependency file: contracts/interfaces/IController.sol /* 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. */ // 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); } // Dependency file: contracts/lib/AddressArrayUtils.sol /* 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. */ // pragma solidity 0.6.10; /** * @title AddressArrayUtils * @author Set Protocol * * Utility functions to handle Address Arrays */ 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; } } /** * 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]); } } // Dependency file: @openzeppelin/contracts/math/SignedSafeMath.sol // pragma solidity ^0.6.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; } } // Dependency file: @openzeppelin/contracts/math/SafeMath.sol // pragma solidity ^0.6.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; } } // Dependency file: @openzeppelin/contracts/utils/SafeCast.sol // pragma solidity ^0.6.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); } } // Dependency file: @openzeppelin/contracts/utils/ReentrancyGuard.sol // pragma solidity ^0.6.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]. */ 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; } } // Dependency file: @openzeppelin/contracts/token/ERC20/ERC20.sol // pragma solidity ^0.6.0; // import "../../GSN/Context.sol"; // import "./IERC20.sol"; // import "../../math/SafeMath.sol"; // import "../../utils/Address.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; using Address for address; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name, string memory symbol) public { _name = name; _symbol = symbol; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}; * * Requirements: * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner`s tokens. * * This is internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } /* 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. */ pragma solidity 0.6.10; pragma experimental "ABIEncoderV2"; // import { ERC20 } from "@openzeppelin/contracts/token/ERC20/ERC20.sol"; // import { IERC20 } from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; // import { ReentrancyGuard } from "@openzeppelin/contracts/utils/ReentrancyGuard.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 { AddressArrayUtils } from "../../lib/AddressArrayUtils.sol"; // import { IController } from "../../interfaces/IController.sol"; // import { INAVIssuanceHook } from "../../interfaces/INAVIssuanceHook.sol"; // import { Invoke } from "../lib/Invoke.sol"; // import { ISetToken } from "../../interfaces/ISetToken.sol"; // import { IWETH } from "../../interfaces/external/IWETH.sol"; // import { ModuleBase } from "../lib/ModuleBase.sol"; // import { Position } from "../lib/Position.sol"; // import { PreciseUnitMath } from "../../lib/PreciseUnitMath.sol"; // import { ResourceIdentifier } from "../lib/ResourceIdentifier.sol"; /** * @title NavIssuanceModule * @author Set Protocol * * Module that enables issuance and redemption with any valid ERC20 token or ETH if allowed by the manager. Sender receives * a proportional amount of SetTokens on issuance or ERC20 token on redemption based on the calculated net asset value using * oracle prices. Manager is able to enforce a premium / discount on issuance / redemption to avoid arbitrage and front * running when relying on oracle prices. Managers can charge a fee (denominated in reserve asset). */ contract NavIssuanceModule is ModuleBase, ReentrancyGuard { using AddressArrayUtils for address[]; using Invoke for ISetToken; using Position for ISetToken; using PreciseUnitMath for uint256; using PreciseUnitMath for int256; using ResourceIdentifier for IController; using SafeMath for uint256; using SafeCast for int256; using SafeCast for uint256; using SignedSafeMath for int256; /* ============ Events ============ */ event SetTokenNAVIssued( ISetToken indexed _setToken, address _issuer, address _to, address _reserveAsset, address _hookContract, uint256 _setTokenQuantity, uint256 _managerFee, uint256 _premium ); event SetTokenNAVRedeemed( ISetToken indexed _setToken, address _redeemer, address _to, address _reserveAsset, address _hookContract, uint256 _setTokenQuantity, uint256 _managerFee, uint256 _premium ); event ReserveAssetAdded( ISetToken indexed _setToken, address _newReserveAsset ); event ReserveAssetRemoved( ISetToken indexed _setToken, address _removedReserveAsset ); event PremiumEdited( ISetToken indexed _setToken, uint256 _newPremium ); event ManagerFeeEdited( ISetToken indexed _setToken, uint256 _newManagerFee, uint256 _index ); event FeeRecipientEdited( ISetToken indexed _setToken, address _feeRecipient ); /* ============ Structs ============ */ struct NAVIssuanceSettings { INAVIssuanceHook managerIssuanceHook; // Issuance hook configurations INAVIssuanceHook managerRedemptionHook; // Redemption hook configurations address[] reserveAssets; // Allowed reserve assets - Must have a price enabled with the price oracle address feeRecipient; // Manager fee recipient uint256[2] managerFees; // Manager fees. 0 index is issue and 1 index is redeem fee (0.01% = 1e14, 1% = 1e16) uint256 maxManagerFee; // Maximum fee manager is allowed to set for issue and redeem uint256 premiumPercentage; // Premium percentage (0.01% = 1e14, 1% = 1e16). This premium is a buffer around oracle // prices paid by user to the SetToken, which prevents arbitrage and oracle front running uint256 maxPremiumPercentage; // Maximum premium percentage manager is allowed to set (configured by manager) uint256 minSetTokenSupply; // Minimum SetToken supply required for issuance and redemption // to prevent dramatic inflationary changes to the SetToken's position multiplier } struct ActionInfo { uint256 preFeeReserveQuantity; // Reserve value before fees; During issuance, represents raw quantity // During redeem, represents post-premium value uint256 protocolFees; // Total protocol fees (direct + manager revenue share) uint256 managerFee; // Total manager fee paid in reserve asset uint256 netFlowQuantity; // When issuing, quantity of reserve asset sent to SetToken // When redeeming, quantity of reserve asset sent to redeemer uint256 setTokenQuantity; // When issuing, quantity of SetTokens minted to mintee // When redeeming, quantity of SetToken redeemed uint256 previousSetTokenSupply; // SetToken supply prior to issue/redeem action uint256 newSetTokenSupply; // SetToken supply after issue/redeem action int256 newPositionMultiplier; // SetToken position multiplier after issue/redeem uint256 newReservePositionUnit; // SetToken reserve asset position unit after issue/redeem } /* ============ State Variables ============ */ // Wrapped ETH address IWETH public immutable weth; // Mapping of SetToken to NAV issuance settings struct mapping(ISetToken => NAVIssuanceSettings) public navIssuanceSettings; // Mapping to efficiently check a SetToken's reserve asset validity // SetToken => reserveAsset => isReserveAsset mapping(ISetToken => mapping(address => bool)) public isReserveAsset; /* ============ Constants ============ */ // 0 index stores the manager fee in managerFees array, percentage charged on issue (denominated in reserve asset) uint256 constant internal MANAGER_ISSUE_FEE_INDEX = 0; // 1 index stores the manager fee percentage in managerFees array, charged on redeem uint256 constant internal MANAGER_REDEEM_FEE_INDEX = 1; // 0 index stores the manager revenue share protocol fee % on the controller, charged in the issuance function uint256 constant internal PROTOCOL_ISSUE_MANAGER_REVENUE_SHARE_FEE_INDEX = 0; // 1 index stores the manager revenue share protocol fee % on the controller, charged in the redeem function uint256 constant internal PROTOCOL_REDEEM_MANAGER_REVENUE_SHARE_FEE_INDEX = 1; // 2 index stores the direct protocol fee % on the controller, charged in the issuance function uint256 constant internal PROTOCOL_ISSUE_DIRECT_FEE_INDEX = 2; // 3 index stores the direct protocol fee % on the controller, charged in the redeem function uint256 constant internal PROTOCOL_REDEEM_DIRECT_FEE_INDEX = 3; /* ============ Constructor ============ */ /** * @param _controller Address of controller contract * @param _weth Address of wrapped eth */ constructor(IController _controller, IWETH _weth) public ModuleBase(_controller) { weth = _weth; } /* ============ External Functions ============ */ /** * Deposits the allowed reserve asset into the SetToken and mints the appropriate % of Net Asset Value of the SetToken * to the specified _to address. * * @param _setToken Instance of the SetToken contract * @param _reserveAsset Address of the reserve asset to issue with * @param _reserveAssetQuantity Quantity of the reserve asset to issue with * @param _minSetTokenReceiveQuantity Min quantity of SetToken to receive after issuance * @param _to Address to mint SetToken to */ function issue( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity, uint256 _minSetTokenReceiveQuantity, address _to ) external nonReentrant onlyValidAndInitializedSet(_setToken) { _validateCommon(_setToken, _reserveAsset, _reserveAssetQuantity); _callPreIssueHooks(_setToken, _reserveAsset, _reserveAssetQuantity, msg.sender, _to); ActionInfo memory issueInfo = _createIssuanceInfo(_setToken, _reserveAsset, _reserveAssetQuantity); _validateIssuanceInfo(_setToken, _minSetTokenReceiveQuantity, issueInfo); _transferCollateralAndHandleFees(_setToken, IERC20(_reserveAsset), issueInfo); _handleIssueStateUpdates(_setToken, _reserveAsset, _to, issueInfo); } /** * Wraps ETH and deposits WETH if allowed into the SetToken and mints the appropriate % of Net Asset Value of the SetToken * to the specified _to address. * * @param _setToken Instance of the SetToken contract * @param _minSetTokenReceiveQuantity Min quantity of SetToken to receive after issuance * @param _to Address to mint SetToken to */ function issueWithEther( ISetToken _setToken, uint256 _minSetTokenReceiveQuantity, address _to ) external payable nonReentrant onlyValidAndInitializedSet(_setToken) { weth.deposit{ value: msg.value }(); _validateCommon(_setToken, address(weth), msg.value); _callPreIssueHooks(_setToken, address(weth), msg.value, msg.sender, _to); ActionInfo memory issueInfo = _createIssuanceInfo(_setToken, address(weth), msg.value); _validateIssuanceInfo(_setToken, _minSetTokenReceiveQuantity, issueInfo); _transferWETHAndHandleFees(_setToken, issueInfo); _handleIssueStateUpdates(_setToken, address(weth), _to, issueInfo); } /** * Redeems a SetToken into a valid reserve asset representing the appropriate % of Net Asset Value of the SetToken * to the specified _to address. Only valid if there are available reserve units on the SetToken. * * @param _setToken Instance of the SetToken contract * @param _reserveAsset Address of the reserve asset to redeem with * @param _setTokenQuantity Quantity of SetTokens to redeem * @param _minReserveReceiveQuantity Min quantity of reserve asset to receive * @param _to Address to redeem reserve asset to */ function redeem( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity, uint256 _minReserveReceiveQuantity, address _to ) external nonReentrant onlyValidAndInitializedSet(_setToken) { _validateCommon(_setToken, _reserveAsset, _setTokenQuantity); _callPreRedeemHooks(_setToken, _setTokenQuantity, msg.sender, _to); ActionInfo memory redeemInfo = _createRedemptionInfo(_setToken, _reserveAsset, _setTokenQuantity); _validateRedemptionInfo(_setToken, _minReserveReceiveQuantity, _setTokenQuantity, redeemInfo); _setToken.burn(msg.sender, _setTokenQuantity); // Instruct the SetToken to transfer the reserve asset back to the user _setToken.strictInvokeTransfer( _reserveAsset, _to, redeemInfo.netFlowQuantity ); _handleRedemptionFees(_setToken, _reserveAsset, redeemInfo); _handleRedeemStateUpdates(_setToken, _reserveAsset, _to, redeemInfo); } /** * Redeems a SetToken into Ether (if WETH is valid) representing the appropriate % of Net Asset Value of the SetToken * to the specified _to address. Only valid if there are available WETH units on the SetToken. * * @param _setToken Instance of the SetToken contract * @param _setTokenQuantity Quantity of SetTokens to redeem * @param _minReserveReceiveQuantity Min quantity of reserve asset to receive * @param _to Address to redeem reserve asset to */ function redeemIntoEther( ISetToken _setToken, uint256 _setTokenQuantity, uint256 _minReserveReceiveQuantity, address payable _to ) external nonReentrant onlyValidAndInitializedSet(_setToken) { _validateCommon(_setToken, address(weth), _setTokenQuantity); _callPreRedeemHooks(_setToken, _setTokenQuantity, msg.sender, _to); ActionInfo memory redeemInfo = _createRedemptionInfo(_setToken, address(weth), _setTokenQuantity); _validateRedemptionInfo(_setToken, _minReserveReceiveQuantity, _setTokenQuantity, redeemInfo); _setToken.burn(msg.sender, _setTokenQuantity); // Instruct the SetToken to transfer WETH from SetToken to module _setToken.strictInvokeTransfer( address(weth), address(this), redeemInfo.netFlowQuantity ); weth.withdraw(redeemInfo.netFlowQuantity); _to.transfer(redeemInfo.netFlowQuantity); _handleRedemptionFees(_setToken, address(weth), redeemInfo); _handleRedeemStateUpdates(_setToken, address(weth), _to, redeemInfo); } /** * SET MANAGER ONLY. Add an allowed reserve asset * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset to add */ function addReserveAsset(ISetToken _setToken, address _reserveAsset) external onlyManagerAndValidSet(_setToken) { require(!isReserveAsset[_setToken][_reserveAsset], "Reserve asset already exists"); navIssuanceSettings[_setToken].reserveAssets.push(_reserveAsset); isReserveAsset[_setToken][_reserveAsset] = true; emit ReserveAssetAdded(_setToken, _reserveAsset); } /** * SET MANAGER ONLY. Remove a reserve asset * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset to remove */ function removeReserveAsset(ISetToken _setToken, address _reserveAsset) external onlyManagerAndValidSet(_setToken) { require(isReserveAsset[_setToken][_reserveAsset], "Reserve asset does not exist"); navIssuanceSettings[_setToken].reserveAssets = navIssuanceSettings[_setToken].reserveAssets.remove(_reserveAsset); delete isReserveAsset[_setToken][_reserveAsset]; emit ReserveAssetRemoved(_setToken, _reserveAsset); } /** * SET MANAGER ONLY. Edit the premium percentage * * @param _setToken Instance of the SetToken * @param _premiumPercentage Premium percentage in 10e16 (e.g. 10e16 = 1%) */ function editPremium(ISetToken _setToken, uint256 _premiumPercentage) external onlyManagerAndValidSet(_setToken) { require(_premiumPercentage <= navIssuanceSettings[_setToken].maxPremiumPercentage, "Premium must be less than maximum allowed"); navIssuanceSettings[_setToken].premiumPercentage = _premiumPercentage; emit PremiumEdited(_setToken, _premiumPercentage); } /** * SET MANAGER ONLY. Edit manager fee * * @param _setToken Instance of the SetToken * @param _managerFeePercentage Manager fee percentage in 10e16 (e.g. 10e16 = 1%) * @param _managerFeeIndex Manager fee index. 0 index is issue fee, 1 index is redeem fee */ function editManagerFee( ISetToken _setToken, uint256 _managerFeePercentage, uint256 _managerFeeIndex ) external onlyManagerAndValidSet(_setToken) { require(_managerFeePercentage <= navIssuanceSettings[_setToken].maxManagerFee, "Manager fee must be less than maximum allowed"); navIssuanceSettings[_setToken].managerFees[_managerFeeIndex] = _managerFeePercentage; emit ManagerFeeEdited(_setToken, _managerFeePercentage, _managerFeeIndex); } /** * SET MANAGER ONLY. Edit the manager fee recipient * * @param _setToken Instance of the SetToken * @param _managerFeeRecipient Manager fee recipient */ function editFeeRecipient(ISetToken _setToken, address _managerFeeRecipient) external onlyManagerAndValidSet(_setToken) { require(_managerFeeRecipient != address(0), "Fee recipient must not be 0 address"); navIssuanceSettings[_setToken].feeRecipient = _managerFeeRecipient; emit FeeRecipientEdited(_setToken, _managerFeeRecipient); } /** * SET MANAGER ONLY. Initializes this module to the SetToken with hooks, allowed reserve assets, * fees and issuance premium. Only callable by the SetToken's manager. Hook addresses are optional. * Address(0) means that no hook will be called. * * @param _setToken Instance of the SetToken to issue * @param _navIssuanceSettings NAVIssuanceSettings struct defining parameters */ function initialize( ISetToken _setToken, NAVIssuanceSettings memory _navIssuanceSettings ) external onlySetManager(_setToken, msg.sender) onlyValidAndPendingSet(_setToken) { require(_navIssuanceSettings.reserveAssets.length > 0, "Reserve assets must be greater than 0"); require(_navIssuanceSettings.maxManagerFee < PreciseUnitMath.preciseUnit(), "Max manager fee must be less than 100%"); require(_navIssuanceSettings.maxPremiumPercentage < PreciseUnitMath.preciseUnit(), "Max premium percentage must be less than 100%"); require(_navIssuanceSettings.managerFees[0] <= _navIssuanceSettings.maxManagerFee, "Manager issue fee must be less than max"); require(_navIssuanceSettings.managerFees[1] <= _navIssuanceSettings.maxManagerFee, "Manager redeem fee must be less than max"); require(_navIssuanceSettings.premiumPercentage <= _navIssuanceSettings.maxPremiumPercentage, "Premium must be less than max"); require(_navIssuanceSettings.feeRecipient != address(0), "Fee Recipient must be non-zero address."); // Initial mint of Set cannot use NAVIssuance since minSetTokenSupply must be > 0 require(_navIssuanceSettings.minSetTokenSupply > 0, "Min SetToken supply must be greater than 0"); for (uint256 i = 0; i < _navIssuanceSettings.reserveAssets.length; i++) { require(!isReserveAsset[_setToken][_navIssuanceSettings.reserveAssets[i]], "Reserve assets must be unique"); isReserveAsset[_setToken][_navIssuanceSettings.reserveAssets[i]] = true; } navIssuanceSettings[_setToken] = _navIssuanceSettings; _setToken.initializeModule(); } /** * Removes this module from the SetToken, via call by the SetToken. Issuance settings and * reserve asset states are deleted. */ function removeModule() external override { ISetToken setToken = ISetToken(msg.sender); for (uint256 i = 0; i < navIssuanceSettings[setToken].reserveAssets.length; i++) { delete isReserveAsset[setToken][navIssuanceSettings[setToken].reserveAssets[i]]; } delete navIssuanceSettings[setToken]; } receive() external payable {} /* ============ External Getter Functions ============ */ function getReserveAssets(ISetToken _setToken) external view returns (address[] memory) { return navIssuanceSettings[_setToken].reserveAssets; } function getIssuePremium( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity ) external view returns (uint256) { return _getIssuePremium(_setToken, _reserveAsset, _reserveAssetQuantity); } function getRedeemPremium( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity ) external view returns (uint256) { return _getRedeemPremium(_setToken, _reserveAsset, _setTokenQuantity); } function getManagerFee(ISetToken _setToken, uint256 _managerFeeIndex) external view returns (uint256) { return navIssuanceSettings[_setToken].managerFees[_managerFeeIndex]; } /** * Get the expected SetTokens minted to recipient on issuance * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset * @param _reserveAssetQuantity Quantity of the reserve asset to issue with * * @return uint256 Expected SetTokens to be minted to recipient */ function getExpectedSetTokenIssueQuantity( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity ) external view returns (uint256) { (,, uint256 netReserveFlow) = _getFees( _setToken, _reserveAssetQuantity, PROTOCOL_ISSUE_MANAGER_REVENUE_SHARE_FEE_INDEX, PROTOCOL_ISSUE_DIRECT_FEE_INDEX, MANAGER_ISSUE_FEE_INDEX ); uint256 setTotalSupply = _setToken.totalSupply(); return _getSetTokenMintQuantity( _setToken, _reserveAsset, netReserveFlow, setTotalSupply ); } /** * Get the expected reserve asset to be redeemed * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset * @param _setTokenQuantity Quantity of SetTokens to redeem * * @return uint256 Expected reserve asset quantity redeemed */ function getExpectedReserveRedeemQuantity( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity ) external view returns (uint256) { uint256 preFeeReserveQuantity = _getRedeemReserveQuantity(_setToken, _reserveAsset, _setTokenQuantity); (,, uint256 netReserveFlows) = _getFees( _setToken, preFeeReserveQuantity, PROTOCOL_REDEEM_MANAGER_REVENUE_SHARE_FEE_INDEX, PROTOCOL_REDEEM_DIRECT_FEE_INDEX, MANAGER_REDEEM_FEE_INDEX ); return netReserveFlows; } /** * Checks if issue is valid * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset * @param _reserveAssetQuantity Quantity of the reserve asset to issue with * * @return bool Returns true if issue is valid */ function isIssueValid( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity ) external view returns (bool) { uint256 setTotalSupply = _setToken.totalSupply(); return _reserveAssetQuantity != 0 && isReserveAsset[_setToken][_reserveAsset] && setTotalSupply >= navIssuanceSettings[_setToken].minSetTokenSupply; } /** * Checks if redeem is valid * * @param _setToken Instance of the SetToken * @param _reserveAsset Address of the reserve asset * @param _setTokenQuantity Quantity of SetTokens to redeem * * @return bool Returns true if redeem is valid */ function isRedeemValid( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity ) external view returns (bool) { uint256 setTotalSupply = _setToken.totalSupply(); if ( _setTokenQuantity == 0 || !isReserveAsset[_setToken][_reserveAsset] || setTotalSupply < navIssuanceSettings[_setToken].minSetTokenSupply.add(_setTokenQuantity) ) { return false; } else { uint256 totalRedeemValue =_getRedeemReserveQuantity(_setToken, _reserveAsset, _setTokenQuantity); (,, uint256 expectedRedeemQuantity) = _getFees( _setToken, totalRedeemValue, PROTOCOL_REDEEM_MANAGER_REVENUE_SHARE_FEE_INDEX, PROTOCOL_REDEEM_DIRECT_FEE_INDEX, MANAGER_REDEEM_FEE_INDEX ); uint256 existingUnit = _setToken.getDefaultPositionRealUnit(_reserveAsset).toUint256(); return existingUnit.preciseMul(setTotalSupply) >= expectedRedeemQuantity; } } /* ============ Internal Functions ============ */ function _validateCommon(ISetToken _setToken, address _reserveAsset, uint256 _quantity) internal view { require(_quantity > 0, "Quantity must be > 0"); require(isReserveAsset[_setToken][_reserveAsset], "Must be valid reserve asset"); } function _validateIssuanceInfo(ISetToken _setToken, uint256 _minSetTokenReceiveQuantity, ActionInfo memory _issueInfo) internal view { // Check that total supply is greater than min supply needed for issuance // Note: A min supply amount is needed to avoid division by 0 when SetToken supply is 0 require( _issueInfo.previousSetTokenSupply >= navIssuanceSettings[_setToken].minSetTokenSupply, "Supply must be greater than minimum to enable issuance" ); require(_issueInfo.setTokenQuantity >= _minSetTokenReceiveQuantity, "Must be greater than min SetToken"); } function _validateRedemptionInfo( ISetToken _setToken, uint256 _minReserveReceiveQuantity, uint256 _setTokenQuantity, ActionInfo memory _redeemInfo ) internal view { // Check that new supply is more than min supply needed for redemption // Note: A min supply amount is needed to avoid division by 0 when redeeming SetToken to 0 require( _redeemInfo.newSetTokenSupply >= navIssuanceSettings[_setToken].minSetTokenSupply, "Supply must be greater than minimum to enable redemption" ); require(_redeemInfo.netFlowQuantity >= _minReserveReceiveQuantity, "Must be greater than min receive reserve quantity"); } function _createIssuanceInfo( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity ) internal view returns (ActionInfo memory) { ActionInfo memory issueInfo; issueInfo.previousSetTokenSupply = _setToken.totalSupply(); issueInfo.preFeeReserveQuantity = _reserveAssetQuantity; (issueInfo.protocolFees, issueInfo.managerFee, issueInfo.netFlowQuantity) = _getFees( _setToken, issueInfo.preFeeReserveQuantity, PROTOCOL_ISSUE_MANAGER_REVENUE_SHARE_FEE_INDEX, PROTOCOL_ISSUE_DIRECT_FEE_INDEX, MANAGER_ISSUE_FEE_INDEX ); issueInfo.setTokenQuantity = _getSetTokenMintQuantity( _setToken, _reserveAsset, issueInfo.netFlowQuantity, issueInfo.previousSetTokenSupply ); (issueInfo.newSetTokenSupply, issueInfo.newPositionMultiplier) = _getIssuePositionMultiplier(_setToken, issueInfo); issueInfo.newReservePositionUnit = _getIssuePositionUnit(_setToken, _reserveAsset, issueInfo); return issueInfo; } function _createRedemptionInfo( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity ) internal view returns (ActionInfo memory) { ActionInfo memory redeemInfo; redeemInfo.setTokenQuantity = _setTokenQuantity; redeemInfo.preFeeReserveQuantity =_getRedeemReserveQuantity(_setToken, _reserveAsset, _setTokenQuantity); (redeemInfo.protocolFees, redeemInfo.managerFee, redeemInfo.netFlowQuantity) = _getFees( _setToken, redeemInfo.preFeeReserveQuantity, PROTOCOL_REDEEM_MANAGER_REVENUE_SHARE_FEE_INDEX, PROTOCOL_REDEEM_DIRECT_FEE_INDEX, MANAGER_REDEEM_FEE_INDEX ); redeemInfo.previousSetTokenSupply = _setToken.totalSupply(); (redeemInfo.newSetTokenSupply, redeemInfo.newPositionMultiplier) = _getRedeemPositionMultiplier(_setToken, _setTokenQuantity, redeemInfo); redeemInfo.newReservePositionUnit = _getRedeemPositionUnit(_setToken, _reserveAsset, redeemInfo); return redeemInfo; } /** * Transfer reserve asset from user to SetToken and fees from user to appropriate fee recipients */ function _transferCollateralAndHandleFees(ISetToken _setToken, IERC20 _reserveAsset, ActionInfo memory _issueInfo) internal { transferFrom(_reserveAsset, msg.sender, address(_setToken), _issueInfo.netFlowQuantity); if (_issueInfo.protocolFees > 0) { transferFrom(_reserveAsset, msg.sender, controller.feeRecipient(), _issueInfo.protocolFees); } if (_issueInfo.managerFee > 0) { transferFrom(_reserveAsset, msg.sender, navIssuanceSettings[_setToken].feeRecipient, _issueInfo.managerFee); } } /** * Transfer WETH from module to SetToken and fees from module to appropriate fee recipients */ function _transferWETHAndHandleFees(ISetToken _setToken, ActionInfo memory _issueInfo) internal { weth.transfer(address(_setToken), _issueInfo.netFlowQuantity); if (_issueInfo.protocolFees > 0) { weth.transfer(controller.feeRecipient(), _issueInfo.protocolFees); } if (_issueInfo.managerFee > 0) { weth.transfer(navIssuanceSettings[_setToken].feeRecipient, _issueInfo.managerFee); } } function _handleIssueStateUpdates( ISetToken _setToken, address _reserveAsset, address _to, ActionInfo memory _issueInfo ) internal { _setToken.editPositionMultiplier(_issueInfo.newPositionMultiplier); _setToken.editDefaultPosition(_reserveAsset, _issueInfo.newReservePositionUnit); _setToken.mint(_to, _issueInfo.setTokenQuantity); emit SetTokenNAVIssued( _setToken, msg.sender, _to, _reserveAsset, address(navIssuanceSettings[_setToken].managerIssuanceHook), _issueInfo.setTokenQuantity, _issueInfo.managerFee, _issueInfo.protocolFees ); } function _handleRedeemStateUpdates( ISetToken _setToken, address _reserveAsset, address _to, ActionInfo memory _redeemInfo ) internal { _setToken.editPositionMultiplier(_redeemInfo.newPositionMultiplier); _setToken.editDefaultPosition(_reserveAsset, _redeemInfo.newReservePositionUnit); emit SetTokenNAVRedeemed( _setToken, msg.sender, _to, _reserveAsset, address(navIssuanceSettings[_setToken].managerRedemptionHook), _redeemInfo.setTokenQuantity, _redeemInfo.managerFee, _redeemInfo.protocolFees ); } function _handleRedemptionFees(ISetToken _setToken, address _reserveAsset, ActionInfo memory _redeemInfo) internal { // Instruct the SetToken to transfer protocol fee to fee recipient if there is a fee payProtocolFeeFromSetToken(_setToken, _reserveAsset, _redeemInfo.protocolFees); // Instruct the SetToken to transfer manager fee to manager fee recipient if there is a fee if (_redeemInfo.managerFee > 0) { _setToken.strictInvokeTransfer( _reserveAsset, navIssuanceSettings[_setToken].feeRecipient, _redeemInfo.managerFee ); } } /** * Returns the issue premium percentage. Virtual function that can be overridden in future versions of the module * and can contain arbitrary logic to calculate the issuance premium. */ function _getIssuePremium( ISetToken _setToken, address /* _reserveAsset */, uint256 /* _reserveAssetQuantity */ ) virtual internal view returns (uint256) { return navIssuanceSettings[_setToken].premiumPercentage; } /** * Returns the redeem premium percentage. Virtual function that can be overridden in future versions of the module * and can contain arbitrary logic to calculate the redemption premium. */ function _getRedeemPremium( ISetToken _setToken, address /* _reserveAsset */, uint256 /* _setTokenQuantity */ ) virtual internal view returns (uint256) { return navIssuanceSettings[_setToken].premiumPercentage; } /** * Returns the fees attributed to the manager and the protocol. The fees are calculated as follows: * * ManagerFee = (manager fee % - % to protocol) * reserveAssetQuantity * Protocol Fee = (% manager fee share + direct fee %) * reserveAssetQuantity * * @param _setToken Instance of the SetToken * @param _reserveAssetQuantity Quantity of reserve asset to calculate fees from * @param _protocolManagerFeeIndex Index to pull rev share NAV Issuance fee from the Controller * @param _protocolDirectFeeIndex Index to pull direct NAV issuance fee from the Controller * @param _managerFeeIndex Index from NAVIssuanceSettings (0 = issue fee, 1 = redeem fee) * * @return uint256 Fees paid to the protocol in reserve asset * @return uint256 Fees paid to the manager in reserve asset * @return uint256 Net reserve to user net of fees */ function _getFees( ISetToken _setToken, uint256 _reserveAssetQuantity, uint256 _protocolManagerFeeIndex, uint256 _protocolDirectFeeIndex, uint256 _managerFeeIndex ) internal view returns (uint256, uint256, uint256) { (uint256 protocolFeePercentage, uint256 managerFeePercentage) = _getProtocolAndManagerFeePercentages( _setToken, _protocolManagerFeeIndex, _protocolDirectFeeIndex, _managerFeeIndex ); // Calculate total notional fees uint256 protocolFees = protocolFeePercentage.preciseMul(_reserveAssetQuantity); uint256 managerFee = managerFeePercentage.preciseMul(_reserveAssetQuantity); uint256 netReserveFlow = _reserveAssetQuantity.sub(protocolFees).sub(managerFee); return (protocolFees, managerFee, netReserveFlow); } function _getProtocolAndManagerFeePercentages( ISetToken _setToken, uint256 _protocolManagerFeeIndex, uint256 _protocolDirectFeeIndex, uint256 _managerFeeIndex ) internal view returns(uint256, uint256) { // Get protocol fee percentages uint256 protocolDirectFeePercent = controller.getModuleFee(address(this), _protocolDirectFeeIndex); uint256 protocolManagerShareFeePercent = controller.getModuleFee(address(this), _protocolManagerFeeIndex); uint256 managerFeePercent = navIssuanceSettings[_setToken].managerFees[_managerFeeIndex]; // Calculate revenue share split percentage uint256 protocolRevenueSharePercentage = protocolManagerShareFeePercent.preciseMul(managerFeePercent); uint256 managerRevenueSharePercentage = managerFeePercent.sub(protocolRevenueSharePercentage); uint256 totalProtocolFeePercentage = protocolRevenueSharePercentage.add(protocolDirectFeePercent); return (managerRevenueSharePercentage, totalProtocolFeePercentage); } function _getSetTokenMintQuantity( ISetToken _setToken, address _reserveAsset, uint256 _netReserveFlows, // Value of reserve asset net of fees uint256 _setTotalSupply ) internal view returns (uint256) { uint256 premiumPercentage = _getIssuePremium(_setToken, _reserveAsset, _netReserveFlows); uint256 premiumValue = _netReserveFlows.preciseMul(premiumPercentage); // Get valuation of the SetToken with the quote asset as the reserve asset. Returns value in precise units (1e18) // Reverts if price is not found uint256 setTokenValuation = controller.getSetValuer().calculateSetTokenValuation(_setToken, _reserveAsset); // Get reserve asset decimals uint256 reserveAssetDecimals = ERC20(_reserveAsset).decimals(); uint256 normalizedTotalReserveQuantityNetFees = _netReserveFlows.preciseDiv(10 ** reserveAssetDecimals); uint256 normalizedTotalReserveQuantityNetFeesAndPremium = _netReserveFlows.sub(premiumValue).preciseDiv(10 ** reserveAssetDecimals); // Calculate SetTokens to mint to issuer uint256 denominator = _setTotalSupply.preciseMul(setTokenValuation).add(normalizedTotalReserveQuantityNetFees).sub(normalizedTotalReserveQuantityNetFeesAndPremium); return normalizedTotalReserveQuantityNetFeesAndPremium.preciseMul(_setTotalSupply).preciseDiv(denominator); } function _getRedeemReserveQuantity( ISetToken _setToken, address _reserveAsset, uint256 _setTokenQuantity ) internal view returns (uint256) { // Get valuation of the SetToken with the quote asset as the reserve asset. Returns value in precise units (10e18) // Reverts if price is not found uint256 setTokenValuation = controller.getSetValuer().calculateSetTokenValuation(_setToken, _reserveAsset); uint256 totalRedeemValueInPreciseUnits = _setTokenQuantity.preciseMul(setTokenValuation); // Get reserve asset decimals uint256 reserveAssetDecimals = ERC20(_reserveAsset).decimals(); uint256 prePremiumReserveQuantity = totalRedeemValueInPreciseUnits.preciseMul(10 ** reserveAssetDecimals); uint256 premiumPercentage = _getRedeemPremium(_setToken, _reserveAsset, _setTokenQuantity); uint256 premiumQuantity = prePremiumReserveQuantity.preciseMulCeil(premiumPercentage); return prePremiumReserveQuantity.sub(premiumQuantity); } /** * The new position multiplier is calculated as follows: * inflationPercentage = (newSupply - oldSupply) / newSupply * newMultiplier = (1 - inflationPercentage) * positionMultiplier */ function _getIssuePositionMultiplier( ISetToken _setToken, ActionInfo memory _issueInfo ) internal view returns (uint256, int256) { // Calculate inflation and new position multiplier. Note: Round inflation up in order to round position multiplier down uint256 newTotalSupply = _issueInfo.setTokenQuantity.add(_issueInfo.previousSetTokenSupply); int256 newPositionMultiplier = _setToken.positionMultiplier() .mul(_issueInfo.previousSetTokenSupply.toInt256()) .div(newTotalSupply.toInt256()); return (newTotalSupply, newPositionMultiplier); } /** * Calculate deflation and new position multiplier. Note: Round deflation down in order to round position multiplier down * * The new position multiplier is calculated as follows: * deflationPercentage = (oldSupply - newSupply) / newSupply * newMultiplier = (1 + deflationPercentage) * positionMultiplier */ function _getRedeemPositionMultiplier( ISetToken _setToken, uint256 _setTokenQuantity, ActionInfo memory _redeemInfo ) internal view returns (uint256, int256) { uint256 newTotalSupply = _redeemInfo.previousSetTokenSupply.sub(_setTokenQuantity); int256 newPositionMultiplier = _setToken.positionMultiplier() .mul(_redeemInfo.previousSetTokenSupply.toInt256()) .div(newTotalSupply.toInt256()); return (newTotalSupply, newPositionMultiplier); } /** * The new position reserve asset unit is calculated as follows: * totalReserve = (oldUnit * oldSetTokenSupply) + reserveQuantity * newUnit = totalReserve / newSetTokenSupply */ function _getIssuePositionUnit( ISetToken _setToken, address _reserveAsset, ActionInfo memory _issueInfo ) internal view returns (uint256) { uint256 existingUnit = _setToken.getDefaultPositionRealUnit(_reserveAsset).toUint256(); uint256 totalReserve = existingUnit .preciseMul(_issueInfo.previousSetTokenSupply) .add(_issueInfo.netFlowQuantity); return totalReserve.preciseDiv(_issueInfo.newSetTokenSupply); } /** * The new position reserve asset unit is calculated as follows: * totalReserve = (oldUnit * oldSetTokenSupply) - reserveQuantityToSendOut * newUnit = totalReserve / newSetTokenSupply */ function _getRedeemPositionUnit( ISetToken _setToken, address _reserveAsset, ActionInfo memory _redeemInfo ) internal view returns (uint256) { uint256 existingUnit = _setToken.getDefaultPositionRealUnit(_reserveAsset).toUint256(); uint256 totalExistingUnits = existingUnit.preciseMul(_redeemInfo.previousSetTokenSupply); uint256 outflow = _redeemInfo.netFlowQuantity.add(_redeemInfo.protocolFees).add(_redeemInfo.managerFee); // Require withdrawable quantity is greater than existing collateral require(totalExistingUnits >= outflow, "Must be greater than total available collateral"); return totalExistingUnits.sub(outflow).preciseDiv(_redeemInfo.newSetTokenSupply); } /** * If a pre-issue hook has been configured, call the external-protocol contract. Pre-issue hook logic * can contain arbitrary logic including validations, external function calls, etc. */ function _callPreIssueHooks( ISetToken _setToken, address _reserveAsset, uint256 _reserveAssetQuantity, address _caller, address _to ) internal { INAVIssuanceHook preIssueHook = navIssuanceSettings[_setToken].managerIssuanceHook; if (address(preIssueHook) != address(0)) { preIssueHook.invokePreIssueHook(_setToken, _reserveAsset, _reserveAssetQuantity, _caller, _to); } } /** * If a pre-redeem hook has been configured, call the external-protocol contract. */ function _callPreRedeemHooks(ISetToken _setToken, uint256 _setQuantity, address _caller, address _to) internal { INAVIssuanceHook preRedeemHook = navIssuanceSettings[_setToken].managerRedemptionHook; if (address(preRedeemHook) != address(0)) { preRedeemHook.invokePreRedeemHook(_setToken, _setQuantity, _caller, _to); } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IController","name":"_controller","type":"address"},{"internalType":"contract IWETH","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"address","name":"_feeRecipient","type":"address"}],"name":"FeeRecipientEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"_newManagerFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_index","type":"uint256"}],"name":"ManagerFeeEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"_newPremium","type":"uint256"}],"name":"PremiumEdited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"address","name":"_newReserveAsset","type":"address"}],"name":"ReserveAssetAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"address","name":"_removedReserveAsset","type":"address"}],"name":"ReserveAssetRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"address","name":"_issuer","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"address","name":"_reserveAsset","type":"address"},{"indexed":false,"internalType":"address","name":"_hookContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_managerFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_premium","type":"uint256"}],"name":"SetTokenNAVIssued","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"indexed":false,"internalType":"address","name":"_redeemer","type":"address"},{"indexed":false,"internalType":"address","name":"_to","type":"address"},{"indexed":false,"internalType":"address","name":"_reserveAsset","type":"address"},{"indexed":false,"internalType":"address","name":"_hookContract","type":"address"},{"indexed":false,"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_managerFee","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_premium","type":"uint256"}],"name":"SetTokenNAVRedeemed","type":"event"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"}],"name":"addReserveAsset","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":"address","name":"_managerFeeRecipient","type":"address"}],"name":"editFeeRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_managerFeePercentage","type":"uint256"},{"internalType":"uint256","name":"_managerFeeIndex","type":"uint256"}],"name":"editManagerFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_premiumPercentage","type":"uint256"}],"name":"editPremium","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"}],"name":"getExpectedReserveRedeemQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_reserveAssetQuantity","type":"uint256"}],"name":"getExpectedSetTokenIssueQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_reserveAssetQuantity","type":"uint256"}],"name":"getIssuePremium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_managerFeeIndex","type":"uint256"}],"name":"getManagerFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"}],"name":"getRedeemPremium","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"}],"name":"getReserveAssets","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"components":[{"internalType":"contract INAVIssuanceHook","name":"managerIssuanceHook","type":"address"},{"internalType":"contract INAVIssuanceHook","name":"managerRedemptionHook","type":"address"},{"internalType":"address[]","name":"reserveAssets","type":"address[]"},{"internalType":"address","name":"feeRecipient","type":"address"},{"internalType":"uint256[2]","name":"managerFees","type":"uint256[2]"},{"internalType":"uint256","name":"maxManagerFee","type":"uint256"},{"internalType":"uint256","name":"premiumPercentage","type":"uint256"},{"internalType":"uint256","name":"maxPremiumPercentage","type":"uint256"},{"internalType":"uint256","name":"minSetTokenSupply","type":"uint256"}],"internalType":"struct NavIssuanceModule.NAVIssuanceSettings","name":"_navIssuanceSettings","type":"tuple"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_reserveAssetQuantity","type":"uint256"}],"name":"isIssueValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"}],"name":"isRedeemValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isReserveAsset","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_reserveAssetQuantity","type":"uint256"},{"internalType":"uint256","name":"_minSetTokenReceiveQuantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"issue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_minSetTokenReceiveQuantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"issueWithEther","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"","type":"address"}],"name":"navIssuanceSettings","outputs":[{"internalType":"contract INAVIssuanceHook","name":"managerIssuanceHook","type":"address"},{"internalType":"contract INAVIssuanceHook","name":"managerRedemptionHook","type":"address"},{"internalType":"address","name":"feeRecipient","type":"address"},{"internalType":"uint256","name":"maxManagerFee","type":"uint256"},{"internalType":"uint256","name":"premiumPercentage","type":"uint256"},{"internalType":"uint256","name":"maxPremiumPercentage","type":"uint256"},{"internalType":"uint256","name":"minSetTokenSupply","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"internalType":"uint256","name":"_minReserveReceiveQuantity","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"redeem","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"uint256","name":"_setTokenQuantity","type":"uint256"},{"internalType":"uint256","name":"_minReserveReceiveQuantity","type":"uint256"},{"internalType":"address payable","name":"_to","type":"address"}],"name":"redeemIntoEther","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeModule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract ISetToken","name":"_setToken","type":"address"},{"internalType":"address","name":"_reserveAsset","type":"address"}],"name":"removeReserveAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"contract IWETH","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162004fbc38038062004fbc83398101604081905262000034916200006f565b600080546001600160a01b0319166001600160a01b0393909316929092179091556001805560601b6001600160601b031916608052620000c6565b6000806040838503121562000082578182fd5b82516200008f81620000ad565b6020840151909250620000a281620000ad565b809150509250929050565b6001600160a01b0381168114620000c357600080fd5b50565b60805160601c614e926200012a6000398061048d52806105055280610530528061056552806105a752806109a9528061163952806116785280611721528061176a5280611810528061183b5280611d405280611dd45280611f375250614e926000f3fe6080604052600436106101445760003560e01c80637f977948116100b6578063b98b60301161006f578063b98b60301461038c578063d5f8394a146103ac578063df3fa714146103cc578063ee673ac4146103ec578063f529c18a146101fb578063f77c47911461041f5761014b565b80637f977948146102d7578063847ef08d146102f757806391819fb31461030c5780639c5ad2831461032c5780639f6f6ba91461034c578063add7745a1461036c5761014b565b80632f879fa3116101085780632f879fa3146101fb57806330b305f91461021b5780633fc8cef31461023b5780634b79da0a1461025d57806364b2dc7a1461028a5780636ff7f6da146102b75761014b565b806302c619d01461015057806304f1b57114610165578063080b16f81461019b5780630e3af8ad146101bb578063281d0115146101db5761014b565b3661014b57005b600080fd5b61016361015e3660046140f9565b610434565b005b34801561017157600080fd5b506101856101803660046140ce565b6105d8565b6040516101929190614404565b60405180910390f35b3480156101a757600080fd5b506101636101b6366004613f01565b61060b565b3480156101c757600080fd5b506101636101d63660046140ce565b6106ed565b3480156101e757600080fd5b506101636101f6366004613f01565b6107c2565b34801561020757600080fd5b50610185610216366004613f39565b6108e6565b34801561022757600080fd5b50610163610236366004613f79565b6108fd565b34801561024757600080fd5b506102506109a7565b6040516101929190614238565b34801561026957600080fd5b5061027d610278366004613ee5565b6109cb565b60405161019291906142f4565b34801561029657600080fd5b506102aa6102a5366004613f01565b610a44565b6040516101929190614341565b3480156102c357600080fd5b506101856102d2366004613f39565b610a64565b3480156102e357600080fd5b506101856102f2366004613f39565b610a92565b34801561030357600080fd5b50610163610b34565b34801561031857600080fd5b50610163610327366004613f01565b610c4b565b34801561033857600080fd5b506102aa610347366004613f39565b610dfb565b34801561035857600080fd5b50610163610367366004613f79565b610fb3565b34801561037857600080fd5b506102aa610387366004613f39565b6110d3565b34801561039857600080fd5b506101636103a7366004613fd7565b6111ad565b3480156103b857600080fd5b506101636103c736600461416e565b6115e5565b3480156103d857600080fd5b506101636103e736600461413a565b61186d565b3480156103f857600080fd5b5061040c610407366004613ee5565b611975565b604051610192979695949392919061434c565b34801561042b57600080fd5b506102506119c0565b600260015414156104605760405162461bcd60e51b815260040161045790614d8f565b60405180910390fd5b60026001558261046f816119cf565b61048b5760405162461bcd60e51b8152600401610457906144b4565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156104e657600080fd5b505af11580156104fa573d6000803e3d6000fd5b505050505061052a847f000000000000000000000000000000000000000000000000000000000000000034611ad3565b610557847f0000000000000000000000000000000000000000000000000000000000000000343386611b3d565b61055f613b56565b61058a857f000000000000000000000000000000000000000000000000000000000000000034611bcd565b9050610597858583611cc1565b6105a18582611d24565b6105cd857f00000000000000000000000000000000000000000000000000000000000000008584611fc5565b505060018055505050565b6001600160a01b03821660009081526002602081905260408220600401908390811061060057fe5b015490505b92915050565b816106168133612112565b6106325760405162461bcd60e51b815260040161045790614c46565b61063b816119cf565b6106575760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b03821661067d5760405162461bcd60e51b815260040161045790614674565b6001600160a01b038381166000818152600260205260409081902060030180546001600160a01b0319169386169390931790925590517fff78699124ce6ab1e48255152542b253d1e5c0fc925308a48852e674777ace35906106e0908590614238565b60405180910390a2505050565b816106f88133612112565b6107145760405162461bcd60e51b815260040161045790614c46565b61071d816119cf565b6107395760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0383166000908152600260205260409020600801548211156107745760405162461bcd60e51b81526004016104579061486e565b6001600160a01b03831660008181526002602052604090819020600701849055517fd0db665d5987480b1c4e28f4484b1a9fabff141ffcb5a9ff9f384e4672155c05906106e0908590614404565b816107cd8133612112565b6107e95760405162461bcd60e51b815260040161045790614c46565b6107f2816119cf565b61080e5760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16156108545760405162461bcd60e51b81526004016104579061474b565b6001600160a01b0383811660008181526002602081815260408084209092018054600180820183559185528285200180546001600160a01b03191696891696871790558484526003825282842095845294905290819020805460ff191690931790925590517f94257d51a6470b587cb1ae3068fee4bce93eff4d149a98bd05aee37ae4911487906106e0908590614238565b60006108f38484846121a0565b90505b9392505050565b600260015414156109205760405162461bcd60e51b815260040161045790614d8f565b60026001558461092f816119cf565b61094b5760405162461bcd60e51b8152600401610457906144b4565b610956868686611ad3565b6109638686863386611b3d565b61096b613b56565b610976878787611bcd565b9050610983878583611cc1565b61098e8787836121c0565b61099a87878584611fc5565b5050600180555050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b038116600090815260026020818152604092839020909101805483518184028101840190945280845260609392830182828015610a3857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a1a575b50505050509050919050565b600360209081526000928352604080842090915290825290205460ff1681565b600080610a728585856122ab565b90506000610a868683600160036001612427565b98975050505050505050565b600080610aa58584600060026000612427565b925050506000856001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ae457600080fd5b505afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c91906141b7565b9050610b2a8686848461249e565b9695505050505050565b3360005b6001600160a01b03821660009081526002602081905260409091200154811015610bc6576001600160a01b0382166000908152600360209081526040808320600292839052908320909101805491929184908110610b9257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020805460ff19169055600101610b38565b506001600160a01b0381166000908152600260208190526040822080546001600160a01b0319908116825560018201805490911690559190610c0a90830182613ba2565b6003820180546001600160a01b0319169055610c2a600483016000613bc3565b50600060068201819055600782018190556008820181905560099091015550565b81610c568133612112565b610c725760405162461bcd60e51b815260040161045790614c46565b610c7b816119cf565b610c975760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16610cdc5760405162461bcd60e51b8152600401610457906146b7565b610d6f8260026000866001600160a01b03166001600160a01b03168152602001908152602001600020600201805480602002602001604051908101604052809291908181526020018280548015610d5c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d3e575b505050505061265f90919063ffffffff16565b6001600160a01b03841660009081526002602081815260409092208351610d9c9491909201920190613bd1565b506001600160a01b0380841660008181526003602090815260408083209487168352939052829020805460ff1916905590517f3c59157886f089a91f7813e86300f9f9b36289e41e7c09c70f9cc208b810cd94906106e0908590614238565b600080846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3757600080fd5b505afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f91906141b7565b9050821580610ea457506001600160a01b0380861660009081526003602090815260408083209388168352929052205460ff16155b80610ed957506001600160a01b038516600090815260026020526040902060090154610ed6908463ffffffff6126a716565b81105b15610ee85760009150506108f6565b6000610ef58686866122ab565b90506000610f098783600160036001612427565b925050506000610f93886001600160a01b03166366cb8d2f896040518263ffffffff1660e01b8152600401610f3e9190614238565b60206040518083038186803b158015610f5657600080fd5b505afa158015610f6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8e91906141b7565b6126cc565b905081610fa6828663ffffffff6126f216565b10159450505050506108f6565b60026001541415610fd65760405162461bcd60e51b815260040161045790614d8f565b600260015584610fe5816119cf565b6110015760405162461bcd60e51b8152600401610457906144b4565b61100c868686611ad3565b6110188685338561271c565b611020613b56565b61102b878787612793565b905061103987858784612876565b604051632770a7eb60e21b81526001600160a01b03881690639dc29fac906110679033908990600401614290565b600060405180830381600087803b15801561108157600080fd5b505af1158015611095573d6000803e3d6000fd5b50505060608201516110bc91506001600160a01b038916908890869063ffffffff6128df16565b6110c7878783612a21565b61099a87878584612a70565b600080846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114791906141b7565b9050821580159061117d57506001600160a01b0380861660009081526003602090815260408083209388168352929052205460ff165b80156111a457506001600160a01b0385166000908152600260205260409020600901548110155b95945050505050565b81336111b98282612112565b6111d55760405162461bcd60e51b815260040161045790614c46565b600054604051631d3af8fb60e21b815285916001600160a01b0316906374ebe3ec90611205908490600401614238565b60206040518083038186803b15801561121d57600080fd5b505afa158015611231573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112559190613e39565b6112715760405162461bcd60e51b815260040161045790614c03565b61127a81612b5e565b6112965760405162461bcd60e51b8152600401610457906145f5565b6000846040015151116112bb5760405162461bcd60e51b815260040161045790614782565b6112c3612b8d565b8460a00151106112e55760405162461bcd60e51b815260040161045790614d14565b6112ed612b8d565b8460e001511061130f5760405162461bcd60e51b815260040161045790614964565b60a084015160808501515111156113385760405162461bcd60e51b815260040161045790614af6565b60a084015160808501516020015111156113645760405162461bcd60e51b81526004016104579061462c565b8360e001518460c00151111561138c5760405162461bcd60e51b8152600401610457906145be565b60608401516001600160a01b03166113b65760405162461bcd60e51b815260040161045790614b3d565b6000846101000151116113db5760405162461bcd60e51b8152600401610457906144fc565b60005b8460400151518110156114c3576001600160a01b0386166000908152600360205260408082209087015180519192918490811061141757fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161561145b5760405162461bcd60e51b815260040161045790614a00565b6001600160a01b03861660009081526003602052604080822090870151805160019391908590811061148957fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016113de565b506001600160a01b03808616600090815260026020818152604092839020885181549086166001600160a01b0319918216178255828a015160018301805491909716911617909455918701518051889493611522938501920190613bd1565b5060608201516003820180546001600160a01b0319166001600160a01b03909216919091179055608082015161155e9060048301906002613c32565b5060a0820151816006015560c0820151816007015560e082015181600801556101008201518160090155905050846001600160a01b0316630ffe0f1e6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156115c657600080fd5b505af11580156115da573d6000803e3d6000fd5b505050505050505050565b600260015414156116085760405162461bcd60e51b815260040161045790614d8f565b600260015583611617816119cf565b6116335760405162461bcd60e51b8152600401610457906144b4565b61165e857f000000000000000000000000000000000000000000000000000000000000000086611ad3565b61166a8585338561271c565b611672613b56565b61169d867f000000000000000000000000000000000000000000000000000000000000000087612793565b90506116ab86858784612876565b604051632770a7eb60e21b81526001600160a01b03871690639dc29fac906116d99033908990600401614290565b600060405180830381600087803b1580156116f357600080fd5b505af1158015611707573d6000803e3d6000fd5b505050606082015161174e91506001600160a01b038816907f000000000000000000000000000000000000000000000000000000000000000090309063ffffffff6128df16565b6060810151604051632e1a7d4d60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001691632e1a7d4d9161179e9190600401614404565b600060405180830381600087803b1580156117b857600080fd5b505af11580156117cc573d6000803e3d6000fd5b5050505060608101516040516001600160a01b038516916108fc811502916000818181858888f19350505050158015611809573d6000803e3d6000fd5b50611835867f000000000000000000000000000000000000000000000000000000000000000083612a21565b611861867f00000000000000000000000000000000000000000000000000000000000000008584612a70565b50506001805550505050565b826118788133612112565b6118945760405162461bcd60e51b815260040161045790614c46565b61189d816119cf565b6118b95760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0384166000908152600260205260409020600601548311156118f45760405162461bcd60e51b815260040161045790614c7d565b8260026000866001600160a01b03166001600160a01b03168152602001908152602001600020600401836002811061192857fe5b01556040516001600160a01b038516907f4e913bee7cf10ece89b3c5593df3898d1a324864d38052df88792a7d87a17488906119679086908690614dc6565b60405180910390a250505050565b60026020526000908152604090208054600182015460038301546006840154600785015460088601546009909601546001600160a01b03958616969486169590931693919290919087565b6000546001600160a01b031681565b60008054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec90611a00908590600401614238565b60206040518083038186803b158015611a1857600080fd5b505afa158015611a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a509190613e39565b801561060557506040516335fc6c9f60e21b81526001600160a01b0383169063d7f1b27c90611a83903090600401614238565b60206040518083038186803b158015611a9b57600080fd5b505afa158015611aaf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106059190613e39565b60008111611af35760405162461bcd60e51b815260040161045790614486565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16611b385760405162461bcd60e51b8152600401610457906148b7565b505050565b6001600160a01b03808616600090815260026020526040902054168015611bc557604051633ed0b9fb60e21b81526001600160a01b0382169063fb42e7ec90611b9290899089908990899089906004016143a7565b600060405180830381600087803b158015611bac57600080fd5b505af1158015611bc0573d6000803e3d6000fd5b505050505b505050505050565b611bd5613b56565b611bdd613b56565b846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c1657600080fd5b505afa158015611c2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4e91906141b7565b60a0820152828152611c6585846000600281612427565b606084018190526040840191909152602083019190915260a0820151611c8f91879187919061249e565b6080820152611c9e8582612b9a565b60e083015260c0820152611cb3858583612c72565b610100820152949350505050565b6001600160a01b03831660009081526002602052604090206009015460a08201511015611d005760405162461bcd60e51b8152600401610457906147c7565b8181608001511015611b385760405162461bcd60e51b815260040161045790614546565b606081015160405163a9059cbb60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169163a9059cbb91611d75918691600401614290565b602060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc79190613e39565b50602081015115611efc577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663a9059cbb6000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b158015611e4e57600080fd5b505afa158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613d81565b83602001516040518363ffffffff1660e01b8152600401611ea8929190614290565b602060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efa9190613e39565b505b604081015115611fc1576001600160a01b03828116600090815260026020526040908190206003015483820151915163a9059cbb60e01b81527f000000000000000000000000000000000000000000000000000000000000000084169363a9059cbb93611f6f9390911691600401614290565b602060405180830381600087803b158015611f8957600080fd5b505af1158015611f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b389190613e39565b5050565b60e081015160405163c2de0e9d60e01b81526001600160a01b0386169163c2de0e9d91611ff59190600401614404565b600060405180830381600087803b15801561200f57600080fd5b505af1158015612023573d6000803e3d6000fd5b50505061010082015161204991506001600160a01b03861690859063ffffffff612ce016565b60808101516040516340c10f1960e01b81526001600160a01b038616916340c10f199161207a918691600401614290565b600060405180830381600087803b15801561209457600080fd5b505af11580156120a8573d6000803e3d6000fd5b5050506001600160a01b03808616600081815260026020908152604091829020546080870151878401519288015193519496507fab151ef72553d84db96b5656139e68d5e348f8273d15b1724db8f3c09832d80e956119679533958b958d9590931693929161424c565b6000816001600160a01b0316836001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561215757600080fd5b505afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f9190613d81565b6001600160a01b0316149392505050565b50506001600160a01b031660009081526002602052604090206007015490565b6121d08233858460600151612e5e565b60208101511561226e5761226e82336000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b15801561222c57600080fd5b505afa158015612240573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122649190613d81565b8460200151612e5e565b604081015115611b38576001600160a01b03808416600090815260026020526040908190206003015490830151611b389285923392911690612e5e565b6000805481906122c3906001600160a01b0316612e6a565b6001600160a01b0316636101c54086866040518363ffffffff1660e01b81526004016122f092919061438d565b60206040518083038186803b15801561230857600080fd5b505afa15801561231c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234091906141b7565b90506000612354848363ffffffff6126f216565b90506000856001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561239157600080fd5b505afa1580156123a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c991906141cf565b60ff16905060006123e483600a84900a63ffffffff6126f216565b905060006123f38989896121a0565b90506000612407838363ffffffff612eea16565b9050612419838263ffffffff612f2916565b9a9950505050505050505050565b600080600080600061243b8a898989612f6b565b90925090506000612452838b63ffffffff6126f216565b90506000612466838c63ffffffff6126f216565b9050600061248a8261247e8e8663ffffffff612f2916565b9063ffffffff612f2916565b929d919c50919a5098505050505050505050565b6000806124ac8686866121a0565b905060006124c0858363ffffffff6126f216565b60008054919250906124da906001600160a01b0316612e6a565b6001600160a01b0316636101c54089896040518363ffffffff1660e01b815260040161250792919061438d565b60206040518083038186803b15801561251f57600080fd5b505afa158015612533573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255791906141b7565b90506000876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906141cf565b60ff16905060006125e788600a84900a63ffffffff61310216565b9050600061260f600a84900a6126038b8863ffffffff612f2916565b9063ffffffff61310216565b905060006126378261247e8561262b8d8a63ffffffff6126f216565b9063ffffffff6126a716565b905061264d81612603848c63ffffffff6126f216565b9750505050505050505b949350505050565b606060008061266e8585613120565b915091508061268f5760405162461bcd60e51b815260040161045790614420565b606061269b8684613183565b50935061060592505050565b6000828201838110156108f65760405162461bcd60e51b815260040161045790614587565b6000808212156126ee5760405162461bcd60e51b8152600401610457906148ee565b5090565b60006108f6670de0b6b3a7640000612710858563ffffffff6132b216565b9063ffffffff6132ec16565b6001600160a01b0380851660009081526002602052604090206001015416801561278c57604051639b19c2bf60e01b81526001600160a01b03821690639b19c2bf906127729088908890889088906004016143d9565b600060405180830381600087803b1580156115c657600080fd5b5050505050565b61279b613b56565b6127a3613b56565b608081018390526127b58585856122ab565b8082526127c89086906001600381612427565b606084015260408084019190915260208084019290925280516318160ddd60e01b815290516001600160a01b038816926318160ddd9260048082019391829003018186803b15801561281957600080fd5b505afa15801561282d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285191906141b7565b60a082015261286185848361332e565b60e083015260c0820152611cb38585836133b1565b6001600160a01b03841660009081526002602052604090206009015460c082015110156128b55760405162461bcd60e51b8152600401610457906146ee565b82816060015110156128d95760405162461bcd60e51b81526004016104579061481d565b50505050565b80156128d9576040516370a0823160e01b81526000906001600160a01b038516906370a0823190612914908890600401614238565b60206040518083038186803b15801561292c57600080fd5b505afa158015612940573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296491906141b7565b90506129728585858561346b565b6040516370a0823160e01b81526000906001600160a01b038616906370a08231906129a1908990600401614238565b60206040518083038186803b1580156129b957600080fd5b505afa1580156129cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f191906141b7565b9050612a03828463ffffffff612f2916565b8114611bc55760405162461bcd60e51b815260040161045790614abf565b612a3083838360200151613538565b604081015115611b38576001600160a01b03808416600081815260026020526040908190206003015490840151611b38938692169063ffffffff6128df16565b60e081015160405163c2de0e9d60e01b81526001600160a01b0386169163c2de0e9d91612aa09190600401614404565b600060405180830381600087803b158015612aba57600080fd5b505af1158015612ace573d6000803e3d6000fd5b505050610100820151612af491506001600160a01b03861690859063ffffffff612ce016565b6001600160a01b038085166000818152600260209081526040918290206001015460808601518684015192870151935194957f76608da3459f30443b27df4954c2ee5953695a78cf2327545bc5992eca749f4f956119679533958b958d959416939290919061424c565b6040516353bae5f760e01b81526000906001600160a01b038316906353bae5f790611a83903090600401614238565b670de0b6b3a76400005b90565b6000806000612bba8460a0015185608001516126a790919063ffffffff16565b90506000612c63612bca836135df565b612c57612bda8860a001516135df565b896001600160a01b0316635230c3966040518163ffffffff1660e01b815260040160206040518083038186803b158015612c1357600080fd5b505afa158015612c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c4b91906141b7565b9063ffffffff61360416565b9063ffffffff61366f16565b919350909150505b9250929050565b600080612ca4856001600160a01b03166366cb8d2f866040518263ffffffff1660e01b8152600401610f3e9190614238565b90506000612cc7846060015161262b8660a00151856126f290919063ffffffff16565b9050610b2a8460c001518261310290919063ffffffff16565b6000612cec84846136d3565b905080158015612cfc5750600082115b15612d7357612d0b848461375a565b612d6e576040516304e3532760e41b81526001600160a01b03851690634e35327090612d3b908690600401614238565b600060405180830381600087803b158015612d5557600080fd5b505af1158015612d69573d6000803e3d6000fd5b505050505b612df0565b808015612d7e575081155b15612df057612d8d848461375a565b612df057604051636f86c89760e01b81526001600160a01b03851690636f86c89790612dbd908690600401614238565b600060405180830381600087803b158015612dd757600080fd5b505af1158015612deb573d6000803e3d6000fd5b505050505b836001600160a01b0316632ba57d1784612e09856135df565b6040518363ffffffff1660e01b8152600401612e26929190614290565b600060405180830381600087803b158015612e4057600080fd5b505af1158015612e54573d6000803e3d6000fd5b5050505050505050565b6128d9848484846137e6565b6040516373b2e76b60e11b81526000906001600160a01b0383169063e765ced690612e9a90600290600401614404565b60206040518083038186803b158015612eb257600080fd5b505afa158015612ec6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106059190613d81565b6000821580612ef7575081155b15612f0457506000610605565b6108f6600161262b670de0b6b3a76400006127108361247e898963ffffffff6132b216565b60006108f683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061390a565b6000805460405163792aa04f60e01b8152829182916001600160a01b039091169063792aa04f90612fa29030908990600401614290565b60206040518083038186803b158015612fba57600080fd5b505afa158015612fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff291906141b7565b6000805460405163792aa04f60e01b815292935090916001600160a01b039091169063792aa04f9061302a9030908b90600401614290565b60206040518083038186803b15801561304257600080fd5b505afa158015613056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307a91906141b7565b90506000600260008a6001600160a01b03166001600160a01b0316815260200190815260200160002060040186600281106130b157fe5b0154905060006130c7838363ffffffff6126f216565b905060006130db838363ffffffff612f2916565b905060006130ef838763ffffffff6126a716565b919c919b50909950505050505050505050565b60006108f68261271085670de0b6b3a764000063ffffffff6132b216565b81516000908190815b8181101561317357846001600160a01b031686828151811061314757fe5b60200260200101516001600160a01b0316141561316b57925060019150612c6b9050565b600101613129565b5060001995600095509350505050565b81516060906000908084106131aa5760405162461bcd60e51b81526004016104579061444f565b60606001820367ffffffffffffffff811180156131c657600080fd5b506040519080825280602002602001820160405280156131f0578160200160208202803683370190505b50905060005b8581101561323e5786818151811061320a57fe5b602002602001015182828151811061321e57fe5b6001600160a01b03909216602092830291909101909101526001016131f6565b50600185015b8281101561328f5786818151811061325857fe5b602002602001015182600183038151811061326f57fe5b6001600160a01b0390921660209283029190910190910152600101613244565b508086868151811061329d57fe5b60200260200101519350935050509250929050565b6000826132c157506000610605565b828202828482816132ce57fe5b04146108f65760405162461bcd60e51b815260040161045790614a37565b60006108f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613936565b600080600061334a858560a00151612f2990919063ffffffff16565b905060006133a361335a836135df565b612c5761336a8860a001516135df565b8a6001600160a01b0316635230c3966040518163ffffffff1660e01b815260040160206040518083038186803b158015612c1357600080fd5b919791965090945050505050565b6000806133e3856001600160a01b03166366cb8d2f866040518263ffffffff1660e01b8152600401610f3e9190614238565b905060006133fe8460a00151836126f290919063ffffffff16565b90506000613425856040015161262b876020015188606001516126a790919063ffffffff16565b9050808210156134475760405162461bcd60e51b8152600401610457906149b1565b60c085015161346090612603848463ffffffff612f2916565b979650505050505050565b80156128d95760608282604051602401613486929190614290565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f0332906134e290879060009086906004016142cd565b600060405180830381600087803b1580156134fc57600080fd5b505af1158015613510573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bc59190810190613e59565b8015611b3857611b38826000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b15801561358f57600080fd5b505afa1580156135a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c79190613d81565b6001600160a01b03861691908463ffffffff6128df16565b6000600160ff1b82106126ee5760405162461bcd60e51b815260040161045790614bbb565b60008261361357506000610605565b826000191480156136275750600160ff1b82145b156136445760405162461bcd60e51b815260040161045790614a78565b8282028284828161365157fe5b05146108f65760405162461bcd60e51b815260040161045790614a78565b60008161368e5760405162461bcd60e51b815260040161045790614d5a565b816000191480156136a25750600160ff1b83145b156136bf5760405162461bcd60e51b815260040161045790614923565b60008284816136ca57fe5b05949350505050565b600080836001600160a01b03166366cb8d2f846040518263ffffffff1660e01b81526004016137029190614238565b60206040518083038186803b15801561371a57600080fd5b505afa15801561372e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375291906141b7565b139392505050565b600080836001600160a01b031663a7bdad03846040518263ffffffff1660e01b81526004016137899190614238565b60006040518083038186803b1580156137a157600080fd5b505afa1580156137b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137dd9190810190613d9d565b51119392505050565b80156128d9576040516370a0823160e01b81526000906001600160a01b038616906370a082319061381b908690600401614238565b60206040518083038186803b15801561383357600080fd5b505afa158015613847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386b91906141b7565b90506138798585858561396d565b6040516370a0823160e01b81526000906001600160a01b038716906370a08231906138a8908790600401614238565b60206040518083038186803b1580156138c057600080fd5b505afa1580156138d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f891906141b7565b9050612a03828463ffffffff6126a716565b6000818484111561392e5760405162461bcd60e51b8152600401610457919061440d565b505050900390565b600081836139575760405162461bcd60e51b8152600401610457919061440d565b50600083858161396357fe5b0495945050505050565b6128d9846323b872dd60e01b85858560405160240161398e939291906142a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526060613a15826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613a4f9092919063ffffffff16565b805190915015611b385780806020019051810190613a339190613e39565b611b385760405162461bcd60e51b815260040161045790614cca565b60606108f384846000856060613a6485613b1d565b613a805760405162461bcd60e51b815260040161045790614b84565b60006060866001600160a01b03168587604051613a9d919061421c565b60006040518083038185875af1925050503d8060008114613ada576040519150601f19603f3d011682016040523d82523d6000602084013e613adf565b606091505b50915091508115613af35791506126579050565b805115613b035780518082602001fd5b8360405162461bcd60e51b8152600401610457919061440d565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612657575050151592915050565b6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5080546000825590600052602060002090810190613bc09190613c68565b50565b506000815560010160009055565b828054828255906000526020600020908101928215613c26579160200282015b82811115613c2657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613bf1565b506126ee929150613c82565b8260028101928215613c60579160200282015b82811115613c60578251825591602001919060010190613c45565b506126ee9291505b612b9791905b808211156126ee5760008155600101613c6e565b612b9791905b808211156126ee5780546001600160a01b0319168155600101613c88565b803561060581614e47565b600082601f830112613cc1578081fd5b8135613cd4613ccf82614dfb565b614dd4565b818152915060208083019084810181840286018201871015613cf557600080fd5b60005b84811015613d1d578135613d0b81614e47565b84529282019290820190600101613cf8565b505050505092915050565b600082601f830112613d38578081fd5b613d426040614dd4565b9050808284604085011115613d5657600080fd5b60005b6002811015613d78578135835260209283019290910190600101613d59565b50505092915050565b600060208284031215613d92578081fd5b81516108f681614e47565b60006020808385031215613daf578182fd5b825167ffffffffffffffff811115613dc5578283fd5b80840185601f820112613dd6578384fd5b80519150613de6613ccf83614dfb565b8281528381019082850185850284018601891015613e02578687fd5b8693505b84841015613e2d578051613e1981614e47565b835260019390930192918501918501613e06565b50979650505050505050565b600060208284031215613e4a578081fd5b815180151581146108f6578182fd5b600060208284031215613e6a578081fd5b815167ffffffffffffffff80821115613e81578283fd5b81840185601f820112613e92578384fd5b8051925081831115613ea2578384fd5b613eb5601f8401601f1916602001614dd4565b9150828252856020848301011115613ecb578384fd5b613edc836020840160208401614e1b565b50949350505050565b600060208284031215613ef6578081fd5b81356108f681614e47565b60008060408385031215613f13578081fd5b8235613f1e81614e47565b91506020830135613f2e81614e47565b809150509250929050565b600080600060608486031215613f4d578081fd5b8335613f5881614e47565b92506020840135613f6881614e47565b929592945050506040919091013590565b600080600080600060a08688031215613f90578081fd5b8535613f9b81614e47565b94506020860135613fab81614e47565b935060408601359250606086013591506080860135613fc981614e47565b809150509295509295909350565b60008060408385031215613fe9578182fd5b8235613ff481614e47565b9150602083013567ffffffffffffffff80821115614010578283fd5b8185016101408188031215614023578384fd5b610120925061403183614dd4565b61403b8883613ca6565b815261404a8860208401613ca6565b6020820152604082013583811115614060578586fd5b61406c89828501613cb1565b60408301525061407f8860608401613ca6565b60608201526140918860808401613d28565b608082015260c082013560a082015260e082013560c082015261010092508282013560e08201528382013583820152809450505050509250929050565b600080604083850312156140e0578182fd5b82356140eb81614e47565b946020939093013593505050565b60008060006060848603121561410d578081fd5b833561411881614e47565b925060208401359150604084013561412f81614e47565b809150509250925092565b60008060006060848603121561414e578081fd5b833561415981614e47565b95602085013595506040909401359392505050565b60008060008060808587031215614183578182fd5b843561418e81614e47565b9350602085013592506040850135915060608501356141ac81614e47565b939692955090935050565b6000602082840312156141c8578081fd5b5051919050565b6000602082840312156141e0578081fd5b815160ff811681146108f6578182fd5b60008151808452614208816020860160208601614e1b565b601f01601f19169290920160200192915050565b6000825161422e818460208701614e1b565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03978816815295871660208701529386166040860152919094166060840152608083019390935260a082019290925260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600060018060a01b0385168252836020830152606060408301526111a460608301846141f0565b6020808252825182820181905260009190848201906040850190845b818110156143355783516001600160a01b031683529284019291840191600101614310565b50909695505050505050565b901515815260200190565b6001600160a01b03978816815295871660208701529390951660408501526060840191909152608083015260a082019290925260c081019190915260e00190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0395861681529385166020850152604084019290925283166060830152909116608082015260a00190565b6001600160a01b03948516815260208101939093529083166040830152909116606082015260800190565b90815260200190565b6000602082526108f660208301846141f0565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b60208082526018908201527f496e646578206d757374206265203c2041206c656e6774680000000000000000604082015260600190565b60208082526014908201527305175616e74697479206d757374206265203e20360641b604082015260600190565b60208082526028908201527f4d75737420626520612076616c696420616e6420696e697469616c697a65642060408201526729b2ba2a37b5b2b760c11b606082015260800190565b6020808252602a908201527f4d696e20536574546f6b656e20737570706c79206d75737420626520677265616040820152690746572207468616e20360b41b606082015260800190565b60208082526021908201527f4d7573742062652067726561746572207468616e206d696e20536574546f6b656040820152603760f91b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f5072656d69756d206d757374206265206c657373207468616e206d6178000000604082015260600190565b6020808252601e908201527f4d7573742062652070656e64696e6720696e697469616c697a6174696f6e0000604082015260600190565b60208082526028908201527f4d616e616765722072656465656d20666565206d757374206265206c657373206040820152670e8d0c2dc40dac2f60c31b606082015260800190565b60208082526023908201527f46656520726563697069656e74206d757374206e6f742062652030206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f5265736572766520617373657420646f6573206e6f7420657869737400000000604082015260600190565b60208082526038908201527f537570706c79206d7573742062652067726561746572207468616e206d696e6960408201527f6d756d20746f20656e61626c6520726564656d7074696f6e0000000000000000606082015260800190565b6020808252601c908201527f5265736572766520617373657420616c72656164792065786973747300000000604082015260600190565b60208082526025908201527f5265736572766520617373657473206d75737420626520677265617465722074604082015264068616e20360dc1b606082015260800190565b60208082526036908201527f537570706c79206d7573742062652067726561746572207468616e206d696e696040820152756d756d20746f20656e61626c652069737375616e636560501b606082015260800190565b60208082526031908201527f4d7573742062652067726561746572207468616e206d696e20726563656976656040820152702072657365727665207175616e7469747960781b606082015260800190565b60208082526029908201527f5072656d69756d206d757374206265206c657373207468616e206d6178696d756040820152681b48185b1b1bddd95960ba1b606082015260800190565b6020808252601b908201527f4d7573742062652076616c696420726573657276652061737365740000000000604082015260600190565b6020808252818101527f53616665436173743a2076616c7565206d75737420626520706f736974697665604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206469766973696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602d908201527f4d6178207072656d69756d2070657263656e74616765206d757374206265206c60408201526c657373207468616e203130302560981b606082015260800190565b6020808252602f908201527f4d7573742062652067726561746572207468616e20746f74616c20617661696c60408201526e18589b194818dbdb1b185d195c985b608a1b606082015260800190565b6020808252601d908201527f5265736572766520617373657473206d75737420626520756e69717565000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252601d908201527f496e76616c696420706f7374207472616e736665722062616c616e6365000000604082015260600190565b60208082526027908201527f4d616e6167657220697373756520666565206d757374206265206c65737320746040820152660d0c2dc40dac2f60cb1b606082015260800190565b60208082526027908201527f46656520526563697069656e74206d757374206265206e6f6e2d7a65726f206160408201526632323932b9b99760c91b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526028908201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604082015267371034b73a191a9b60c11b606082015260800190565b60208082526023908201527f4d75737420626520636f6e74726f6c6c65722d656e61626c656420536574546f60408201526235b2b760e91b606082015260800190565b6020808252601c908201527f4d7573742062652074686520536574546f6b656e206d616e6167657200000000604082015260600190565b6020808252602d908201527f4d616e6167657220666565206d757374206265206c657373207468616e206d6160408201526c1e1a5b5d5b48185b1b1bddd959609a1b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526026908201527f4d6178206d616e6167657220666565206d757374206265206c657373207468616040820152656e203130302560d01b606082015260800190565b6020808252818101527f5369676e6564536166654d6174683a206469766973696f6e206279207a65726f604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715614df357600080fd5b604052919050565b600067ffffffffffffffff821115614e11578081fd5b5060209081020190565b60005b83811015614e36578181015183820152602001614e1e565b838111156128d95750506000910152565b6001600160a01b0381168114613bc057600080fdfea2646970667358221220b3fa006978c681c4ccd9cf850ac75d67cbb56f9e80fd1399fbc15871b96f94ee64736f6c634300060a0033000000000000000000000000f1b12a7b1f0af744ed21eec7d3e891c48fd3c329000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101445760003560e01c80637f977948116100b6578063b98b60301161006f578063b98b60301461038c578063d5f8394a146103ac578063df3fa714146103cc578063ee673ac4146103ec578063f529c18a146101fb578063f77c47911461041f5761014b565b80637f977948146102d7578063847ef08d146102f757806391819fb31461030c5780639c5ad2831461032c5780639f6f6ba91461034c578063add7745a1461036c5761014b565b80632f879fa3116101085780632f879fa3146101fb57806330b305f91461021b5780633fc8cef31461023b5780634b79da0a1461025d57806364b2dc7a1461028a5780636ff7f6da146102b75761014b565b806302c619d01461015057806304f1b57114610165578063080b16f81461019b5780630e3af8ad146101bb578063281d0115146101db5761014b565b3661014b57005b600080fd5b61016361015e3660046140f9565b610434565b005b34801561017157600080fd5b506101856101803660046140ce565b6105d8565b6040516101929190614404565b60405180910390f35b3480156101a757600080fd5b506101636101b6366004613f01565b61060b565b3480156101c757600080fd5b506101636101d63660046140ce565b6106ed565b3480156101e757600080fd5b506101636101f6366004613f01565b6107c2565b34801561020757600080fd5b50610185610216366004613f39565b6108e6565b34801561022757600080fd5b50610163610236366004613f79565b6108fd565b34801561024757600080fd5b506102506109a7565b6040516101929190614238565b34801561026957600080fd5b5061027d610278366004613ee5565b6109cb565b60405161019291906142f4565b34801561029657600080fd5b506102aa6102a5366004613f01565b610a44565b6040516101929190614341565b3480156102c357600080fd5b506101856102d2366004613f39565b610a64565b3480156102e357600080fd5b506101856102f2366004613f39565b610a92565b34801561030357600080fd5b50610163610b34565b34801561031857600080fd5b50610163610327366004613f01565b610c4b565b34801561033857600080fd5b506102aa610347366004613f39565b610dfb565b34801561035857600080fd5b50610163610367366004613f79565b610fb3565b34801561037857600080fd5b506102aa610387366004613f39565b6110d3565b34801561039857600080fd5b506101636103a7366004613fd7565b6111ad565b3480156103b857600080fd5b506101636103c736600461416e565b6115e5565b3480156103d857600080fd5b506101636103e736600461413a565b61186d565b3480156103f857600080fd5b5061040c610407366004613ee5565b611975565b604051610192979695949392919061434c565b34801561042b57600080fd5b506102506119c0565b600260015414156104605760405162461bcd60e51b815260040161045790614d8f565b60405180910390fd5b60026001558261046f816119cf565b61048b5760405162461bcd60e51b8152600401610457906144b4565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663d0e30db0346040518263ffffffff1660e01b81526004016000604051808303818588803b1580156104e657600080fd5b505af11580156104fa573d6000803e3d6000fd5b505050505061052a847f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc234611ad3565b610557847f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2343386611b3d565b61055f613b56565b61058a857f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc234611bcd565b9050610597858583611cc1565b6105a18582611d24565b6105cd857f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28584611fc5565b505060018055505050565b6001600160a01b03821660009081526002602081905260408220600401908390811061060057fe5b015490505b92915050565b816106168133612112565b6106325760405162461bcd60e51b815260040161045790614c46565b61063b816119cf565b6106575760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b03821661067d5760405162461bcd60e51b815260040161045790614674565b6001600160a01b038381166000818152600260205260409081902060030180546001600160a01b0319169386169390931790925590517fff78699124ce6ab1e48255152542b253d1e5c0fc925308a48852e674777ace35906106e0908590614238565b60405180910390a2505050565b816106f88133612112565b6107145760405162461bcd60e51b815260040161045790614c46565b61071d816119cf565b6107395760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0383166000908152600260205260409020600801548211156107745760405162461bcd60e51b81526004016104579061486e565b6001600160a01b03831660008181526002602052604090819020600701849055517fd0db665d5987480b1c4e28f4484b1a9fabff141ffcb5a9ff9f384e4672155c05906106e0908590614404565b816107cd8133612112565b6107e95760405162461bcd60e51b815260040161045790614c46565b6107f2816119cf565b61080e5760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16156108545760405162461bcd60e51b81526004016104579061474b565b6001600160a01b0383811660008181526002602081815260408084209092018054600180820183559185528285200180546001600160a01b03191696891696871790558484526003825282842095845294905290819020805460ff191690931790925590517f94257d51a6470b587cb1ae3068fee4bce93eff4d149a98bd05aee37ae4911487906106e0908590614238565b60006108f38484846121a0565b90505b9392505050565b600260015414156109205760405162461bcd60e51b815260040161045790614d8f565b60026001558461092f816119cf565b61094b5760405162461bcd60e51b8152600401610457906144b4565b610956868686611ad3565b6109638686863386611b3d565b61096b613b56565b610976878787611bcd565b9050610983878583611cc1565b61098e8787836121c0565b61099a87878584611fc5565b5050600180555050505050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6001600160a01b038116600090815260026020818152604092839020909101805483518184028101840190945280845260609392830182828015610a3857602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610a1a575b50505050509050919050565b600360209081526000928352604080842090915290825290205460ff1681565b600080610a728585856122ab565b90506000610a868683600160036001612427565b98975050505050505050565b600080610aa58584600060026000612427565b925050506000856001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ae457600080fd5b505afa158015610af8573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b1c91906141b7565b9050610b2a8686848461249e565b9695505050505050565b3360005b6001600160a01b03821660009081526002602081905260409091200154811015610bc6576001600160a01b0382166000908152600360209081526040808320600292839052908320909101805491929184908110610b9257fe5b60009182526020808320909101546001600160a01b031683528201929092526040019020805460ff19169055600101610b38565b506001600160a01b0381166000908152600260208190526040822080546001600160a01b0319908116825560018201805490911690559190610c0a90830182613ba2565b6003820180546001600160a01b0319169055610c2a600483016000613bc3565b50600060068201819055600782018190556008820181905560099091015550565b81610c568133612112565b610c725760405162461bcd60e51b815260040161045790614c46565b610c7b816119cf565b610c975760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16610cdc5760405162461bcd60e51b8152600401610457906146b7565b610d6f8260026000866001600160a01b03166001600160a01b03168152602001908152602001600020600201805480602002602001604051908101604052809291908181526020018280548015610d5c57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311610d3e575b505050505061265f90919063ffffffff16565b6001600160a01b03841660009081526002602081815260409092208351610d9c9491909201920190613bd1565b506001600160a01b0380841660008181526003602090815260408083209487168352939052829020805460ff1916905590517f3c59157886f089a91f7813e86300f9f9b36289e41e7c09c70f9cc208b810cd94906106e0908590614238565b600080846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015610e3757600080fd5b505afa158015610e4b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e6f91906141b7565b9050821580610ea457506001600160a01b0380861660009081526003602090815260408083209388168352929052205460ff16155b80610ed957506001600160a01b038516600090815260026020526040902060090154610ed6908463ffffffff6126a716565b81105b15610ee85760009150506108f6565b6000610ef58686866122ab565b90506000610f098783600160036001612427565b925050506000610f93886001600160a01b03166366cb8d2f896040518263ffffffff1660e01b8152600401610f3e9190614238565b60206040518083038186803b158015610f5657600080fd5b505afa158015610f6a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f8e91906141b7565b6126cc565b905081610fa6828663ffffffff6126f216565b10159450505050506108f6565b60026001541415610fd65760405162461bcd60e51b815260040161045790614d8f565b600260015584610fe5816119cf565b6110015760405162461bcd60e51b8152600401610457906144b4565b61100c868686611ad3565b6110188685338561271c565b611020613b56565b61102b878787612793565b905061103987858784612876565b604051632770a7eb60e21b81526001600160a01b03881690639dc29fac906110679033908990600401614290565b600060405180830381600087803b15801561108157600080fd5b505af1158015611095573d6000803e3d6000fd5b50505060608201516110bc91506001600160a01b038916908890869063ffffffff6128df16565b6110c7878783612a21565b61099a87878584612a70565b600080846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b15801561110f57600080fd5b505afa158015611123573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061114791906141b7565b9050821580159061117d57506001600160a01b0380861660009081526003602090815260408083209388168352929052205460ff165b80156111a457506001600160a01b0385166000908152600260205260409020600901548110155b95945050505050565b81336111b98282612112565b6111d55760405162461bcd60e51b815260040161045790614c46565b600054604051631d3af8fb60e21b815285916001600160a01b0316906374ebe3ec90611205908490600401614238565b60206040518083038186803b15801561121d57600080fd5b505afa158015611231573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112559190613e39565b6112715760405162461bcd60e51b815260040161045790614c03565b61127a81612b5e565b6112965760405162461bcd60e51b8152600401610457906145f5565b6000846040015151116112bb5760405162461bcd60e51b815260040161045790614782565b6112c3612b8d565b8460a00151106112e55760405162461bcd60e51b815260040161045790614d14565b6112ed612b8d565b8460e001511061130f5760405162461bcd60e51b815260040161045790614964565b60a084015160808501515111156113385760405162461bcd60e51b815260040161045790614af6565b60a084015160808501516020015111156113645760405162461bcd60e51b81526004016104579061462c565b8360e001518460c00151111561138c5760405162461bcd60e51b8152600401610457906145be565b60608401516001600160a01b03166113b65760405162461bcd60e51b815260040161045790614b3d565b6000846101000151116113db5760405162461bcd60e51b8152600401610457906144fc565b60005b8460400151518110156114c3576001600160a01b0386166000908152600360205260408082209087015180519192918490811061141757fe5b6020908102919091018101516001600160a01b031682528101919091526040016000205460ff161561145b5760405162461bcd60e51b815260040161045790614a00565b6001600160a01b03861660009081526003602052604080822090870151805160019391908590811061148957fe5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790556001016113de565b506001600160a01b03808616600090815260026020818152604092839020885181549086166001600160a01b0319918216178255828a015160018301805491909716911617909455918701518051889493611522938501920190613bd1565b5060608201516003820180546001600160a01b0319166001600160a01b03909216919091179055608082015161155e9060048301906002613c32565b5060a0820151816006015560c0820151816007015560e082015181600801556101008201518160090155905050846001600160a01b0316630ffe0f1e6040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156115c657600080fd5b505af11580156115da573d6000803e3d6000fd5b505050505050505050565b600260015414156116085760405162461bcd60e51b815260040161045790614d8f565b600260015583611617816119cf565b6116335760405162461bcd60e51b8152600401610457906144b4565b61165e857f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc286611ad3565b61166a8585338561271c565b611672613b56565b61169d867f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc287612793565b90506116ab86858784612876565b604051632770a7eb60e21b81526001600160a01b03871690639dc29fac906116d99033908990600401614290565b600060405180830381600087803b1580156116f357600080fd5b505af1158015611707573d6000803e3d6000fd5b505050606082015161174e91506001600160a01b038816907f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290309063ffffffff6128df16565b6060810151604051632e1a7d4d60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21691632e1a7d4d9161179e9190600401614404565b600060405180830381600087803b1580156117b857600080fd5b505af11580156117cc573d6000803e3d6000fd5b5050505060608101516040516001600160a01b038516916108fc811502916000818181858888f19350505050158015611809573d6000803e3d6000fd5b50611835867f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc283612a21565b611861867f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28584612a70565b50506001805550505050565b826118788133612112565b6118945760405162461bcd60e51b815260040161045790614c46565b61189d816119cf565b6118b95760405162461bcd60e51b8152600401610457906144b4565b6001600160a01b0384166000908152600260205260409020600601548311156118f45760405162461bcd60e51b815260040161045790614c7d565b8260026000866001600160a01b03166001600160a01b03168152602001908152602001600020600401836002811061192857fe5b01556040516001600160a01b038516907f4e913bee7cf10ece89b3c5593df3898d1a324864d38052df88792a7d87a17488906119679086908690614dc6565b60405180910390a250505050565b60026020526000908152604090208054600182015460038301546006840154600785015460088601546009909601546001600160a01b03958616969486169590931693919290919087565b6000546001600160a01b031681565b60008054604051631d3af8fb60e21b81526001600160a01b03909116906374ebe3ec90611a00908590600401614238565b60206040518083038186803b158015611a1857600080fd5b505afa158015611a2c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a509190613e39565b801561060557506040516335fc6c9f60e21b81526001600160a01b0383169063d7f1b27c90611a83903090600401614238565b60206040518083038186803b158015611a9b57600080fd5b505afa158015611aaf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106059190613e39565b60008111611af35760405162461bcd60e51b815260040161045790614486565b6001600160a01b0380841660009081526003602090815260408083209386168352929052205460ff16611b385760405162461bcd60e51b8152600401610457906148b7565b505050565b6001600160a01b03808616600090815260026020526040902054168015611bc557604051633ed0b9fb60e21b81526001600160a01b0382169063fb42e7ec90611b9290899089908990899089906004016143a7565b600060405180830381600087803b158015611bac57600080fd5b505af1158015611bc0573d6000803e3d6000fd5b505050505b505050505050565b611bd5613b56565b611bdd613b56565b846001600160a01b03166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b158015611c1657600080fd5b505afa158015611c2a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4e91906141b7565b60a0820152828152611c6585846000600281612427565b606084018190526040840191909152602083019190915260a0820151611c8f91879187919061249e565b6080820152611c9e8582612b9a565b60e083015260c0820152611cb3858583612c72565b610100820152949350505050565b6001600160a01b03831660009081526002602052604090206009015460a08201511015611d005760405162461bcd60e51b8152600401610457906147c7565b8181608001511015611b385760405162461bcd60e51b815260040161045790614546565b606081015160405163a9059cbb60e01b81526001600160a01b037f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2169163a9059cbb91611d75918691600401614290565b602060405180830381600087803b158015611d8f57600080fd5b505af1158015611da3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611dc79190613e39565b50602081015115611efc577f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031663a9059cbb6000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b158015611e4e57600080fd5b505afa158015611e62573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611e869190613d81565b83602001516040518363ffffffff1660e01b8152600401611ea8929190614290565b602060405180830381600087803b158015611ec257600080fd5b505af1158015611ed6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611efa9190613e39565b505b604081015115611fc1576001600160a01b03828116600090815260026020526040908190206003015483820151915163a9059cbb60e01b81527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc284169363a9059cbb93611f6f9390911691600401614290565b602060405180830381600087803b158015611f8957600080fd5b505af1158015611f9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b389190613e39565b5050565b60e081015160405163c2de0e9d60e01b81526001600160a01b0386169163c2de0e9d91611ff59190600401614404565b600060405180830381600087803b15801561200f57600080fd5b505af1158015612023573d6000803e3d6000fd5b50505061010082015161204991506001600160a01b03861690859063ffffffff612ce016565b60808101516040516340c10f1960e01b81526001600160a01b038616916340c10f199161207a918691600401614290565b600060405180830381600087803b15801561209457600080fd5b505af11580156120a8573d6000803e3d6000fd5b5050506001600160a01b03808616600081815260026020908152604091829020546080870151878401519288015193519496507fab151ef72553d84db96b5656139e68d5e348f8273d15b1724db8f3c09832d80e956119679533958b958d9590931693929161424c565b6000816001600160a01b0316836001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561215757600080fd5b505afa15801561216b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061218f9190613d81565b6001600160a01b0316149392505050565b50506001600160a01b031660009081526002602052604090206007015490565b6121d08233858460600151612e5e565b60208101511561226e5761226e82336000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b15801561222c57600080fd5b505afa158015612240573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122649190613d81565b8460200151612e5e565b604081015115611b38576001600160a01b03808416600090815260026020526040908190206003015490830151611b389285923392911690612e5e565b6000805481906122c3906001600160a01b0316612e6a565b6001600160a01b0316636101c54086866040518363ffffffff1660e01b81526004016122f092919061438d565b60206040518083038186803b15801561230857600080fd5b505afa15801561231c573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061234091906141b7565b90506000612354848363ffffffff6126f216565b90506000856001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561239157600080fd5b505afa1580156123a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123c991906141cf565b60ff16905060006123e483600a84900a63ffffffff6126f216565b905060006123f38989896121a0565b90506000612407838363ffffffff612eea16565b9050612419838263ffffffff612f2916565b9a9950505050505050505050565b600080600080600061243b8a898989612f6b565b90925090506000612452838b63ffffffff6126f216565b90506000612466838c63ffffffff6126f216565b9050600061248a8261247e8e8663ffffffff612f2916565b9063ffffffff612f2916565b929d919c50919a5098505050505050505050565b6000806124ac8686866121a0565b905060006124c0858363ffffffff6126f216565b60008054919250906124da906001600160a01b0316612e6a565b6001600160a01b0316636101c54089896040518363ffffffff1660e01b815260040161250792919061438d565b60206040518083038186803b15801561251f57600080fd5b505afa158015612533573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061255791906141b7565b90506000876001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561259457600080fd5b505afa1580156125a8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cc91906141cf565b60ff16905060006125e788600a84900a63ffffffff61310216565b9050600061260f600a84900a6126038b8863ffffffff612f2916565b9063ffffffff61310216565b905060006126378261247e8561262b8d8a63ffffffff6126f216565b9063ffffffff6126a716565b905061264d81612603848c63ffffffff6126f216565b9750505050505050505b949350505050565b606060008061266e8585613120565b915091508061268f5760405162461bcd60e51b815260040161045790614420565b606061269b8684613183565b50935061060592505050565b6000828201838110156108f65760405162461bcd60e51b815260040161045790614587565b6000808212156126ee5760405162461bcd60e51b8152600401610457906148ee565b5090565b60006108f6670de0b6b3a7640000612710858563ffffffff6132b216565b9063ffffffff6132ec16565b6001600160a01b0380851660009081526002602052604090206001015416801561278c57604051639b19c2bf60e01b81526001600160a01b03821690639b19c2bf906127729088908890889088906004016143d9565b600060405180830381600087803b1580156115c657600080fd5b5050505050565b61279b613b56565b6127a3613b56565b608081018390526127b58585856122ab565b8082526127c89086906001600381612427565b606084015260408084019190915260208084019290925280516318160ddd60e01b815290516001600160a01b038816926318160ddd9260048082019391829003018186803b15801561281957600080fd5b505afa15801561282d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061285191906141b7565b60a082015261286185848361332e565b60e083015260c0820152611cb38585836133b1565b6001600160a01b03841660009081526002602052604090206009015460c082015110156128b55760405162461bcd60e51b8152600401610457906146ee565b82816060015110156128d95760405162461bcd60e51b81526004016104579061481d565b50505050565b80156128d9576040516370a0823160e01b81526000906001600160a01b038516906370a0823190612914908890600401614238565b60206040518083038186803b15801561292c57600080fd5b505afa158015612940573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061296491906141b7565b90506129728585858561346b565b6040516370a0823160e01b81526000906001600160a01b038616906370a08231906129a1908990600401614238565b60206040518083038186803b1580156129b957600080fd5b505afa1580156129cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129f191906141b7565b9050612a03828463ffffffff612f2916565b8114611bc55760405162461bcd60e51b815260040161045790614abf565b612a3083838360200151613538565b604081015115611b38576001600160a01b03808416600081815260026020526040908190206003015490840151611b38938692169063ffffffff6128df16565b60e081015160405163c2de0e9d60e01b81526001600160a01b0386169163c2de0e9d91612aa09190600401614404565b600060405180830381600087803b158015612aba57600080fd5b505af1158015612ace573d6000803e3d6000fd5b505050610100820151612af491506001600160a01b03861690859063ffffffff612ce016565b6001600160a01b038085166000818152600260209081526040918290206001015460808601518684015192870151935194957f76608da3459f30443b27df4954c2ee5953695a78cf2327545bc5992eca749f4f956119679533958b958d959416939290919061424c565b6040516353bae5f760e01b81526000906001600160a01b038316906353bae5f790611a83903090600401614238565b670de0b6b3a76400005b90565b6000806000612bba8460a0015185608001516126a790919063ffffffff16565b90506000612c63612bca836135df565b612c57612bda8860a001516135df565b896001600160a01b0316635230c3966040518163ffffffff1660e01b815260040160206040518083038186803b158015612c1357600080fd5b505afa158015612c27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c4b91906141b7565b9063ffffffff61360416565b9063ffffffff61366f16565b919350909150505b9250929050565b600080612ca4856001600160a01b03166366cb8d2f866040518263ffffffff1660e01b8152600401610f3e9190614238565b90506000612cc7846060015161262b8660a00151856126f290919063ffffffff16565b9050610b2a8460c001518261310290919063ffffffff16565b6000612cec84846136d3565b905080158015612cfc5750600082115b15612d7357612d0b848461375a565b612d6e576040516304e3532760e41b81526001600160a01b03851690634e35327090612d3b908690600401614238565b600060405180830381600087803b158015612d5557600080fd5b505af1158015612d69573d6000803e3d6000fd5b505050505b612df0565b808015612d7e575081155b15612df057612d8d848461375a565b612df057604051636f86c89760e01b81526001600160a01b03851690636f86c89790612dbd908690600401614238565b600060405180830381600087803b158015612dd757600080fd5b505af1158015612deb573d6000803e3d6000fd5b505050505b836001600160a01b0316632ba57d1784612e09856135df565b6040518363ffffffff1660e01b8152600401612e26929190614290565b600060405180830381600087803b158015612e4057600080fd5b505af1158015612e54573d6000803e3d6000fd5b5050505050505050565b6128d9848484846137e6565b6040516373b2e76b60e11b81526000906001600160a01b0383169063e765ced690612e9a90600290600401614404565b60206040518083038186803b158015612eb257600080fd5b505afa158015612ec6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106059190613d81565b6000821580612ef7575081155b15612f0457506000610605565b6108f6600161262b670de0b6b3a76400006127108361247e898963ffffffff6132b216565b60006108f683836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061390a565b6000805460405163792aa04f60e01b8152829182916001600160a01b039091169063792aa04f90612fa29030908990600401614290565b60206040518083038186803b158015612fba57600080fd5b505afa158015612fce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ff291906141b7565b6000805460405163792aa04f60e01b815292935090916001600160a01b039091169063792aa04f9061302a9030908b90600401614290565b60206040518083038186803b15801561304257600080fd5b505afa158015613056573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061307a91906141b7565b90506000600260008a6001600160a01b03166001600160a01b0316815260200190815260200160002060040186600281106130b157fe5b0154905060006130c7838363ffffffff6126f216565b905060006130db838363ffffffff612f2916565b905060006130ef838763ffffffff6126a716565b919c919b50909950505050505050505050565b60006108f68261271085670de0b6b3a764000063ffffffff6132b216565b81516000908190815b8181101561317357846001600160a01b031686828151811061314757fe5b60200260200101516001600160a01b0316141561316b57925060019150612c6b9050565b600101613129565b5060001995600095509350505050565b81516060906000908084106131aa5760405162461bcd60e51b81526004016104579061444f565b60606001820367ffffffffffffffff811180156131c657600080fd5b506040519080825280602002602001820160405280156131f0578160200160208202803683370190505b50905060005b8581101561323e5786818151811061320a57fe5b602002602001015182828151811061321e57fe5b6001600160a01b03909216602092830291909101909101526001016131f6565b50600185015b8281101561328f5786818151811061325857fe5b602002602001015182600183038151811061326f57fe5b6001600160a01b0390921660209283029190910190910152600101613244565b508086868151811061329d57fe5b60200260200101519350935050509250929050565b6000826132c157506000610605565b828202828482816132ce57fe5b04146108f65760405162461bcd60e51b815260040161045790614a37565b60006108f683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250613936565b600080600061334a858560a00151612f2990919063ffffffff16565b905060006133a361335a836135df565b612c5761336a8860a001516135df565b8a6001600160a01b0316635230c3966040518163ffffffff1660e01b815260040160206040518083038186803b158015612c1357600080fd5b919791965090945050505050565b6000806133e3856001600160a01b03166366cb8d2f866040518263ffffffff1660e01b8152600401610f3e9190614238565b905060006133fe8460a00151836126f290919063ffffffff16565b90506000613425856040015161262b876020015188606001516126a790919063ffffffff16565b9050808210156134475760405162461bcd60e51b8152600401610457906149b1565b60c085015161346090612603848463ffffffff612f2916565b979650505050505050565b80156128d95760608282604051602401613486929190614290565b60408051601f198184030181529181526020820180516001600160e01b031663a9059cbb60e01b179052516347b7819960e11b81529091506001600160a01b03861690638f6f0332906134e290879060009086906004016142cd565b600060405180830381600087803b1580156134fc57600080fd5b505af1158015613510573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611bc59190810190613e59565b8015611b3857611b38826000809054906101000a90046001600160a01b03166001600160a01b031663469048406040518163ffffffff1660e01b815260040160206040518083038186803b15801561358f57600080fd5b505afa1580156135a3573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135c79190613d81565b6001600160a01b03861691908463ffffffff6128df16565b6000600160ff1b82106126ee5760405162461bcd60e51b815260040161045790614bbb565b60008261361357506000610605565b826000191480156136275750600160ff1b82145b156136445760405162461bcd60e51b815260040161045790614a78565b8282028284828161365157fe5b05146108f65760405162461bcd60e51b815260040161045790614a78565b60008161368e5760405162461bcd60e51b815260040161045790614d5a565b816000191480156136a25750600160ff1b83145b156136bf5760405162461bcd60e51b815260040161045790614923565b60008284816136ca57fe5b05949350505050565b600080836001600160a01b03166366cb8d2f846040518263ffffffff1660e01b81526004016137029190614238565b60206040518083038186803b15801561371a57600080fd5b505afa15801561372e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061375291906141b7565b139392505050565b600080836001600160a01b031663a7bdad03846040518263ffffffff1660e01b81526004016137899190614238565b60006040518083038186803b1580156137a157600080fd5b505afa1580156137b5573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526137dd9190810190613d9d565b51119392505050565b80156128d9576040516370a0823160e01b81526000906001600160a01b038616906370a082319061381b908690600401614238565b60206040518083038186803b15801561383357600080fd5b505afa158015613847573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061386b91906141b7565b90506138798585858561396d565b6040516370a0823160e01b81526000906001600160a01b038716906370a08231906138a8908790600401614238565b60206040518083038186803b1580156138c057600080fd5b505afa1580156138d4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f891906141b7565b9050612a03828463ffffffff6126a716565b6000818484111561392e5760405162461bcd60e51b8152600401610457919061440d565b505050900390565b600081836139575760405162461bcd60e51b8152600401610457919061440d565b50600083858161396357fe5b0495945050505050565b6128d9846323b872dd60e01b85858560405160240161398e939291906142a9565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526060613a15826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316613a4f9092919063ffffffff16565b805190915015611b385780806020019051810190613a339190613e39565b611b385760405162461bcd60e51b815260040161045790614cca565b60606108f384846000856060613a6485613b1d565b613a805760405162461bcd60e51b815260040161045790614b84565b60006060866001600160a01b03168587604051613a9d919061421c565b60006040518083038185875af1925050503d8060008114613ada576040519150601f19603f3d011682016040523d82523d6000602084013e613adf565b606091505b50915091508115613af35791506126579050565b805115613b035780518082602001fd5b8360405162461bcd60e51b8152600401610457919061440d565b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a470818114801590612657575050151592915050565b6040518061012001604052806000815260200160008152602001600081526020016000815260200160008152602001600081526020016000815260200160008152602001600081525090565b5080546000825590600052602060002090810190613bc09190613c68565b50565b506000815560010160009055565b828054828255906000526020600020908101928215613c26579160200282015b82811115613c2657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190613bf1565b506126ee929150613c82565b8260028101928215613c60579160200282015b82811115613c60578251825591602001919060010190613c45565b506126ee9291505b612b9791905b808211156126ee5760008155600101613c6e565b612b9791905b808211156126ee5780546001600160a01b0319168155600101613c88565b803561060581614e47565b600082601f830112613cc1578081fd5b8135613cd4613ccf82614dfb565b614dd4565b818152915060208083019084810181840286018201871015613cf557600080fd5b60005b84811015613d1d578135613d0b81614e47565b84529282019290820190600101613cf8565b505050505092915050565b600082601f830112613d38578081fd5b613d426040614dd4565b9050808284604085011115613d5657600080fd5b60005b6002811015613d78578135835260209283019290910190600101613d59565b50505092915050565b600060208284031215613d92578081fd5b81516108f681614e47565b60006020808385031215613daf578182fd5b825167ffffffffffffffff811115613dc5578283fd5b80840185601f820112613dd6578384fd5b80519150613de6613ccf83614dfb565b8281528381019082850185850284018601891015613e02578687fd5b8693505b84841015613e2d578051613e1981614e47565b835260019390930192918501918501613e06565b50979650505050505050565b600060208284031215613e4a578081fd5b815180151581146108f6578182fd5b600060208284031215613e6a578081fd5b815167ffffffffffffffff80821115613e81578283fd5b81840185601f820112613e92578384fd5b8051925081831115613ea2578384fd5b613eb5601f8401601f1916602001614dd4565b9150828252856020848301011115613ecb578384fd5b613edc836020840160208401614e1b565b50949350505050565b600060208284031215613ef6578081fd5b81356108f681614e47565b60008060408385031215613f13578081fd5b8235613f1e81614e47565b91506020830135613f2e81614e47565b809150509250929050565b600080600060608486031215613f4d578081fd5b8335613f5881614e47565b92506020840135613f6881614e47565b929592945050506040919091013590565b600080600080600060a08688031215613f90578081fd5b8535613f9b81614e47565b94506020860135613fab81614e47565b935060408601359250606086013591506080860135613fc981614e47565b809150509295509295909350565b60008060408385031215613fe9578182fd5b8235613ff481614e47565b9150602083013567ffffffffffffffff80821115614010578283fd5b8185016101408188031215614023578384fd5b610120925061403183614dd4565b61403b8883613ca6565b815261404a8860208401613ca6565b6020820152604082013583811115614060578586fd5b61406c89828501613cb1565b60408301525061407f8860608401613ca6565b60608201526140918860808401613d28565b608082015260c082013560a082015260e082013560c082015261010092508282013560e08201528382013583820152809450505050509250929050565b600080604083850312156140e0578182fd5b82356140eb81614e47565b946020939093013593505050565b60008060006060848603121561410d578081fd5b833561411881614e47565b925060208401359150604084013561412f81614e47565b809150509250925092565b60008060006060848603121561414e578081fd5b833561415981614e47565b95602085013595506040909401359392505050565b60008060008060808587031215614183578182fd5b843561418e81614e47565b9350602085013592506040850135915060608501356141ac81614e47565b939692955090935050565b6000602082840312156141c8578081fd5b5051919050565b6000602082840312156141e0578081fd5b815160ff811681146108f6578182fd5b60008151808452614208816020860160208601614e1b565b601f01601f19169290920160200192915050565b6000825161422e818460208701614e1b565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03978816815295871660208701529386166040860152919094166060840152608083019390935260a082019290925260c081019190915260e00190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b600060018060a01b0385168252836020830152606060408301526111a460608301846141f0565b6020808252825182820181905260009190848201906040850190845b818110156143355783516001600160a01b031683529284019291840191600101614310565b50909695505050505050565b901515815260200190565b6001600160a01b03978816815295871660208701529390951660408501526060840191909152608083015260a082019290925260c081019190915260e00190565b6001600160a01b0392831681529116602082015260400190565b6001600160a01b0395861681529385166020850152604084019290925283166060830152909116608082015260a00190565b6001600160a01b03948516815260208101939093529083166040830152909116606082015260800190565b90815260200190565b6000602082526108f660208301846141f0565b60208082526015908201527420b2323932b9b9903737ba1034b71030b93930bc9760591b604082015260600190565b60208082526018908201527f496e646578206d757374206265203c2041206c656e6774680000000000000000604082015260600190565b60208082526014908201527305175616e74697479206d757374206265203e20360641b604082015260600190565b60208082526028908201527f4d75737420626520612076616c696420616e6420696e697469616c697a65642060408201526729b2ba2a37b5b2b760c11b606082015260800190565b6020808252602a908201527f4d696e20536574546f6b656e20737570706c79206d75737420626520677265616040820152690746572207468616e20360b41b606082015260800190565b60208082526021908201527f4d7573742062652067726561746572207468616e206d696e20536574546f6b656040820152603760f91b606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252601d908201527f5072656d69756d206d757374206265206c657373207468616e206d6178000000604082015260600190565b6020808252601e908201527f4d7573742062652070656e64696e6720696e697469616c697a6174696f6e0000604082015260600190565b60208082526028908201527f4d616e616765722072656465656d20666565206d757374206265206c657373206040820152670e8d0c2dc40dac2f60c31b606082015260800190565b60208082526023908201527f46656520726563697069656e74206d757374206e6f742062652030206164647260408201526265737360e81b606082015260800190565b6020808252601c908201527f5265736572766520617373657420646f6573206e6f7420657869737400000000604082015260600190565b60208082526038908201527f537570706c79206d7573742062652067726561746572207468616e206d696e6960408201527f6d756d20746f20656e61626c6520726564656d7074696f6e0000000000000000606082015260800190565b6020808252601c908201527f5265736572766520617373657420616c72656164792065786973747300000000604082015260600190565b60208082526025908201527f5265736572766520617373657473206d75737420626520677265617465722074604082015264068616e20360dc1b606082015260800190565b60208082526036908201527f537570706c79206d7573742062652067726561746572207468616e206d696e696040820152756d756d20746f20656e61626c652069737375616e636560501b606082015260800190565b60208082526031908201527f4d7573742062652067726561746572207468616e206d696e20726563656976656040820152702072657365727665207175616e7469747960781b606082015260800190565b60208082526029908201527f5072656d69756d206d757374206265206c657373207468616e206d6178696d756040820152681b48185b1b1bddd95960ba1b606082015260800190565b6020808252601b908201527f4d7573742062652076616c696420726573657276652061737365740000000000604082015260600190565b6020808252818101527f53616665436173743a2076616c7565206d75737420626520706f736974697665604082015260600190565b60208082526021908201527f5369676e6564536166654d6174683a206469766973696f6e206f766572666c6f6040820152607760f81b606082015260800190565b6020808252602d908201527f4d6178207072656d69756d2070657263656e74616765206d757374206265206c60408201526c657373207468616e203130302560981b606082015260800190565b6020808252602f908201527f4d7573742062652067726561746572207468616e20746f74616c20617661696c60408201526e18589b194818dbdb1b185d195c985b608a1b606082015260800190565b6020808252601d908201527f5265736572766520617373657473206d75737420626520756e69717565000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6040820152607760f81b606082015260800190565b60208082526027908201527f5369676e6564536166654d6174683a206d756c7469706c69636174696f6e206f604082015266766572666c6f7760c81b606082015260800190565b6020808252601d908201527f496e76616c696420706f7374207472616e736665722062616c616e6365000000604082015260600190565b60208082526027908201527f4d616e6167657220697373756520666565206d757374206265206c65737320746040820152660d0c2dc40dac2f60cb1b606082015260800190565b60208082526027908201527f46656520526563697069656e74206d757374206265206e6f6e2d7a65726f206160408201526632323932b9b99760c91b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b60208082526028908201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604082015267371034b73a191a9b60c11b606082015260800190565b60208082526023908201527f4d75737420626520636f6e74726f6c6c65722d656e61626c656420536574546f60408201526235b2b760e91b606082015260800190565b6020808252601c908201527f4d7573742062652074686520536574546f6b656e206d616e6167657200000000604082015260600190565b6020808252602d908201527f4d616e6167657220666565206d757374206265206c657373207468616e206d6160408201526c1e1a5b5d5b48185b1b1bddd959609a1b606082015260800190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b60208082526026908201527f4d6178206d616e6167657220666565206d757374206265206c657373207468616040820152656e203130302560d01b606082015260800190565b6020808252818101527f5369676e6564536166654d6174683a206469766973696f6e206279207a65726f604082015260600190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b918252602082015260400190565b60405181810167ffffffffffffffff81118282101715614df357600080fd5b604052919050565b600067ffffffffffffffff821115614e11578081fd5b5060209081020190565b60005b83811015614e36578181015183820152602001614e1e565b838111156128d95750506000910152565b6001600160a01b0381168114613bc057600080fdfea2646970667358221220b3fa006978c681c4ccd9cf850ac75d67cbb56f9e80fd1399fbc15871b96f94ee64736f6c634300060a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f1b12a7b1f0af744ed21eec7d3e891c48fd3c329000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _controller (address): 0xF1B12A7b1f0AF744ED21eEC7d3E891C48Fd3c329
Arg [1] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000f1b12a7b1f0af744ed21eec7d3e891c48fd3c329
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode Sourcemap
97223:43411:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;105500:774;;;;;;;;;:::i;:::-;;116902:188;;;;;;;;;;-1:-1:-1;116902:188:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;112934:377;;;;;;;;;;-1:-1:-1;112934:377:0;;;;;;;;:::i;111406:411::-;;;;;;;;;;-1:-1:-1;111406:411:0;;;;;;;;:::i;110041:417::-;;;;;;;;;;-1:-1:-1;110041:417:0;;;;;;;;:::i;116611:283::-;;;;;;;;;;-1:-1:-1;116611:283:0;;;;;;;;:::i;104214:838::-;;;;;;;;;;-1:-1:-1;104214:838:0;;;;;;;;:::i;101710:27::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;116148:158;;;;;;;;;;-1:-1:-1;116148:158:0;;;;;;;;:::i;:::-;;;;;;;;102011:68;;;;;;;;;;-1:-1:-1;102011:68:0;;;;;;;;:::i;:::-;;;;;;;;118639:638;;;;;;;;;;-1:-1:-1;118639:638:0;;;;;;;;:::i;117522:714::-;;;;;;;;;;-1:-1:-1;117522:714:0;;;;;;;;:::i;115681:357::-;;;;;;;;;;;;;:::i;110695:462::-;;;;;;;;;;-1:-1:-1;110695:462:0;;;;;;;;:::i;120476:1144::-;;;;;;;;;;-1:-1:-1;120476:1144:0;;;;;;;;:::i;106942:1088::-;;;;;;;;;;-1:-1:-1;106942:1088:0;;;;;;;;:::i;119661:441::-;;;;;;;;;;-1:-1:-1;119661:441:0;;;;;;;;:::i;113777:1741::-;;;;;;;;;;-1:-1:-1;113777:1741:0;;;;;;;;:::i;108609:1192::-;;;;;;;;;;-1:-1:-1;108609:1192:0;;;;;;;;:::i;112167:539::-;;;;;;;;;;-1:-1:-1;112167:539:0;;;;;;;;:::i;101806:68::-;;;;;;;;;;-1:-1:-1;101806:68:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;40230:29;;;;;;;;;;;;;:::i;105500:774::-;82773:1;83379:7;;:19;;83371:63;;;;-1:-1:-1;;;83371:63:0;;;;;;;;;;;;;;;;;82773:1;83512:7;:18;105723:9;40835:35:::1;105723:9:::0;40835:24:::1;:35::i;:::-;40827:88;;;;-1:-1:-1::0;;;40827:88:0::1;;;;;;;;;105750:4:::2;-1:-1:-1::0;;;;;105750:12:0::2;;105771:9;105750:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;105797:52;105813:9;105832:4;105839:9;105797:15;:52::i;:::-;105870:72;105889:9;105908:4;105915:9;105926:10;105938:3;105870:18;:72::i;:::-;105955:27;;:::i;:::-;105985:56;106005:9;106024:4;106031:9;105985:19;:56::i;:::-;105955:86;;106054:72;106076:9;106087:27;106116:9;106054:21;:72::i;:::-;106139:48;106166:9;106177;106139:26;:48::i;:::-;106200:66;106225:9;106244:4;106251:3;106256:9;106200:24;:66::i;:::-;-1:-1:-1::0;;82729:1:0;83691:22;;-1:-1:-1;;;105500:774:0:o;116902:188::-;-1:-1:-1;;;;;117022:30:0;;116995:7;117022:30;;;:19;:30;;;;;;;:42;;;117065:16;;117022:60;;;;;;;;117015:67;;116902:188;;;;;:::o;112934:377::-;113043:9;40390:35;40403:9;40414:10;40390:12;:35::i;:::-;40382:76;;;;-1:-1:-1;;;40382:76:0;;;;;;;;;40477:35;40502:9;40477:24;:35::i;:::-;40469:88;;;;-1:-1:-1;;;40469:88:0;;;;;;;;;-1:-1:-1;;;;;113073:34:0;::::1;113065:82;;;;-1:-1:-1::0;;;113065:82:0::1;;;;;;;;;-1:-1:-1::0;;;;;113168:30:0;;::::1;;::::0;;;:19:::1;:30;::::0;;;;;;:43:::1;;:66:::0;;-1:-1:-1;;;;;;113168:66:0::1;::::0;;::::1;::::0;;;::::1;::::0;;;113252:51;;::::1;::::0;::::1;::::0;113168:66;;113252:51:::1;;;;;;;;;;112934:377:::0;;;:::o;111406:411::-;111508:9;40390:35;40403:9;40414:10;40390:12;:35::i;:::-;40382:76;;;;-1:-1:-1;;;40382:76:0;;;;;;;;;40477:35;40502:9;40477:24;:35::i;:::-;40469:88;;;;-1:-1:-1;;;40469:88:0;;;;;;;;;-1:-1:-1;;;;;111560:30:0;::::1;;::::0;;;:19:::1;:30;::::0;;;;:51:::1;;::::0;111538:73;::::1;;111530:127;;;;-1:-1:-1::0;;;111530:127:0::1;;;;;;;;;-1:-1:-1::0;;;;;111678:30:0;::::1;;::::0;;;:19:::1;:30;::::0;;;;;;:48:::1;;:69:::0;;;111765:44;::::1;::::0;::::1;::::0;111729:18;;111765:44:::1;;110041:417:::0;110142:9;40390:35;40403:9;40414:10;40390:12;:35::i;:::-;40382:76;;;;-1:-1:-1;;;40382:76:0;;;;;;;;;40477:35;40502:9;40477:24;:35::i;:::-;40469:88;;;;-1:-1:-1;;;40469:88:0;;;;;;;;;-1:-1:-1;;;;;110173:25:0;;::::1;;::::0;;;:14:::1;:25;::::0;;;;;;;:40;;::::1;::::0;;;;;;;::::1;;110172:41;110164:82;;;;-1:-1:-1::0;;;110164:82:0::1;;;;;;;;;-1:-1:-1::0;;;;;110267:30:0;;::::1;;::::0;;;:19:::1;:30;::::0;;;;;;;:44;;::::1;:64:::0;;::::1;::::0;;::::1;::::0;;;;;;;;::::1;::::0;;-1:-1:-1;;;;;;110267:64:0::1;::::0;;::::1;::::0;;::::1;::::0;;110342:25;;;:14:::1;:25:::0;;;;;:40;;;;;;;;;;:47;;-1:-1:-1;;110342:47:0::1;::::0;;::::1;::::0;;;110407:43;;::::1;::::0;::::1;::::0;110267:64;;110407:43:::1;;116611:283:::0;116792:7;116824:62;116842:9;116853:13;116868:17;116824;:62::i;:::-;116817:69;;116611:283;;;;;;:::o;104214:838::-;82773:1;83379:7;;:19;;83371:63;;;;-1:-1:-1;;;83371:63:0;;;;;;;;;82773:1;83512:7;:18;104483:9;40835:35:::1;104483:9:::0;40835:24:::1;:35::i;:::-;40827:88;;;;-1:-1:-1::0;;;40827:88:0::1;;;;;;;;;104510:64:::2;104526:9;104537:13;104552:21;104510:15;:64::i;:::-;104595:84;104614:9;104625:13;104640:21;104663:10;104675:3;104595:18;:84::i;:::-;104692:27;;:::i;:::-;104722:68;104742:9;104753:13;104768:21;104722:19;:68::i;:::-;104692:98;;104803:72;104825:9;104836:27;104865:9;104803:21;:72::i;:::-;104888:77;104921:9;104939:13;104955:9;104888:32;:77::i;:::-;104978:66;105003:9;105014:13;105029:3;105034:9;104978:24;:66::i;:::-;-1:-1:-1::0;;82729:1:0;83691:22;;-1:-1:-1;;;;;104214:838:0:o;101710:27::-;;;:::o;116148:158::-;-1:-1:-1;;;;;116254:30:0;;;;;;:19;:30;;;;;;;;;:44;;;116247:51;;;;;;;;;;;;;;;;;116218:16;;116247:51;;;116254:44;116247:51;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;116247:51:0;;;;;;;;;;;;;;;;;;;;;;;116148:158;;;:::o;102011:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;118639:638::-;118836:7;118861:29;118893:70;118919:9;118930:13;118945:17;118893:25;:70::i;:::-;118861:102;;118980:23;119007:227;119030:9;119054:21;102863:1;103204;102462;119007:8;:227::i;:::-;118976:258;118639:638;-1:-1:-1;;;;;;;;118639:638:0:o;117522:714::-;117723:7;117752:22;117778:224;117801:9;117825:21;102663:1;103034;102309;117778:8;:224::i;:::-;117748:254;;;;118015:22;118040:9;-1:-1:-1;;;;;118040:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;118015:48;;118083:145;118122:9;118146:13;118174:14;118203;118083:24;:145::i;:::-;118076:152;117522:714;-1:-1:-1;;;;;;117522:714:0:o;115681:357::-;115765:10;115734:18;115787:187;-1:-1:-1;;;;;115811:29:0;;;;;;:19;:29;;;;;;;;:43;:50;115807:54;;115787:187;;;-1:-1:-1;;;;;115890:24:0;;;;;;:14;:24;;;;;;;;115915:19;:29;;;;;;;:43;;;:46;;115890:24;;;115959:1;;115915:46;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;115915:46:0;115890:72;;;;;;;;;;;;115883:79;;-1:-1:-1;;115883:79:0;;;115915:46;115863:3;115787:187;;;-1:-1:-1;;;;;;116001:29:0;;;;;;:19;:29;;;;;;;115994:36;;-1:-1:-1;;;;;;115994:36:0;;;;;;;;;;;;;;;116001:29;;115994:36;;;;116001:29;115994:36;:::i;:::-;;;;;;-1:-1:-1;;;;;;115994:36:0;;;;;;;;;:::i;:::-;-1:-1:-1;115994:36:0;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;115681:357:0:o;110695:462::-;110799:9;40390:35;40403:9;40414:10;40390:12;:35::i;:::-;40382:76;;;;-1:-1:-1;;;40382:76:0;;;;;;;;;40477:35;40502:9;40477:24;:35::i;:::-;40469:88;;;;-1:-1:-1;;;40469:88:0;;;;;;;;;-1:-1:-1;;;;;110829:25:0;;::::1;;::::0;;;:14:::1;:25;::::0;;;;;;;:40;;::::1;::::0;;;;;;;::::1;;110821:81;;;;-1:-1:-1::0;;;110821:81:0::1;;;;;;;;;110962:66;111014:13;110962:19;:30;110982:9;-1:-1:-1::0;;;;;110962:30:0::1;-1:-1:-1::0;;;;;110962:30:0::1;;;;;;;;;;;;:44;;:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;-1:-1:-1;;;;;110962:51:0::1;::::0;;;;;::::1;::::0;::::1;;::::0;;::::1;;;;;;;;;;;:66;;;;:::i;:::-;-1:-1:-1::0;;;;;110915:30:0;::::1;;::::0;;;:19:::1;:30;::::0;;;;;;;:113;;::::1;::::0;:44;;;::::1;::::0;:113:::1;::::0;::::1;:::i;:::-;-1:-1:-1::0;;;;;;111046:25:0;;::::1;;::::0;;;:14:::1;:25;::::0;;;;;;;:40;;::::1;::::0;;;;;;;;111039:47;;-1:-1:-1;;111039:47:0::1;::::0;;111104:45;;::::1;::::0;::::1;::::0;111072:13;;111104:45:::1;;120476:1144:::0;120654:4;120676:22;120701:9;-1:-1:-1;;;;;120701:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;120676:48;-1:-1:-1;120755:22:0;;;:80;;-1:-1:-1;;;;;;120795:25:0;;;;;;;:14;:25;;;;;;;;:40;;;;;;;;;;;;120794:41;120755:80;:185;;;-1:-1:-1;;;;;;120869:30:0;;;;;;:19;:30;;;;;:48;;;:71;;120922:17;120869:71;:52;:71;:::i;:::-;120852:14;:88;120755:185;120737:876;;;120974:5;120967:12;;;;;120737:876;121012:24;121038:70;121064:9;121075:13;121090:17;121038:25;:70::i;:::-;121012:96;;121129:30;121163:246;121190:9;121218:16;102863:1;103204;102462;121163:8;:246::i;:::-;121125:284;;;;121426:20;121449:63;:9;-1:-1:-1;;;;;121449:36:0;;121486:13;121449:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:61;:63::i;:::-;121426:86;-1:-1:-1;121579:22:0;121536:39;121426:86;121560:14;121536:39;:23;:39;:::i;:::-;:65;;121529:72;;;;;;;;106942:1088;82773:1;83379:7;;:19;;83371:63;;;;-1:-1:-1;;;83371:63:0;;;;;;;;;82773:1;83512:7;:18;107207:9;40835:35:::1;107207:9:::0;40835:24:::1;:35::i;:::-;40827:88;;;;-1:-1:-1::0;;;40827:88:0::1;;;;;;;;;107234:60:::2;107250:9;107261:13;107276:17;107234:15;:60::i;:::-;107307:66;107327:9;107338:17;107357:10;107369:3;107307:19;:66::i;:::-;107386:28;;:::i;:::-;107417:66;107439:9;107450:13;107465:17;107417:21;:66::i;:::-;107386:97;;107496:93;107520:9;107531:26;107559:17;107578:10;107496:23;:93::i;:::-;107602:45;::::0;-1:-1:-1;;;107602:45:0;;-1:-1:-1;;;;;107602:14:0;::::2;::::0;::::2;::::0;:45:::2;::::0;107617:10:::2;::::0;107629:17;;107602:45:::2;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;107832:26:0::2;::::0;::::2;::::0;107741:128:::2;::::0;-1:-1:-1;;;;;;107741:30:0;::::2;::::0;107786:13;;107814:3;;107741:128:::2;:30;:128;:::i;:::-;107882:59;107904:9;107915:13;107930:10;107882:21;:59::i;:::-;107954:68;107980:9;107991:13;108006:3;108011:10;107954:25;:68::i;119661:441::-:0;119842:4;119864:22;119889:9;-1:-1:-1;;;;;119889:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;119864:48;-1:-1:-1;119928:26:0;;;;;:83;;-1:-1:-1;;;;;;119971:25:0;;;;;;;:14;:25;;;;;;;;:40;;;;;;;;;;;;119928:83;:166;;;;-1:-1:-1;;;;;;120046:30:0;;;;;;:19;:30;;;;;:48;;;120028:66;;;119928:166;119921:173;119661:441;-1:-1:-1;;;;;119661:441:0:o;113777:1741::-;113934:9;113945:10;40666:32;40679:9;40690:7;40666:12;:32::i;:::-;40658:73;;;;-1:-1:-1;;;40658:73:0;;;;;;;;;41615:10:::1;::::0;:36:::1;::::0;-1:-1:-1;;;41615:36:0;;113989:9;;-1:-1:-1;;;;;41615:10:0::1;::::0;:16:::1;::::0;:36:::1;::::0;113989:9;;41615:36:::1;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41607:84;;;;-1:-1:-1::0;;;41607:84:0::1;;;;;;;;;41710:37;41737:9;41710:26;:37::i;:::-;41702:80;;;;-1:-1:-1::0;;;41702:80:0::1;;;;;;;;;114068:1:::2;114024:20;:34;;;:41;:45;114016:95;;;;-1:-1:-1::0;;;114016:95:0::2;;;;;;;;;114167:29;:27;:29::i;:::-;114130:20;:34;;;:66;114122:117;;;;-1:-1:-1::0;;;114122:117:0::2;;;;;;;;;114302:29;:27;:29::i;:::-;114258:20;:41;;;:73;114250:131;;;;-1:-1:-1::0;;;114250:131:0::2;;;;;;;;;114439:34;::::0;::::2;::::0;114400:32:::2;::::0;::::2;::::0;:35;:73:::2;;114392:125;;;;-1:-1:-1::0;;;114392:125:0::2;;;;;;;;;114575:34;::::0;::::2;::::0;114536:32:::2;::::0;::::2;::::0;:35:::2;;::::0;:73:::2;;114528:126;;;;-1:-1:-1::0;;;114528:126:0::2;;;;;;;;;114715:20;:41;;;114673:20;:38;;;:83;;114665:125;;;;-1:-1:-1::0;;;114665:125:0::2;;;;;;;;;114809:33;::::0;::::2;::::0;-1:-1:-1;;;;;114809:47:0::2;114801:99;;;;-1:-1:-1::0;;;114801:99:0::2;;;;;;;;;115051:1;115010:20;:38;;;:42;115002:97;;;;-1:-1:-1::0;;;115002:97:0::2;;;;;;;;;115117:9;115112:292;115136:20;:34;;;:41;115132:1;:45;115112:292;;;-1:-1:-1::0;;;;;115208:25:0;::::2;;::::0;;;:14:::2;:25;::::0;;;;;115234:34;;::::2;::::0;:37;;115208:25;;;115269:1;;115234:37;::::2;;;;;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;115208:64:0::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;115208:64:0;;::::2;;115207:65;115199:107;;;;-1:-1:-1::0;;;115199:107:0::2;;;;;;;;;-1:-1:-1::0;;;;;115321:25:0;::::2;;::::0;;;:14:::2;:25;::::0;;;;;115347:34;;::::2;::::0;:37;;115388:4:::2;::::0;115321:25;115347:34;115382:1;;115347:37;::::2;;;;;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;115321:64:0::2;::::0;;;::::2;::::0;;;;;;-1:-1:-1;115321:64:0;:71;;-1:-1:-1;;115321:71:0::2;::::0;::::2;;::::0;;;::::2;::::0;;-1:-1:-1;115179:3:0::2;115112:292;;;-1:-1:-1::0;;;;;;115416:30:0;;::::2;;::::0;;;:19:::2;:30;::::0;;;;;;;;:53;;;;;;::::2;-1:-1:-1::0;;;;;;115416:53:0;;::::2;;::::0;;;;::::2;::::0;;;::::2;::::0;;;;;::::2;::::0;::::2;;::::0;;;;;::::2;::::0;;;115449:20;;115416:30;:53:::2;::::0;;::::2;::::0;::::2;::::0;::::2;:::i;:::-;-1:-1:-1::0;115416:53:0::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;-1:-1:-1;;;;;;115416:53:0::2;-1:-1:-1::0;;;;;115416:53:0;;::::2;::::0;;;::::2;::::0;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;::::2;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;115482:9;-1:-1:-1::0;;;;;115482:26:0::2;;:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;40742:1:::1;113777:1741:::0;;;;:::o;108609:1192::-;82773:1;83379:7;;:19;;83371:63;;;;-1:-1:-1;;;83371:63:0;;;;;;;;;82773:1;83512:7;:18;108859:9;40835:35:::1;108859:9:::0;40835:24:::1;:35::i;:::-;40827:88;;;;-1:-1:-1::0;;;40827:88:0::1;;;;;;;;;108886:60:::2;108902:9;108921:4;108928:17;108886:15;:60::i;:::-;108959:66;108979:9;108990:17;109009:10;109021:3;108959:19;:66::i;:::-;109038:28;;:::i;:::-;109069:66;109091:9;109110:4;109117:17;109069:21;:66::i;:::-;109038:97;;109148:93;109172:9;109183:26;109211:17;109230:10;109148:23;:93::i;:::-;109254:45;::::0;-1:-1:-1;;;109254:45:0;;-1:-1:-1;;;;;109254:14:0;::::2;::::0;::::2;::::0;:45:::2;::::0;109269:10:::2;::::0;109281:17;;109254:45:::2;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;109488:26:0::2;::::0;::::2;::::0;109387:138:::2;::::0;-1:-1:-1;;;;;;109387:30:0;::::2;::::0;109440:4:::2;::::0;109468::::2;::::0;109387:138:::2;:30;:138;:::i;:::-;109552:26;::::0;::::2;::::0;109538:41:::2;::::0;-1:-1:-1;;;109538:41:0;;-1:-1:-1;;;;;109538:4:0::2;:13;::::0;::::2;::::0;:41:::2;::::0;109552:26;109538:41:::2;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;;;109613:26:0::2;::::0;::::2;::::0;109600:40:::2;::::0;-1:-1:-1;;;;;109600:12:0;::::2;::::0;:40:::2;::::0;::::2;;::::0;::::2;::::0;;;109613:26;109600:12;:40;::::2;;;;;;;;;;;;;::::0;::::2;;;;;;109653:59;109675:9;109694:4;109701:10;109653:21;:59::i;:::-;109725:68;109751:9;109770:4;109777:3;109782:10;109725:25;:68::i;:::-;-1:-1:-1::0;;82729:1:0;83691:22;;-1:-1:-1;;;;108609:1192:0:o;112167:539::-;112353:9;40390:35;40403:9;40414:10;40390:12;:35::i;:::-;40382:76;;;;-1:-1:-1;;;40382:76:0;;;;;;;;;40477:35;40502:9;40477:24;:35::i;:::-;40469:88;;;;-1:-1:-1;;;40469:88:0;;;;;;;;;-1:-1:-1;;;;;112413:30:0;::::1;;::::0;;;:19:::1;:30;::::0;;;;:44:::1;;::::0;112388:69;::::1;;112380:127;;;;-1:-1:-1::0;;;112380:127:0::1;;;;;;;;;112591:21;112528:19;:30;112548:9;-1:-1:-1::0;;;;;112528:30:0::1;-1:-1:-1::0;;;;;112528:30:0::1;;;;;;;;;;;;:42;;112571:16;112528:60;;;;;;;;:84:::0;112630:68:::1;::::0;-1:-1:-1;;;;;112630:68:0;::::1;::::0;::::1;::::0;::::1;::::0;112658:21;;112681:16;;112630:68:::1;;;;;;;;;;112167:539:::0;;;;:::o;101806:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;101806:68:0;;;;;;;;;;;;;;;;;;:::o;40230:29::-;;;-1:-1:-1;;;;;40230:29:0;;:::o;44935:206::-;45012:4;45036:10;;:36;;-1:-1:-1;;;45036:36:0;;-1:-1:-1;;;;;45036:10:0;;;;:16;;:36;;45061:9;;45036:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:97;;;;-1:-1:-1;45089:44:0;;-1:-1:-1;;;45089:44:0;;-1:-1:-1;;;;;45089:29:0;;;;;:44;;45127:4;;45089:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;121686:258;121819:1;121807:9;:13;121799:46;;;;-1:-1:-1;;;121799:46:0;;;;;;;;;-1:-1:-1;;;;;121864:25:0;;;;;;;:14;:25;;;;;;;;:40;;;;;;;;;;;;121856:80;;;;-1:-1:-1;;;121856:80:0;;;;;;;;;121686:258;;;:::o;139671:481::-;-1:-1:-1;;;;;139922:30:0;;;139890:29;139922:30;;;:19;:30;;;;;:50;;139987:35;;139983:162;;140039:94;;-1:-1:-1;;;140039:94:0;;-1:-1:-1;;;;;140039:31:0;;;;;:94;;140071:9;;140082:13;;140097:21;;140120:7;;140129:3;;140039:94;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;139983:162;139671:481;;;;;;:::o;123352:1198::-;123540:17;;:::i;:::-;123575:27;;:::i;:::-;123650:9;-1:-1:-1;;;;;123650:21:0;;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;123615:32;;;:58;123686:55;;;123830:234;123853:9;123720:21;123686:31;103034:1;123686:31;123830:8;:234::i;:::-;123801:25;;;123754:310;;;123779:20;;;123754:310;;;;123755:22;;;123754:310;;;;124237:32;;;;124106:174;;124145:9;;124169:13;;123754:310;124106:24;:174::i;:::-;124077:26;;;:203;124358:49;124386:9;124077;124358:27;:49::i;:::-;124323:31;;;124293:114;124294:27;;;124293:114;124455:58;124477:9;124488:13;124294:9;124455:21;:58::i;:::-;124420:32;;;:93;:32;123352:1198;-1:-1:-1;;;;123352:1198:0:o;121952:638::-;-1:-1:-1;;;;;122335:30:0;;;;;;:19;:30;;;;;:48;;;122298:33;;;;:85;;122276:189;;;;-1:-1:-1;;;122276:189:0;;;;;;;;;122517:27;122486:10;:27;;;:58;;122478:104;;;;-1:-1:-1;;;122478:104:0;;;;;;;;126507:464;126648:26;;;;126614:61;;-1:-1:-1;;;126614:61:0;;-1:-1:-1;;;;;126614:4:0;:13;;;;:61;;126636:9;;126614:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;126692:23:0;;;;:27;126688:125;;126736:4;-1:-1:-1;;;;;126736:13:0;;126750:10;;;;;;;;;-1:-1:-1;;;;;126750:10:0;-1:-1:-1;;;;;126750:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126777:10;:23;;;126736:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126688:125;126829:21;;;;:25;126825:139;;-1:-1:-1;;;;;126885:30:0;;;;;;;:19;:30;;;;;;;:43;;;126930:21;;;;126871:81;;-1:-1:-1;;;126871:81:0;;:4;:13;;;;;:81;;126885:43;;;;126871:81;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126825:139;126507:464;;:::o;126979:765::-;127211:32;;;;127178:66;;-1:-1:-1;;;127178:66:0;;-1:-1:-1;;;;;127178:32:0;;;;;:66;;127211:32;127178:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;127302:33:0;;;;127257:79;;-1:-1:-1;;;;;;127257:29:0;;;127287:13;;127257:79;:29;:79;:::i;:::-;127369:27;;;;127349:48;;-1:-1:-1;;;127349:48:0;;-1:-1:-1;;;;;127349:14:0;;;;;:48;;127364:3;;127349:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;127415:313:0;;;127550:30;;;;:19;:30;;;;;;;;;:50;127616:27;;;;127658:21;;;;127694:23;;;;127415:313;;;;-1:-1:-1;127415:313:0;;;;127471:10;;127496:3;;127514:13;;127550:50;;;;127616:27;127658:21;127415:313;;44646:146;44729:4;44776:8;-1:-1:-1;;;;;44753:31:0;:9;-1:-1:-1;;;;;44753:17:0;;:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44753:31:0;;;44646:146;-1:-1:-1;;;44646:146:0:o;129876:299::-;-1:-1:-1;;;;;;;130119:30:0;130087:7;130119:30;;;:19;:30;;;;;:48;;;;129876:299::o;125811:570::-;125946:87;125959:13;125974:10;125994:9;126006:10;:26;;;125946:12;:87::i;:::-;126050:23;;;;:27;126046:151;;126094:91;126107:13;126122:10;126134;;;;;;;;;-1:-1:-1;;;;;126134:10:0;-1:-1:-1;;;;;126134:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;126161:10;:23;;;126094:12;:91::i;:::-;126213:21;;;;:25;126209:165;;-1:-1:-1;;;;;126295:30:0;;;;;;;:19;:30;;;;;;;:43;;;126340:21;;;;126255:107;;126268:13;;126283:10;;126295:43;;;126255:12;:107::i;134762:1089::-;134952:7;135171:10;;134952:7;;135171:25;;-1:-1:-1;;;;;135171:10:0;:23;:25::i;:::-;-1:-1:-1;;;;;135171:52:0;;135224:9;135235:13;135171:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135143:106;-1:-1:-1;135262:38:0;135303:47;:17;135143:106;135303:47;:28;:47;:::i;:::-;135262:88;;135400:28;135437:13;-1:-1:-1;;;;;135431:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;135400:62;;;-1:-1:-1;135473:33:0;135509:69;:30;135551:2;:26;;;135509:69;:41;:69;:::i;:::-;135473:105;;135591:25;135619:62;135637:9;135648:13;135663:17;135619;:62::i;:::-;135591:90;-1:-1:-1;135692:23:0;135718:59;:25;135591:90;135718:59;:40;:59;:::i;:::-;135692:85;-1:-1:-1;135797:46:0;:25;135692:85;135797:46;:29;:46;:::i;:::-;135790:53;134762:1089;-1:-1:-1;;;;;;;;;;134762:1089:0:o;131222:933::-;131487:7;131496;131505;131531:29;131562:28;131594:179;131645:9;131669:24;131708:23;131746:16;131594:36;:179::i;:::-;131530:243;;-1:-1:-1;131530:243:0;-1:-1:-1;131828:20:0;131851:55;131530:243;131884:21;131851:55;:32;:55;:::i;:::-;131828:78;-1:-1:-1;131917:18:0;131938:54;:20;131970:21;131938:54;:31;:54;:::i;:::-;131917:75;-1:-1:-1;132005:22:0;132030:55;131917:75;132030:39;:21;132056:12;132030:39;:25;:39;:::i;:::-;:43;:55;:43;:55;:::i;:::-;132106:12;;132120:10;;-1:-1:-1;132106:12:0;;-1:-1:-1;131222:933:0;-1:-1:-1;;;;;;;;;131222:933:0:o;133285:1469::-;133556:7;133581:25;133609:60;133626:9;133637:13;133652:16;133609;:60::i;:::-;133581:88;-1:-1:-1;133680:20:0;133703:46;:16;133581:88;133703:46;:27;:46;:::i;:::-;133927:25;133955:10;;133680:69;;-1:-1:-1;133927:25:0;133955;;-1:-1:-1;;;;;133955:10:0;:23;:25::i;:::-;-1:-1:-1;;;;;133955:52:0;;134008:9;134019:13;133955:78;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;133927:106;;134085:28;134122:13;-1:-1:-1;;;;;134116:29:0;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;134085:62;;;-1:-1:-1;134158:45:0;134206:55;:16;134234:2;:26;;;134206:55;:27;:55;:::i;:::-;134158:103;-1:-1:-1;134272:55:0;134330:73;134376:2;:26;;;134330:34;:16;134351:12;134330:34;:20;:34;:::i;:::-;:45;:73;:45;:73;:::i;:::-;134272:131;-1:-1:-1;134466:19:0;134488:141;134272:131;134488:88;134538:37;134488:45;:15;134515:17;134488:45;:26;:45;:::i;:::-;:49;:88;:49;:88;:::i;:141::-;134466:163;-1:-1:-1;134647:99:0;134466:163;134647:75;:47;134706:15;134647:75;:58;:75;:::i;:99::-;134640:106;;;;;;;;;133285:1469;;;;;;;:::o;64936:355::-;65033:16;65068:13;65083:9;65096:13;65104:1;65107;65096:7;:13::i;:::-;65067:42;;;;65125:4;65120:164;;65146:31;;-1:-1:-1;;;65146:31:0;;;;;;;;65120:164;65211:19;65235:13;65239:1;65242:5;65235:3;:13::i;:::-;-1:-1:-1;65210:38:0;-1:-1:-1;65263:9:0;;-1:-1:-1;;;65263:9:0;69786:181;69844:7;69876:5;;;69900:6;;;;69892:46;;;;-1:-1:-1;;;69892:46:0;;;;;;;;77658:171;77714:7;77751:1;77742:5;:10;;77734:55;;;;-1:-1:-1;;;77734:55:0;;;;;;;;;-1:-1:-1;77815:5:0;77658:171::o;23220:126::-;23285:7;23312:26;21681:8;23312;:1;23318;23312:8;:5;:8;:::i;:::-;:12;:26;:12;:26;:::i;140265:366::-;-1:-1:-1;;;;;140420:30:0;;;140387;140420;;;:19;:30;;;;;:52;;;;140487:36;;140483:141;;140540:72;;-1:-1:-1;;;140540:72:0;;-1:-1:-1;;;;;140540:33:0;;;;;:72;;140574:9;;140585:12;;140599:7;;140608:3;;140540:72;;;;;;;;;;;;;;;;;;;;;;;;140483:141;140265:366;;;;;:::o;124558:1125::-;124744:17;;:::i;:::-;124779:28;;:::i;:::-;124820:27;;;:47;;;124914:70;124940:9;124951:13;124850:17;124914:25;:70::i;:::-;124880:104;;;125076:238;;125099:9;;102863:1;103204;102863;125076:8;:238::i;:::-;125046:26;;;124997:317;125023:21;;;;124997:317;;;;124998:23;;;;124997:317;;;;125363:23;;-1:-1:-1;;;125363:23:0;;;;-1:-1:-1;;;;;125363:21:0;;;;;:23;;;;;;;;;;;:21;:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;125327:33;;;:59;125466:70;125495:9;125506:17;125327:10;125466:28;:70::i;:::-;125430:32;;;125399:137;125400:28;;;125399:137;125585:60;125608:9;125619:13;125400:10;125585:22;:60::i;122598:746::-;-1:-1:-1;;;;;123072:30:0;;;;;;:19;:30;;;;;:48;;;123039:29;;;;:81;;123017:187;;;;-1:-1:-1;;;123017:187:0;;;;;;;;;123256:26;123225:11;:27;;;:57;;123217:119;;;;-1:-1:-1;;;123217:119:0;;;;;;;;;122598:746;;;;:::o;58127:803::-;58307:13;;58303:620;;58430:44;;-1:-1:-1;;;58430:44:0;;58404:23;;-1:-1:-1;;;;;58430:24:0;;;;;:44;;58463:9;;58430:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58404:70;;58491:56;58513:9;58524:6;58532:3;58537:9;58491:21;:56::i;:::-;58651:44;;-1:-1:-1;;;58651:44:0;;58630:18;;-1:-1:-1;;;;;58651:24:0;;;;;:44;;58684:9;;58651:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58630:65;-1:-1:-1;58816:30:0;:15;58836:9;58816:30;:19;:30;:::i;:::-;58802:10;:44;58776:135;;;;-1:-1:-1;;;58776:135:0;;;;;;;;128473:658;128693:78;128720:9;128731:13;128746:11;:24;;;128693:26;:78::i;:::-;128889:22;;;;:26;128885:239;;-1:-1:-1;;;;;129013:30:0;;;;;;;:19;:30;;;;;;;:43;;;129075:22;;;;128932:180;;128981:13;;129013:43;;128932:180;:30;:180;:::i;127752:713::-;127986:33;;;;127953:67;;-1:-1:-1;;;127953:67:0;;-1:-1:-1;;;;;127953:32:0;;;;;:67;;127986:33;127953:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;128078:34:0;;;;128033:80;;-1:-1:-1;;;;;;128033:29:0;;;128063:13;;128033:80;:29;:80;:::i;:::-;-1:-1:-1;;;;;128131:320:0;;;128268:30;;;;:19;:30;;;;;;;;;:52;;;128336:28;;;;128379:22;;;;128416:24;;;;128131:320;;;;;;;;128189:10;;128214:3;;128232:13;;128268:52;;;128336:28;128379:22;;128416:24;128131:320;;44407:151;44510:40;;-1:-1:-1;;;44510:40:0;;44486:4;;-1:-1:-1;;;;;44510:25:0;;;;;:40;;44544:4;;44510:40;;;;22126:93;21681:8;22126:93;;:::o;136080:664::-;136243:7;136252:6;136405:22;136430:66;136462:10;:33;;;136430:10;:27;;;:31;;:66;;;;:::i;:::-;136405:91;;136507:28;136538:139;136651:25;:14;:23;:25::i;:::-;136538:94;136587:44;:10;:33;;;:42;:44::i;:::-;136538:9;-1:-1:-1;;;;;136538:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:48;:94;:48;:94;:::i;:::-;:112;:139;:112;:139;:::i;:::-;136698:14;;-1:-1:-1;136507:170:0;;-1:-1:-1;;136080:664:0;;;;;;:::o;137890:533::-;138079:7;138104:20;138127:63;:9;-1:-1:-1;;;;;138127:36:0;;138164:13;138127:51;;;;;;;;;;;;;;;;:63;138104:86;;138201:20;138224:118;138315:10;:26;;;138224:72;138262:10;:33;;;138224:12;:37;;:72;;;;:::i;:118::-;138201:141;;138362:53;138386:10;:28;;;138362:12;:23;;:53;;;;:::i;30155:840::-;30263:20;30286:41;30305:9;30316:10;30286:18;:41::i;:::-;30263:64;;30343:15;30342:16;:32;;;;;30373:1;30362:8;:12;30342:32;30338:571;;;30499:42;30519:9;30530:10;30499:19;:42::i;:::-;30494:118;;30562:34;;-1:-1:-1;;;30562:34:0;;-1:-1:-1;;;;;30562:22:0;;;;;:34;;30585:10;;30562:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30494:118;30338:571;;;30633:15;:32;;;;-1:-1:-1;30652:13:0;;30633:32;30629:280;;;30782:42;30802:9;30813:10;30782:19;:42::i;:::-;30777:121;;30845:37;;-1:-1:-1;;;30845:37:0;;-1:-1:-1;;;;;30845:25:0;;;;;:37;;30871:10;;30845:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30777:121;30921:9;-1:-1:-1;;;;;30921:33:0;;30955:10;30967:19;:8;:17;:19::i;:::-;30921:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30155:840;;;;:::o;42538:169::-;42642:57;42669:6;42677:5;42684:3;42689:9;42642:26;:57::i;20172:166::-;20283:46;;-1:-1:-1;;;20283:46:0;;20242:10;;-1:-1:-1;;;;;20283:22:0;;;;;:46;;19299:1;;20283:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23863:211;23932:7;23956:6;;;:16;;-1:-1:-1;23966:6:0;;23956:16;23952:57;;;-1:-1:-1;23996:1:0;23989:8;;23952:57;24026:40;24064:1;24026:33;21681:8;24026:15;24064:1;24026:8;:1;24032;24026:8;:5;:8;:::i;70250:136::-;70308:7;70335:43;70339:1;70342;70335:43;;;;;;;;;;;;;;;;;:3;:43::i;132163:1114::-;132415:7;132525:10;;:63;;-1:-1:-1;;;132525:63:0;;132415:7;;;;-1:-1:-1;;;;;132525:10:0;;;;:23;;:63;;132557:4;;132564:23;;132525:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132599:38;132640:10;;:64;;-1:-1:-1;;;132640:64:0;;132490:98;;-1:-1:-1;132599:38:0;;-1:-1:-1;;;;;132640:10:0;;;;:23;;:64;;132672:4;;132679:24;;132640:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;132599:105;;132715:25;132743:19;:30;132763:9;-1:-1:-1;;;;;132743:30:0;-1:-1:-1;;;;;132743:30:0;;;;;;;;;;;;:42;;132786:16;132743:60;;;;;;;;;;-1:-1:-1;132877:38:0;132918:60;:30;132743:60;132918;:41;:60;:::i;:::-;132877:101;-1:-1:-1;132989:37:0;133029:53;:17;132877:101;133029:53;:21;:53;:::i;:::-;132989:93;-1:-1:-1;133093:34:0;133130:60;:30;133165:24;133130:60;:34;:60;:::i;:::-;133211:29;;;;-1:-1:-1;132163:1114:0;;-1:-1:-1;;;;;;;;;;132163:1114:0:o;24166:126::-;24231:7;24258:26;24282:1;24258:19;:1;21681:8;24258:19;:5;:19;:::i;63422:307::-;63536:8;;63493:7;;;;;63555:129;63579:6;63575:1;:10;63555:129;;;63619:1;-1:-1:-1;;;;;63611:9:0;:1;63613;63611:4;;;;;;;;;;;;;;-1:-1:-1;;;;;63611:9:0;;63607:66;;;63649:1;-1:-1:-1;63652:4:0;;-1:-1:-1;63641:16:0;;-1:-1:-1;63641:16:0;63607:66;63587:3;;63555:129;;;-1:-1:-1;;;63710:2:0;63715:5;;-1:-1:-1;63422:307:0;-1:-1:-1;;;;63422:307:0:o;65499:551::-;65657:8;;65597:16;;65615:7;;65684:16;;;65676:53;;;;-1:-1:-1;;;65676:53:0;;;;;;;;;65740:29;65795:1;65786:6;:10;65772:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;65772:25:0;-1:-1:-1;65740:57:0;-1:-1:-1;65813:9:0;65808:85;65832:5;65828:1;:9;65808:85;;;65877:1;65879;65877:4;;;;;;;;;;;;;;65859:12;65872:1;65859:15;;;;;;;;-1:-1:-1;;;;;65859:22:0;;;:15;;;;;;;;;;;:22;65839:3;;65808:85;;;-1:-1:-1;65928:1:0;65920:9;;65903:98;65935:6;65931:1;:10;65903:98;;;65985:1;65987;65985:4;;;;;;;;;;;;;;65963:12;65980:1;65976;:5;65963:19;;;;;;;;-1:-1:-1;;;;;65963:26:0;;;:19;;;;;;;;;;;:26;65943:3;;65903:98;;;;66019:12;66033:1;66035:5;66033:8;;;;;;;;;;;;;;66011:31;;;;;;65499:551;;;;;:::o;71140:471::-;71198:7;71443:6;71439:47;;-1:-1:-1;71473:1:0;71466:8;;71439:47;71510:5;;;71514:1;71510;:5;:1;71534:5;;;;;:10;71526:56;;;;-1:-1:-1;;;71526:56:0;;;;;;;;72087:132;72145:7;72172:39;72176:1;72179;72172:39;;;;;;;;;;;;;;;;;:3;:39::i;137106:565::-;137307:7;137316:6;137340:22;137365:57;137404:17;137365:11;:34;;;:38;;:57;;;;:::i;:::-;137340:82;;137433:28;137464:140;137578:25;:14;:23;:25::i;:::-;137464:95;137513:45;:11;:34;;;:43;:45::i;:::-;137464:9;-1:-1:-1;;;;;137464:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:140;137625:14;;;;-1:-1:-1;137106:565:0;;-1:-1:-1;;;;;137106:565:0:o;138651:798::-;138842:7;138867:20;138890:63;:9;-1:-1:-1;;;;;138890:36:0;;138927:13;138890:51;;;;;;;;;;;;;;;;:63;138867:86;;138964:26;138993:59;139017:11;:34;;;138993:12;:23;;:59;;;;:::i;:::-;138964:88;;139065:15;139083:85;139145:11;:22;;;139083:57;139115:11;:24;;;139083:11;:27;;;:31;;:57;;;;:::i;:85::-;139065:103;;139289:7;139267:18;:29;;139259:89;;;;-1:-1:-1;;;139259:89:0;;;;;;;;;139411:29;;;;139368:73;;:31;:18;139391:7;139368:31;:22;:31;:::i;:73::-;139361:80;138651:798;-1:-1:-1;;;;;;;138651:798:0:o;57329:367::-;57503:13;;57499:190;;57533:21;57610:3;57615:9;57557:68;;;;;;;;;;;;;;-1:-1:-1;;57557:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;57557:68:0;-1:-1:-1;;;57557:68:0;;;57640:37;-1:-1:-1;;;57640:37:0;;57557:68;;-1:-1:-1;;;;;;57640:16:0;;;;;:37;;57657:6;;-1:-1:-1;;57557:68:0;;57640:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;57640:37:0;;;;;;;;;;;;;44047:251;44166:16;;44162:129;;44199:79;44230:6;44238:10;;;;;;;;;-1:-1:-1;;;;;44238:10:0;-1:-1:-1;;;;;44238:23:0;;:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;44199:30:0;;;:79;44265:12;44199:79;:30;:79;:::i;80840:181::-;80896:6;-1:-1:-1;;;80923:5:0;:14;80915:67;;;;-1:-1:-1;;;80915:67:0;;;;;;;;66602:568;66658:6;66902;66898:47;;-1:-1:-1;66932:1:0;66925:8;;66898:47;66967:1;-1:-1:-1;;66967:7:0;:27;;;;;-1:-1:-1;;;66978:1:0;:16;66967:27;66965:30;66957:82;;;;-1:-1:-1;;;66957:82:0;;;;;;;;;67063:5;;;67067:1;67063;:5;:1;67087:5;;;;;:10;67079:62;;;;-1:-1:-1;;;67079:62:0;;;;;;;;67644:271;67700:6;67727;67719:51;;;;-1:-1:-1;;;67719:51:0;;;;;;;;;67791:1;-1:-1:-1;;67791:7:0;:27;;;;;-1:-1:-1;;;67802:1:0;:16;67791:27;67789:30;67781:76;;;;-1:-1:-1;;;67781:76:0;;;;;;;;;67870:8;67885:1;67881;:5;;;;;;;67644:271;-1:-1:-1;;;;67644:271:0:o;28276:175::-;28367:4;28442:1;28391:9;-1:-1:-1;;;;;28391:36:0;;28428:10;28391:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:52;;28276:175;-1:-1:-1;;;28276:175:0:o;28595:183::-;28687:4;28769:1;28711:9;-1:-1:-1;;;;;28711:36:0;;28748:10;28711:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;28711:48:0;;;;;;;;;;;;;;:55;:59;;28595:183;-1:-1:-1;;;28595:183:0:o;9677:768::-;9916:13;;9912:526;;9972:21;;-1:-1:-1;;;9972:21:0;;9946:23;;-1:-1:-1;;;;;9972:16:0;;;;;:21;;9989:3;;9972:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9946:47;;10010:140;10055:6;10080:5;10104:3;10126:9;10010:26;:140::i;:::-;10188:21;;-1:-1:-1;;;10188:21:0;;10167:18;;-1:-1:-1;;;;;10188:16:0;;;;;:21;;10205:3;;10188:21;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10167:42;-1:-1:-1;10331:30:0;:15;10351:9;10331:30;:19;:30;:::i;70689:192::-;70775:7;70811:12;70803:6;;;;70795:29;;;;-1:-1:-1;;;70795:29:0;;;;;;;;;;-1:-1:-1;;;70847:5:0;;;70689:192::o;72715:278::-;72801:7;72836:12;72829:5;72821:28;;;;-1:-1:-1;;;72821:28:0;;;;;;;;;;;72860:9;72876:1;72872;:5;;;;;;;72715:278;-1:-1:-1;;;;;72715:278:0:o;987:205::-;1088:96;1108:5;1138:27;;;1167:4;1173:2;1177:5;1115:68;;;;;;;;;;;;;;;-1:-1:-1;;1115:68:0;;;;;;;;;;;;;;-1:-1:-1;;;;;1115:68:0;-1:-1:-1;;;;;;1115:68:0;;;;;;;;;;3531:23;3557:69;3585:4;3557:69;;;;;;;;;;;;;;;;;3565:5;-1:-1:-1;;;;;3557:27:0;;;:69;;;;;:::i;:::-;3641:17;;3531:95;;-1:-1:-1;3641:21:0;3637:224;;3783:10;3772:30;;;;;;;;;;;;;;3764:85;;;;-1:-1:-1;;;3764:85:0;;;;;;;;14349:196;14452:12;14484:53;14507:6;14515:4;14521:1;14524:12;15856;15889:18;15900:6;15889:10;:18::i;:::-;15881:60;;;;-1:-1:-1;;;15881:60:0;;;;;;;;;16015:12;16029:23;16056:6;-1:-1:-1;;;;;16056:11:0;16076:8;16087:4;16056:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16014:78;;;;16107:7;16103:595;;;16138:10;-1:-1:-1;16131:17:0;;-1:-1:-1;16131:17:0;16103:595;16252:17;;:21;16248:439;;16515:10;16509:17;16576:15;16563:10;16559:2;16555:19;16548:44;16463:148;16658:12;16651:20;;-1:-1:-1;;;16651:20:0;;;;;;;;;11231:619;11291:4;11759:20;;11602:66;11799:23;;;;;;:42;;-1:-1:-1;;11826:15:0;;;11791:51;-1:-1:-1;;11231:619:0:o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::o;:::-;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5:130;72:20;;97:33;72:20;97:33;;454:707;;571:3;564:4;556:6;552:17;548:27;538:2;;-1:-1;;579:12;538:2;626:6;613:20;648:80;663:64;720:6;663:64;;;648:80;;;756:21;;;639:89;-1:-1;800:4;813:14;;;;788:17;;;902;;;893:27;;;;890:36;-1:-1;887:2;;;939:1;;929:12;887:2;964:1;949:206;974:6;971:1;968:13;949:206;;;85:6;72:20;97:33;124:5;97:33;;;1042:50;;1106:14;;;;1134;;;;996:1;989:9;949:206;;;953:14;;;;;531:630;;;;;1936:616;;2051:3;2044:4;2036:6;2032:17;2028:27;2018:2;;-1:-1;;2059:12;2018:2;2112:78;55420:17;2112:78;;;2103:87;;2196:16;2255:17;2313:3;55420:17;2288:3;2284:27;2281:36;2278:2;;;2330:1;;2320:12;2278:2;2355:1;2340:206;2093:4;2362:1;2359:13;2340:206;;;5559:20;;2433:50;;55432:4;2497:14;;;;2525;;;;2387:1;2380:9;2340:206;;;2344:14;;;2011:541;;;;;5907:263;;6022:2;6010:9;6001:7;5997:23;5993:32;5990:2;;;-1:-1;;6028:12;5990:2;226:6;220:13;238:33;265:5;238:33;;6177:392;;6317:2;;6305:9;6296:7;6292:23;6288:32;6285:2;;;-1:-1;;6323:12;6285:2;6374:17;6368:24;6412:18;6404:6;6401:30;6398:2;;;-1:-1;;6434:12;6398:2;6536:6;6525:9;6521:22;1315:3;1308:4;1300:6;1296:17;1292:27;1282:2;;-1:-1;;1323:12;1282:2;1363:6;1357:13;1343:27;;1385:80;1400:64;1457:6;1400:64;;1385:80;1493:21;;;1550:14;;;;1525:17;;;1639;;;1630:27;;;;1627:36;-1:-1;1624:2;;;-1:-1;;1666:12;1624:2;-1:-1;1692:10;;1686:217;1711:6;1708:1;1705:13;1686:217;;;226:6;220:13;238:33;265:5;238:33;;;1779:61;;1733:1;1726:9;;;;;1854:14;;;;1882;;1686:217;;;-1:-1;6454:99;6279:290;-1:-1;;;;;;;6279:290;6576:257;;6688:2;6676:9;6667:7;6663:23;6659:32;6656:2;;;-1:-1;;6694:12;6656:2;2641:6;2635:13;60484:5;57414:13;57407:21;60462:5;60459:32;60449:2;;-1:-1;;60495:12;6840:360;;6964:2;6952:9;6943:7;6939:23;6935:32;6932:2;;;-1:-1;;6970:12;6932:2;7021:17;7015:24;7059:18;;7051:6;7048:30;7045:2;;;-1:-1;;7081:12;7045:2;7167:6;7156:9;7152:22;2808:3;2801:4;2793:6;2789:17;2785:27;2775:2;;-1:-1;;2816:12;2775:2;2856:6;2850:13;2836:27;;7059:18;55594:6;55591:30;55588:2;;;-1:-1;;55624:12;55588:2;2878:64;55697:9;55678:17;;-1:-1;;55674:33;6964:2;55755:15;2878:64;;;2869:73;;2962:6;2955:5;2948:21;3066:3;6964:2;3057:6;2990;3048:16;;3045:25;3042:2;;;-1:-1;;3073:12;3042:2;3093:39;3125:6;6964:2;3024:5;3020:16;6964:2;2990:6;2986:17;3093:39;;;-1:-1;7101:83;6926:274;-1:-1;;;;6926:274;7207:277;;7329:2;7317:9;7308:7;7304:23;7300:32;7297:2;;;-1:-1;;7335:12;7297:2;3431:6;3418:20;3443:51;3488:5;3443:51;;7491:402;;;7630:2;7618:9;7609:7;7605:23;7601:32;7598:2;;;-1:-1;;7636:12;7598:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;7688:81;-1:-1;7806:2;7845:22;;72:20;97:33;72:20;97:33;;;7814:63;;;;7592:301;;;;;;7900:527;;;;8056:2;8044:9;8035:7;8031:23;8027:32;8024:2;;;-1:-1;;8062:12;8024:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;8114:81;-1:-1;8232:2;8271:22;;72:20;97:33;72:20;97:33;;;8018:409;;8240:63;;-1:-1;;;8340:2;8379:22;;;;5559:20;;8018:409;8434:779;;;;;;8624:3;8612:9;8603:7;8599:23;8595:33;8592:2;;;-1:-1;;8631:12;8592:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;8683:81;-1:-1;8801:2;8840:22;;72:20;97:33;72:20;97:33;;;8809:63;-1:-1;8909:2;8948:22;;5559:20;;-1:-1;9017:2;9056:22;;5559:20;;-1:-1;9125:3;9165:22;;72:20;97:33;72:20;97:33;;;9134:63;;;;8586:627;;;;;;;;;9220:562;;;9396:2;9384:9;9375:7;9371:23;9367:32;9364:2;;;-1:-1;;9402:12;9364:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;9454:81;-1:-1;9600:2;9585:18;;9572:32;9624:18;9613:30;;;9610:2;;;-1:-1;;9646:12;9610:2;9749:6;9738:9;9734:22;3822:6;3810:9;3805:3;3801:19;3797:32;3794:2;;;-1:-1;;3832:12;3794:2;3875:6;;;3860:22;3875:6;3860:22;;;3979:74;4049:3;4025:22;3979:74;;;3961:16;3954:100;4165:74;4235:3;9600:2;4215:9;4211:22;4165:74;;;9600:2;4151:5;4147:16;4140:100;9396:2;4327:9;4323:18;4310:32;9624:18;4354:6;4351:30;4348:2;;;-1:-1;;4384:12;4348:2;4429:74;4499:3;4490:6;4479:9;4475:22;4429:74;;;9396:2;4415:5;4411:16;4404:100;;4606:49;4651:3;4573:2;4631:9;4627:22;4606:49;;;4573:2;4592:5;4588:16;4581:75;4758:72;4826:3;4724;4806:9;4802:22;4758:72;;;4724:3;4744:5;4740:16;4733:98;4901:3;4960:9;4956:22;5559:20;4928:4;4921:5;4917:16;4910:75;5059:3;5118:9;5114:22;5559:20;4901:3;5079:5;5075:16;5068:75;5220:3;;;;5279:9;5275:22;5559:20;5059:3;5240:5;5236:16;5229:75;3875:6;5439:9;5435:22;5559:20;5220:3;5398:5;5394:18;5387:77;9666:100;;;;;;;9358:424;;;;;;9789:402;;;9928:2;9916:9;9907:7;9903:23;9899:32;9896:2;;;-1:-1;;9934:12;9896:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;9986:81;10104:2;10143:22;;;;5559:20;;-1:-1;;;9890:301;10198:527;;;;10354:2;10342:9;10333:7;10329:23;10325:32;10322:2;;;-1:-1;;10360:12;10322:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;10412:81;-1:-1;10530:2;10569:22;;5559:20;;-1:-1;10638:2;10677:22;;72:20;97:33;72:20;97:33;;;10646:63;;;;10316:409;;;;;;10732:527;;;;10888:2;10876:9;10867:7;10863:23;10859:32;10856:2;;;-1:-1;;10894:12;10856:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;10946:81;11064:2;11103:22;;5559:20;;-1:-1;11172:2;11211:22;;;5559:20;;10850:409;-1:-1;;;10850:409;11266:669;;;;;11447:3;11435:9;11426:7;11422:23;11418:33;11415:2;;;-1:-1;;11454:12;11415:2;3431:6;3418:20;3443:51;3488:5;3443:51;;;11506:81;-1:-1;11624:2;11663:22;;5559:20;;-1:-1;11732:2;11771:22;;5559:20;;-1:-1;11840:2;11887:22;;358:20;383:41;358:20;383:41;;;11409:526;;;;-1:-1;11409:526;;-1:-1;;11409:526;11942:261;;12056:2;12044:9;12035:7;12031:23;12027:32;12024:2;;;-1:-1;;12062:12;12024:2;-1:-1;3583:13;;12018:185;-1:-1;12018:185;12480:259;;12593:2;12581:9;12572:7;12568:23;12564:32;12561:2;;;-1:-1;;12599:12;12561:2;5852:6;5846:13;58035:4;61184:5;58024:16;61161:5;61158:33;61148:2;;-1:-1;;61195:12;14147:343;;14289:5;56048:12;56592:6;56587:3;56580:19;14382:52;14427:6;56629:4;56624:3;56620:14;56629:4;14408:5;14404:16;14382:52;;;55697:9;60102:14;-1:-1;;60098:28;14446:39;;;;56629:4;14446:39;;14237:253;-1:-1;;14237:253;30188:271;;14657:5;56048:12;14768:52;14813:6;14808:3;14801:4;14794:5;14790:16;14768:52;;;14832:16;;;;;30322:137;-1:-1;;30322:137;30466:222;-1:-1;;;;;57819:54;;;;13138:37;;30593:2;30578:18;;30564:124;30695:908;-1:-1;;;;;57819:54;;;13007:58;;57819:54;;;31171:2;31156:18;;13138:37;57819:54;;;31254:2;31239:18;;13138:37;57819:54;;;;31337:2;31322:18;;13138:37;31420:3;31405:19;;15615:36;;;;57830:42;31489:19;;15615:36;;;;31588:3;31573:19;;15615:36;;;;30998:3;30983:19;;30969:634;31610:349;-1:-1;;;;;57819:54;;;;13007:58;;31945:2;31930:18;;15615:36;31773:2;31758:18;;31744:215;31966:444;-1:-1;;;;;57819:54;;;13138:37;;57819:54;;;;32313:2;32298:18;;13138:37;32396:2;32381:18;;15615:36;;;;32149:2;32134:18;;32120:290;32753:544;;6412:18;;57830:42;;;57224:5;57819:54;13145:3;13138:37;59478:24;33134:2;33123:9;33119:18;15742:58;32962:2;33171;33160:9;33156:18;33149:48;33211:76;32962:2;32951:9;32947:18;33273:6;33211:76;;33644:370;33821:2;33835:47;;;56048:12;;33806:18;;;56580:19;;;33644:370;;33821:2;55902:14;;;;56620;;;;33644:370;13746:260;13771:6;13768:1;13765:13;13746:260;;;13832:13;;-1:-1;;;;;57819:54;13138:37;;56435:14;;;;12900;;;;6412:18;13786:9;13746:260;;;-1:-1;33888:116;;33792:222;-1:-1;;;;;;33792:222;34021:210;57414:13;;57407:21;14101:34;;34142:2;34127:18;;34113:118;34507:992;-1:-1;;;;;57819:54;;;14951:70;;57819:54;;;35067:2;35052:18;;14951:70;57819:54;;;;35150:2;35135:18;;13138:37;35233:2;35218:18;;15615:36;;;;35316:3;35301:19;;15615:36;57830:42;35385:19;;15615:36;;;;35484:3;35469:19;;15615:36;;;;34852:3;34837:19;;34823:676;35506:369;-1:-1;;;;;57819:54;;;14951:70;;57819:54;;35861:2;35846:18;;13138:37;35679:2;35664:18;;35650:225;35882:704;-1:-1;;;;;57819:54;;;14951:70;;57819:54;;;36322:2;36307:18;;13138:37;36405:2;36390:18;;15615:36;;;;57819:54;;36488:2;36473:18;;13138:37;57819:54;;;36571:3;36556:19;;13138:37;36139:3;36124:19;;36110:476;36593:592;-1:-1;;;;;57819:54;;;14951:70;;37005:2;36990:18;;15615:36;;;;57819:54;;;37088:2;37073:18;;13138:37;57819:54;;;37171:2;37156:18;;13138:37;36822:3;36807:19;;36793:392;37449:218;15615:36;;;37574:2;37559:18;;37545:122;37674:310;;37821:2;37842:17;37835:47;37896:78;37821:2;37810:9;37806:18;37960:6;37896:78;;37991:416;38191:2;38205:47;;;16391:2;38176:18;;;56580:19;-1:-1;;;56620:14;;;16407:44;16470:12;;;38162:245;38414:416;38614:2;38628:47;;;16721:2;38599:18;;;56580:19;16757:26;56620:14;;;16737:47;16803:12;;;38585:245;38837:416;39037:2;39051:47;;;17054:2;39022:18;;;56580:19;-1:-1;;;56620:14;;;17070:43;17132:12;;;39008:245;39260:416;39460:2;39474:47;;;17383:2;39445:18;;;56580:19;17419:34;56620:14;;;17399:55;-1:-1;;;17474:12;;;17467:32;17518:12;;;39431:245;39683:416;39883:2;39897:47;;;17769:2;39868:18;;;56580:19;17805:34;56620:14;;;17785:55;-1:-1;;;17860:12;;;17853:34;17906:12;;;39854:245;40106:416;40306:2;40320:47;;;18157:2;40291:18;;;56580:19;18193:34;56620:14;;;18173:55;-1:-1;;;18248:12;;;18241:25;18285:12;;;40277:245;40529:416;40729:2;40743:47;;;18536:2;40714:18;;;56580:19;18572:29;56620:14;;;18552:50;18621:12;;;40700:245;40952:416;41152:2;41166:47;;;18872:2;41137:18;;;56580:19;18908:31;56620:14;;;18888:52;18959:12;;;41123:245;41375:416;41575:2;41589:47;;;19210:2;41560:18;;;56580:19;19246:32;56620:14;;;19226:53;19298:12;;;41546:245;41798:416;41998:2;42012:47;;;19549:2;41983:18;;;56580:19;19585:34;56620:14;;;19565:55;-1:-1;;;19640:12;;;19633:32;19684:12;;;41969:245;42221:416;42421:2;42435:47;;;19935:2;42406:18;;;56580:19;19971:34;56620:14;;;19951:55;-1:-1;;;20026:12;;;20019:27;20065:12;;;42392:245;42644:416;42844:2;42858:47;;;20316:2;42829:18;;;56580:19;20352:30;56620:14;;;20332:51;20402:12;;;42815:245;43067:416;43267:2;43281:47;;;20653:2;43252:18;;;56580:19;20689:34;56620:14;;;20669:55;20758:26;20744:12;;;20737:48;20804:12;;;43238:245;43490:416;43690:2;43704:47;;;21055:2;43675:18;;;56580:19;21091:30;56620:14;;;21071:51;21141:12;;;43661:245;43913:416;44113:2;44127:47;;;21392:2;44098:18;;;56580:19;21428:34;56620:14;;;21408:55;-1:-1;;;21483:12;;;21476:29;21524:12;;;44084:245;44336:416;44536:2;44550:47;;;21775:2;44521:18;;;56580:19;21811:34;56620:14;;;21791:55;-1:-1;;;21866:12;;;21859:46;21924:12;;;44507:245;44759:416;44959:2;44973:47;;;22175:2;44944:18;;;56580:19;22211:34;56620:14;;;22191:55;-1:-1;;;22266:12;;;22259:41;22319:12;;;44930:245;45182:416;45382:2;45396:47;;;22570:2;45367:18;;;56580:19;22606:34;56620:14;;;22586:55;-1:-1;;;22661:12;;;22654:33;22706:12;;;45353:245;45605:416;45805:2;45819:47;;;22957:2;45790:18;;;56580:19;22993:29;56620:14;;;22973:50;23042:12;;;45776:245;46028:416;46228:2;46242:47;;;46213:18;;;56580:19;23329:34;56620:14;;;23309:55;23383:12;;;46199:245;46451:416;46651:2;46665:47;;;23634:2;46636:18;;;56580:19;23670:34;56620:14;;;23650:55;-1:-1;;;23725:12;;;23718:25;23762:12;;;46622:245;46874:416;47074:2;47088:47;;;24013:2;47059:18;;;56580:19;24049:34;56620:14;;;24029:55;-1:-1;;;24104:12;;;24097:37;24153:12;;;47045:245;47297:416;47497:2;47511:47;;;24404:2;47482:18;;;56580:19;24440:34;56620:14;;;24420:55;-1:-1;;;24495:12;;;24488:39;24546:12;;;47468:245;47720:416;47920:2;47934:47;;;24797:2;47905:18;;;56580:19;24833:31;56620:14;;;24813:52;24884:12;;;47891:245;48143:416;48343:2;48357:47;;;25135:2;48328:18;;;56580:19;25171:34;56620:14;;;25151:55;-1:-1;;;25226:12;;;25219:25;25263:12;;;48314:245;48566:416;48766:2;48780:47;;;25514:2;48751:18;;;56580:19;25550:34;56620:14;;;25530:55;-1:-1;;;25605:12;;;25598:31;25648:12;;;48737:245;48989:416;49189:2;49203:47;;;25899:2;49174:18;;;56580:19;25935:31;56620:14;;;25915:52;25986:12;;;49160:245;49412:416;49612:2;49626:47;;;26237:2;49597:18;;;56580:19;26273:34;56620:14;;;26253:55;-1:-1;;;26328:12;;;26321:31;26371:12;;;49583:245;49835:416;50035:2;50049:47;;;26622:2;50020:18;;;56580:19;26658:34;56620:14;;;26638:55;-1:-1;;;26713:12;;;26706:31;26756:12;;;50006:245;50258:416;50458:2;50472:47;;;27007:2;50443:18;;;56580:19;27043:31;56620:14;;;27023:52;27094:12;;;50429:245;50681:416;50881:2;50895:47;;;27345:2;50866:18;;;56580:19;27381:34;56620:14;;;27361:55;-1:-1;;;27436:12;;;27429:32;27480:12;;;50852:245;51104:416;51304:2;51318:47;;;27731:2;51289:18;;;56580:19;27767:34;56620:14;;;27747:55;-1:-1;;;27822:12;;;27815:27;27861:12;;;51275:245;51527:416;51727:2;51741:47;;;28112:2;51712:18;;;56580:19;28148:30;56620:14;;;28128:51;28198:12;;;51698:245;51950:416;52150:2;52164:47;;;28449:2;52135:18;;;56580:19;28485:34;56620:14;;;28465:55;-1:-1;;;28540:12;;;28533:37;28589:12;;;52121:245;52373:416;52573:2;52587:47;;;28840:2;52558:18;;;56580:19;28876:34;56620:14;;;28856:55;-1:-1;;;28931:12;;;28924:34;28977:12;;;52544:245;52796:416;52996:2;53010:47;;;29228:2;52981:18;;;56580:19;29264:34;56620:14;;;29244:55;-1:-1;;;29319:12;;;29312:30;29361:12;;;52967:245;53219:416;53419:2;53433:47;;;53404:18;;;56580:19;29648:34;56620:14;;;29628:55;29702:12;;;53390:245;53642:416;53842:2;53856:47;;;29953:2;53827:18;;;56580:19;29989:33;56620:14;;;29969:54;30042:12;;;53813:245;54294:333;15615:36;;;54613:2;54598:18;;15615:36;54449:2;54434:18;;54420:207;54634:256;54696:2;54690:9;54722:17;;;54797:18;54782:34;;54818:22;;;54779:62;54776:2;;;54854:1;;54844:12;54776:2;54696;54863:22;54674:216;;-1:-1;54674:216;54897:304;;55056:18;55048:6;55045:30;55042:2;;;-1:-1;;55078:12;55042:2;-1:-1;55123:4;55111:17;;;55176:15;;54979:222;59758:268;59823:1;59830:101;59844:6;59841:1;59838:13;59830:101;;;59911:11;;;59905:18;59892:11;;;59885:39;59866:2;59859:10;59830:101;;;59946:6;59943:1;59940:13;59937:2;;;-1:-1;;59823:1;59993:16;;59986:27;59807:219;60139:117;-1:-1;;;;;57819:54;;60198:35;;60188:2;;60247:1;;60237:12
Swarm Source
ipfs://b3fa006978c681c4ccd9cf850ac75d67cbb56f9e80fd1399fbc15871b96f94ee
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.