Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 24 from a total of 24 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Good Swap | 9868444 | 1766 days ago | IN | 0 ETH | 0.00959813 | ||||
Swap | 9776723 | 1780 days ago | IN | 0 ETH | 0.00284811 | ||||
Swap | 9770814 | 1781 days ago | IN | 0 ETH | 0.00194854 | ||||
Good Swap | 9764674 | 1782 days ago | IN | 0 ETH | 0.00258802 | ||||
Get Expected Ret... | 9746080 | 1785 days ago | IN | 0 ETH | 0.01404306 | ||||
Get Expected Ret... | 9746049 | 1785 days ago | IN | 0 ETH | 0.01394949 | ||||
Get Expected Ret... | 9745984 | 1785 days ago | IN | 0 ETH | 0.01359575 | ||||
Swap | 9734923 | 1786 days ago | IN | 0 ETH | 0.00763804 | ||||
Swap | 9734747 | 1786 days ago | IN | 0 ETH | 0.01471099 | ||||
Good Swap | 9731468 | 1787 days ago | IN | 0 ETH | 0.01742048 | ||||
Good Swap | 9731423 | 1787 days ago | IN | 0 ETH | 0.02681135 | ||||
Good Swap | 9731406 | 1787 days ago | IN | 0 ETH | 0.0108321 | ||||
Swap | 9727269 | 1787 days ago | IN | 0 ETH | 0.00113883 | ||||
Good Swap | 9727238 | 1787 days ago | IN | 0 ETH | 0.00495141 | ||||
Good Swap | 9727234 | 1787 days ago | IN | 0 ETH | 0.00346885 | ||||
Good Swap | 9715968 | 1789 days ago | IN | 0 ETH | 0.00322093 | ||||
Good Swap | 9713895 | 1790 days ago | IN | 0 ETH | 0.00679353 | ||||
Set New Impl | 9672093 | 1796 days ago | IN | 0 ETH | 0.00007175 | ||||
Get Expected Ret... | 9671932 | 1796 days ago | IN | 0 ETH | 0.01005106 | ||||
Get Expected Ret... | 9671928 | 1796 days ago | IN | 0 ETH | 0.00647196 | ||||
Set New Impl | 9666005 | 1797 days ago | IN | 0 ETH | 0.00014837 | ||||
Set New Impl | 9665927 | 1797 days ago | IN | 0 ETH | 0.0001187 | ||||
Set New Impl | 9665710 | 1797 days ago | IN | 0 ETH | 0.00014837 | ||||
Get Expected Ret... | 9665638 | 1797 days ago | IN | 0 ETH | 0.00303786 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
13128015 | 1262 days ago | 0 ETH | ||||
13128015 | 1262 days ago | 0 ETH | ||||
13128015 | 1262 days ago | 0 ETH | ||||
13128015 | 1262 days ago | 0 ETH | ||||
12930403 | 1293 days ago | 0 ETH | ||||
12930403 | 1293 days ago | 0 ETH | ||||
10231350 | 1709 days ago | 0.488 ETH | ||||
10231350 | 1709 days ago | 0.488 ETH | ||||
10225244 | 1710 days ago | 0.28 ETH | ||||
10225244 | 1710 days ago | 0.28 ETH | ||||
10225220 | 1710 days ago | 0.3 ETH | ||||
10225220 | 1710 days ago | 0.3 ETH | ||||
10223260 | 1711 days ago | 0.08 ETH | ||||
10223260 | 1711 days ago | 0.08 ETH | ||||
10217164 | 1712 days ago | 0.03 ETH | ||||
10217164 | 1712 days ago | 0.03 ETH | ||||
10213625 | 1712 days ago | 0.05 ETH | ||||
10213625 | 1712 days ago | 0.05 ETH | ||||
10208746 | 1713 days ago | 1.53298889 ETH | ||||
10208746 | 1713 days ago | 1.53298889 ETH | ||||
10208608 | 1713 days ago | 1.13473284 ETH | ||||
10208608 | 1713 days ago | 1.13473284 ETH | ||||
10208278 | 1713 days ago | 1.12553086 ETH | ||||
10208278 | 1713 days ago | 1.12553086 ETH | ||||
10207933 | 1713 days ago | 1 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
OneSplitAudit
Compiler Version
v0.5.16+commit.9c3226ce
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-03-13 */ // File: @openzeppelin/contracts/GSN/Context.sol pragma solidity ^0.5.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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, which should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address payable) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts/ownership/Ownable.sol pragma solidity ^0.5.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return _msgSender() == _owner; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see {ERC20Detailed}. */ 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); } // File: contracts/IOneSplit.sol pragma solidity ^0.5.0; contract IOneSplitView { // disableFlags = FLAG_DISABLE_UNISWAP + FLAG_DISABLE_KYBER + ... uint256 public constant FLAG_DISABLE_UNISWAP = 0x01; uint256 public constant FLAG_DISABLE_KYBER = 0x02; uint256 public constant FLAG_ENABLE_KYBER_UNISWAP_RESERVE = 0x100000000; // Turned off by default uint256 public constant FLAG_ENABLE_KYBER_OASIS_RESERVE = 0x200000000; // Turned off by default uint256 public constant FLAG_ENABLE_KYBER_BANCOR_RESERVE = 0x400000000; // Turned off by default uint256 public constant FLAG_DISABLE_BANCOR = 0x04; uint256 public constant FLAG_DISABLE_OASIS = 0x08; uint256 public constant FLAG_DISABLE_COMPOUND = 0x10; uint256 public constant FLAG_DISABLE_FULCRUM = 0x20; uint256 public constant FLAG_DISABLE_CHAI = 0x40; uint256 public constant FLAG_DISABLE_AAVE = 0x80; uint256 public constant FLAG_DISABLE_SMART_TOKEN = 0x100; uint256 public constant FLAG_ENABLE_MULTI_PATH_ETH = 0x200; // Turned off by default uint256 public constant FLAG_DISABLE_BDAI = 0x400; uint256 public constant FLAG_DISABLE_IEARN = 0x800; uint256 public constant FLAG_DISABLE_CURVE_COMPOUND = 0x1000; uint256 public constant FLAG_DISABLE_CURVE_USDT = 0x2000; uint256 public constant FLAG_DISABLE_CURVE_Y = 0x4000; uint256 public constant FLAG_DISABLE_CURVE_BINANCE = 0x8000; function getExpectedReturn( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 parts, uint256 disableFlags // 1 - Uniswap, 2 - Kyber, 4 - Bancor, 8 - Oasis, 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public view returns( uint256 returnAmount, uint256[] memory distribution // [Uniswap, Kyber, Bancor, Oasis] ); } contract IOneSplit is IOneSplitView { function swap( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 minReturn, uint256[] memory distribution, // [Uniswap, Kyber, Bancor, Oasis] uint256 disableFlags // 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public payable; function goodSwap( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 minReturn, uint256 parts, uint256 disableFlags // 1 - Uniswap, 2 - Kyber, 4 - Bancor, 8 - Oasis, 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public payable; } // File: @openzeppelin/contracts/math/SafeMath.sol pragma solidity ^0.5.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. * * _Available since v2.4.0._ */ 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. * * _Available since v2.4.0._ */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 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. * * _Available since v2.4.0._ */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } // File: @openzeppelin/contracts/utils/Address.sol pragma solidity ^0.5.5; /** * @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 Converts an `address` into `address payable`. Note that this is * simply a type cast: the actual underlying value is not changed. * * _Available since v2.4.0._ */ function toPayable(address account) internal pure returns (address payable) { return address(uint160(account)); } /** * @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]. * * _Available since v2.4.0._ */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-call-value (bool success, ) = recipient.call.value(amount)(""); require(success, "Address: unable to send value, recipient may have reverted"); } } // File: @openzeppelin/contracts/token/ERC20/SafeERC20.sol pragma solidity ^0.5.0; /** * @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 ERC20;` 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)); } 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. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "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"); } } } // File: contracts/UniversalERC20.sol pragma solidity ^0.5.0; library UniversalERC20 { using SafeMath for uint256; using SafeERC20 for IERC20; IERC20 private constant ZERO_ADDRESS = IERC20(0x0000000000000000000000000000000000000000); IERC20 private constant ETH_ADDRESS = IERC20(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE); function universalTransfer(IERC20 token, address to, uint256 amount) internal returns(bool) { if (amount == 0) { return true; } if (isETH(token)) { address(uint160(to)).transfer(amount); } else { token.safeTransfer(to, amount); return true; } } function universalTransferFrom(IERC20 token, address from, address to, uint256 amount) internal { if (amount == 0) { return; } if (isETH(token)) { require(from == msg.sender && msg.value >= amount, "msg.value is zero"); if (to != address(this)) { address(uint160(to)).transfer(amount); } if (msg.value > amount) { msg.sender.transfer(msg.value.sub(amount)); } } else { token.safeTransferFrom(from, to, amount); } } function universalApprove(IERC20 token, address to, uint256 amount) internal { if (!isETH(token)) { if (amount > 0 && token.allowance(address(this), to) > 0) { token.safeApprove(to, 0); } token.safeApprove(to, amount); } } function universalBalanceOf(IERC20 token, address who) internal view returns (uint256) { if (isETH(token)) { return who.balance; } else { return token.balanceOf(who); } } function universalDecimals(IERC20 token) internal view returns (uint256) { if (isETH(token)) { return 18; } (bool success, bytes memory data) = address(token).staticcall.gas(10000)( abi.encodeWithSignature("decimals()") ); if (!success) { (success, data) = address(token).staticcall.gas(10000)( abi.encodeWithSignature("DECIMALS()") ); } return success ? abi.decode(data, (uint256)) : 18; } function isETH(IERC20 token) internal pure returns(bool) { return (address(token) == address(ZERO_ADDRESS) || address(token) == address(ETH_ADDRESS)); } } // File: contracts/OneSplitAudit.sol pragma solidity ^0.5.0; // // Security assumptions: // 1. It is safe to have infinite approves of any tokens to this smart contract, // since it could only call `transferFrom()` with first argument equal to msg.sender // 2. It is safe to call `swap()` and `goodSwap()` with reliable `minReturn` argument, // if returning amount will not reach `minReturn` value whole swap will be reverted. // contract OneSplitAudit is IOneSplit, Ownable { using UniversalERC20 for IERC20; IOneSplit public oneSplitImpl; event ImplementationUpdated(address indexed newImpl); constructor(IOneSplit impl) public { setNewImpl(impl); } function() external payable { require(msg.sender != tx.origin, "OneSplit: do not send ETH directly"); } function setNewImpl(IOneSplit impl) public onlyOwner { oneSplitImpl = impl; emit ImplementationUpdated(address(impl)); } function getExpectedReturn( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 parts, uint256 disableFlags // 1 - Uniswap, 2 - Kyber, 4 - Bancor, 8 - Oasis, 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public view returns( uint256 returnAmount, uint256[] memory distribution // [Uniswap, Kyber, Bancor, Oasis] ) { return oneSplitImpl.getExpectedReturn( fromToken, toToken, amount, parts, disableFlags ); } function swap( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 minReturn, uint256[] memory distribution, // [Uniswap, Kyber, Bancor, Oasis] uint256 disableFlags // 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public payable { fromToken.universalTransferFrom(msg.sender, address(this), amount); fromToken.universalApprove(address(oneSplitImpl), amount); oneSplitImpl.swap.value(msg.value)( fromToken, toToken, amount, minReturn, distribution, disableFlags ); uint256 returnAmount = toToken.universalBalanceOf(address(this)); require(returnAmount >= minReturn, "OneSplit: actual return amount is less than minReturn"); toToken.universalTransfer(msg.sender, returnAmount); fromToken.universalTransfer(msg.sender, fromToken.universalBalanceOf(address(this))); } function goodSwap( IERC20 fromToken, IERC20 toToken, uint256 amount, uint256 minReturn, uint256 parts, uint256 disableFlags // 1 - Uniswap, 2 - Kyber, 4 - Bancor, 8 - Oasis, 16 - Compound, 32 - Fulcrum, 64 - Chai, 128 - Aave, 256 - SmartToken, 1024 - bDAI ) public payable { (, uint256[] memory distribution) = getExpectedReturn( fromToken, toToken, amount, parts, disableFlags ); swap( fromToken, toToken, amount, minReturn, distribution, disableFlags ); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IOneSplit","name":"impl","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newImpl","type":"address"}],"name":"ImplementationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"payable":true,"stateMutability":"payable","type":"fallback"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_AAVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_BANCOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_BDAI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_CHAI","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_COMPOUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_CURVE_BINANCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_CURVE_COMPOUND","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_CURVE_USDT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_CURVE_Y","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_FULCRUM","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_IEARN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_KYBER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_OASIS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_SMART_TOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_DISABLE_UNISWAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_ENABLE_KYBER_BANCOR_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_ENABLE_KYBER_OASIS_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_ENABLE_KYBER_UNISWAP_RESERVE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"FLAG_ENABLE_MULTI_PATH_ETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"contract IERC20","name":"fromToken","type":"address"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"parts","type":"uint256"},{"internalType":"uint256","name":"disableFlags","type":"uint256"}],"name":"getExpectedReturn","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256[]","name":"distribution","type":"uint256[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"fromToken","type":"address"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturn","type":"uint256"},{"internalType":"uint256","name":"parts","type":"uint256"},{"internalType":"uint256","name":"disableFlags","type":"uint256"}],"name":"goodSwap","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"oneSplitImpl","outputs":[{"internalType":"contract IOneSplit","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IOneSplit","name":"impl","type":"address"}],"name":"setNewImpl","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract IERC20","name":"fromToken","type":"address"},{"internalType":"contract IERC20","name":"toToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturn","type":"uint256"},{"internalType":"uint256[]","name":"distribution","type":"uint256[]"},{"internalType":"uint256","name":"disableFlags","type":"uint256"}],"name":"swap","outputs":[],"payable":true,"stateMutability":"payable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200174c3803806200174c833981810160405260208110156200003757600080fd5b505160006200004e6001600160e01b03620000b316565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350620000ac816001600160e01b03620000b716565b5062000195565b3390565b620000ca6001600160e01b036200016616565b6200011c576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517f310ba5f1d2ed074b51e2eccd052a47ae9ab7c6b800d1fca3db3999d6a592ca0390600090a250565b600080546001600160a01b0316620001866001600160e01b03620000b316565b6001600160a01b031614905090565b6115a780620001a56000396000f3fe6080604052600436106101b75760003560e01c806375a8b012116100ec578063b3bc78441161008a578063dc1536b211610064578063dc1536b214610518578063e2a7515e1461052d578063f2fde38b146105f7578063f56e281f1461062a576101b7565b8063b3bc7844146104d9578063c762a46c146104ee578063c77b9de614610503576101b7565b80638da5cb5b116100c65780638da5cb5b146104535780638f32d59b14610468578063b0a7ef2914610491578063b26413f8146104a6576101b7565b806375a8b012146103f85780637a88bdbd1461040d578063867807ca14610422576101b7565b806344211d62116101595780635ae51b82116101335780635ae51b82146103715780635c0cb479146103865780636b9589aa1461039b578063715018a6146103e3576101b7565b806344211d62146103325780634a7101d5146103475780635aa8fb481461035c576101b7565b806321a360f51161019557806321a360f5146102de5780632d3b5207146102f35780632e707bd21461030857806334b4dabb1461031d576101b7565b8063085e2c5b146101f857806313989140146102a25780632113240d146102c9575b333214156101f65760405162461bcd60e51b81526004018080602001828103825260228152602001806114966022913960400191505060405180910390fd5b005b34801561020457600080fd5b50610247600480360360a081101561021b57600080fd5b506001600160a01b0381358116916020810135909116906040810135906060810135906080013561063f565b6040518083815260200180602001828103825283818151815260200191508051906020019060200280838360005b8381101561028d578181015183820152602001610275565b50505050905001935050505060405180910390f35b3480156102ae57600080fd5b506102b7610789565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102b761078f565b3480156102ea57600080fd5b506102b7610795565b3480156102ff57600080fd5b506102b761079e565b34801561031457600080fd5b506102b76107a7565b34801561032957600080fd5b506102b76107ac565b34801561033e57600080fd5b506102b76107b1565b34801561035357600080fd5b506102b76107b6565b34801561036857600080fd5b506102b76107bb565b34801561037d57600080fd5b506102b76107c1565b34801561039257600080fd5b506102b76107c7565b6101f6600480360360c08110156103b157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a001356107cc565b3480156103ef57600080fd5b506101f66107f5565b34801561040457600080fd5b506102b7610898565b34801561041957600080fd5b506102b761089e565b34801561042e57600080fd5b506104376108a3565b604080516001600160a01b039092168252519081900360200190f35b34801561045f57600080fd5b506104376108b2565b34801561047457600080fd5b5061047d6108c1565b604080519115158252519081900360200190f35b34801561049d57600080fd5b506102b76108e5565b3480156104b257600080fd5b506101f6600480360360208110156104c957600080fd5b50356001600160a01b03166108eb565b3480156104e557600080fd5b506102b761098e565b3480156104fa57600080fd5b506102b7610997565b34801561050f57600080fd5b506102b761099c565b34801561052457600080fd5b506102b76109a2565b6101f6600480360360c081101561054357600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a08101608082013564010000000081111561058357600080fd5b82018360208201111561059557600080fd5b803590602001918460208302840111640100000000831117156105b757600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506109a8915050565b34801561060357600080fd5b506101f66004803603602081101561061a57600080fd5b50356001600160a01b0316610b99565b34801561063657600080fd5b506102b7610bfe565b6001546040805163085e2c5b60e01b81526001600160a01b03888116600483015287811660248301526044820187905260648201869052608482018590529151600093606093169163085e2c5b9160a48083019287929190829003018186803b1580156106ab57600080fd5b505afa1580156106bf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160409081528110156106e857600080fd5b81516020830180516040519294929383019291908464010000000082111561070f57600080fd5b90830190602082018581111561072457600080fd5b825186602082028301116401000000008211171561074157600080fd5b82525081516020918201928201910280838360005b8381101561076e578181015183820152602001610756565b50505050905001604052505050915091509550959350505050565b61200081565b61800081565b64020000000081565b64010000000081565b608081565b604081565b601081565b602081565b61400081565b61080081565b600881565b60606107db878787868661063f565b9150506107ec8787878785876109a8565b50505050505050565b6107fd6108c1565b61084e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61040081565b600281565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b03166108d6610c03565b6001600160a01b031614905090565b61100081565b6108f36108c1565b610944576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517f310ba5f1d2ed074b51e2eccd052a47ae9ab7c6b800d1fca3db3999d6a592ca0390600090a250565b64040000000081565b600181565b61020081565b61010081565b6109c36001600160a01b03871633308763ffffffff610c0716565b6001546109e3906001600160a01b0388811691168663ffffffff610d3016565b600160009054906101000a90046001600160a01b03166001600160a01b031663e2a7515e348888888888886040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b0316815260200185815260200184815260200180602001838152602001828103825284818151815260200191508051906020019060200280838360005b83811015610a9f578181015183820152602001610a87565b505050509050019750505050505050506000604051808303818588803b158015610ac857600080fd5b505af1158015610adc573d6000803e3d6000fd5b50505050506000610aff30876001600160a01b0316610e0690919063ffffffff16565b905083811015610b405760405162461bcd60e51b81526004018080602001828103825260358152602001806114de6035913960400191505060405180910390fd5b610b5a6001600160a01b038716338363ffffffff610eb216565b50610b8f33610b786001600160a01b038a163063ffffffff610e0616565b6001600160a01b038a16919063ffffffff610eb216565b5050505050505050565b610ba16108c1565b610bf2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610bfb81610f30565b50565b600481565b3390565b80610c1157610d2a565b610c1a84610fd0565b15610d0f576001600160a01b03831633148015610c375750803410155b610c7c576040805162461bcd60e51b81526020600482015260116024820152706d73672e76616c7565206973207a65726f60781b604482015290519081900360640190fd5b6001600160a01b0382163014610cc4576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cc2573d6000803e3d6000fd5b505b80341115610d0a57336108fc610ce0348463ffffffff61100916565b6040518115909202916000818181858888f19350505050158015610d08573d6000803e3d6000fd5b505b610d2a565b610d2a6001600160a01b03851684848463ffffffff61104b16565b50505050565b610d3983610fd0565b610e0157600081118015610dc7575060408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915160009286169163dd62ed3e916044808301926020929190829003018186803b158015610d9957600080fd5b505afa158015610dad573d6000803e3d6000fd5b505050506040513d6020811015610dc357600080fd5b5051115b15610de757610de76001600160a01b03841683600063ffffffff6110a516565b610e016001600160a01b038416838363ffffffff6110a516565b505050565b6000610e1183610fd0565b15610e2757506001600160a01b03811631610eac565b826001600160a01b03166370a08231836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610e7d57600080fd5b505afa158015610e91573d6000803e3d6000fd5b505050506040513d6020811015610ea757600080fd5b505190505b92915050565b600081610ec157506001610f29565b610eca84610fd0565b15610f0b576040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015610f05573d6000803e3d6000fd5b50610f29565b610f256001600160a01b038516848463ffffffff6111b816565b5060015b9392505050565b6001600160a01b038116610f755760405162461bcd60e51b81526004018080602001828103825260268152602001806114b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382161580610eac57506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1492915050565b6000610f2983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061120a565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610d2a9085906112a1565b80158061112b575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d602081101561112757600080fd5b5051155b6111665760405162461bcd60e51b815260040180806020018281038252603681526020018061153d6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610e019084906112a1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e019084906112a1565b600081848411156112995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561125e578181015183820152602001611246565b50505050905090810190601f16801561128b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6112b3826001600160a01b0316611459565b611304576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106113425780518252601f199092019160209182019101611323565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b509150915081611400576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610d2a5780806020019051602081101561141c57600080fd5b5051610d2a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611513602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061148d57508115155b94935050505056fe4f6e6553706c69743a20646f206e6f742073656e6420455448206469726563746c794f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6553706c69743a2061637475616c2072657475726e20616d6f756e74206973206c657373207468616e206d696e52657475726e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820dc5d4349870c96c44b4d47abf3779f8dbb14817a196701b99a4ff2d0f88c07ec64736f6c6343000510003200000000000000000000000031e1043ac1dc312efe223fabdaf715a53fa6bf22
Deployed Bytecode
0x6080604052600436106101b75760003560e01c806375a8b012116100ec578063b3bc78441161008a578063dc1536b211610064578063dc1536b214610518578063e2a7515e1461052d578063f2fde38b146105f7578063f56e281f1461062a576101b7565b8063b3bc7844146104d9578063c762a46c146104ee578063c77b9de614610503576101b7565b80638da5cb5b116100c65780638da5cb5b146104535780638f32d59b14610468578063b0a7ef2914610491578063b26413f8146104a6576101b7565b806375a8b012146103f85780637a88bdbd1461040d578063867807ca14610422576101b7565b806344211d62116101595780635ae51b82116101335780635ae51b82146103715780635c0cb479146103865780636b9589aa1461039b578063715018a6146103e3576101b7565b806344211d62146103325780634a7101d5146103475780635aa8fb481461035c576101b7565b806321a360f51161019557806321a360f5146102de5780632d3b5207146102f35780632e707bd21461030857806334b4dabb1461031d576101b7565b8063085e2c5b146101f857806313989140146102a25780632113240d146102c9575b333214156101f65760405162461bcd60e51b81526004018080602001828103825260228152602001806114966022913960400191505060405180910390fd5b005b34801561020457600080fd5b50610247600480360360a081101561021b57600080fd5b506001600160a01b0381358116916020810135909116906040810135906060810135906080013561063f565b6040518083815260200180602001828103825283818151815260200191508051906020019060200280838360005b8381101561028d578181015183820152602001610275565b50505050905001935050505060405180910390f35b3480156102ae57600080fd5b506102b7610789565b60408051918252519081900360200190f35b3480156102d557600080fd5b506102b761078f565b3480156102ea57600080fd5b506102b7610795565b3480156102ff57600080fd5b506102b761079e565b34801561031457600080fd5b506102b76107a7565b34801561032957600080fd5b506102b76107ac565b34801561033e57600080fd5b506102b76107b1565b34801561035357600080fd5b506102b76107b6565b34801561036857600080fd5b506102b76107bb565b34801561037d57600080fd5b506102b76107c1565b34801561039257600080fd5b506102b76107c7565b6101f6600480360360c08110156103b157600080fd5b506001600160a01b03813581169160208101359091169060408101359060608101359060808101359060a001356107cc565b3480156103ef57600080fd5b506101f66107f5565b34801561040457600080fd5b506102b7610898565b34801561041957600080fd5b506102b761089e565b34801561042e57600080fd5b506104376108a3565b604080516001600160a01b039092168252519081900360200190f35b34801561045f57600080fd5b506104376108b2565b34801561047457600080fd5b5061047d6108c1565b604080519115158252519081900360200190f35b34801561049d57600080fd5b506102b76108e5565b3480156104b257600080fd5b506101f6600480360360208110156104c957600080fd5b50356001600160a01b03166108eb565b3480156104e557600080fd5b506102b761098e565b3480156104fa57600080fd5b506102b7610997565b34801561050f57600080fd5b506102b761099c565b34801561052457600080fd5b506102b76109a2565b6101f6600480360360c081101561054357600080fd5b6001600160a01b03823581169260208101359091169160408201359160608101359181019060a08101608082013564010000000081111561058357600080fd5b82018360208201111561059557600080fd5b803590602001918460208302840111640100000000831117156105b757600080fd5b91908080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525092955050913592506109a8915050565b34801561060357600080fd5b506101f66004803603602081101561061a57600080fd5b50356001600160a01b0316610b99565b34801561063657600080fd5b506102b7610bfe565b6001546040805163085e2c5b60e01b81526001600160a01b03888116600483015287811660248301526044820187905260648201869052608482018590529151600093606093169163085e2c5b9160a48083019287929190829003018186803b1580156106ab57600080fd5b505afa1580156106bf573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f1916820160409081528110156106e857600080fd5b81516020830180516040519294929383019291908464010000000082111561070f57600080fd5b90830190602082018581111561072457600080fd5b825186602082028301116401000000008211171561074157600080fd5b82525081516020918201928201910280838360005b8381101561076e578181015183820152602001610756565b50505050905001604052505050915091509550959350505050565b61200081565b61800081565b64020000000081565b64010000000081565b608081565b604081565b601081565b602081565b61400081565b61080081565b600881565b60606107db878787868661063f565b9150506107ec8787878785876109a8565b50505050505050565b6107fd6108c1565b61084e576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b61040081565b600281565b6001546001600160a01b031681565b6000546001600160a01b031690565b600080546001600160a01b03166108d6610c03565b6001600160a01b031614905090565b61100081565b6108f36108c1565b610944576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517f310ba5f1d2ed074b51e2eccd052a47ae9ab7c6b800d1fca3db3999d6a592ca0390600090a250565b64040000000081565b600181565b61020081565b61010081565b6109c36001600160a01b03871633308763ffffffff610c0716565b6001546109e3906001600160a01b0388811691168663ffffffff610d3016565b600160009054906101000a90046001600160a01b03166001600160a01b031663e2a7515e348888888888886040518863ffffffff1660e01b815260040180876001600160a01b03166001600160a01b03168152602001866001600160a01b03166001600160a01b0316815260200185815260200184815260200180602001838152602001828103825284818151815260200191508051906020019060200280838360005b83811015610a9f578181015183820152602001610a87565b505050509050019750505050505050506000604051808303818588803b158015610ac857600080fd5b505af1158015610adc573d6000803e3d6000fd5b50505050506000610aff30876001600160a01b0316610e0690919063ffffffff16565b905083811015610b405760405162461bcd60e51b81526004018080602001828103825260358152602001806114de6035913960400191505060405180910390fd5b610b5a6001600160a01b038716338363ffffffff610eb216565b50610b8f33610b786001600160a01b038a163063ffffffff610e0616565b6001600160a01b038a16919063ffffffff610eb216565b5050505050505050565b610ba16108c1565b610bf2576040805162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015290519081900360640190fd5b610bfb81610f30565b50565b600481565b3390565b80610c1157610d2a565b610c1a84610fd0565b15610d0f576001600160a01b03831633148015610c375750803410155b610c7c576040805162461bcd60e51b81526020600482015260116024820152706d73672e76616c7565206973207a65726f60781b604482015290519081900360640190fd5b6001600160a01b0382163014610cc4576040516001600160a01b0383169082156108fc029083906000818181858888f19350505050158015610cc2573d6000803e3d6000fd5b505b80341115610d0a57336108fc610ce0348463ffffffff61100916565b6040518115909202916000818181858888f19350505050158015610d08573d6000803e3d6000fd5b505b610d2a565b610d2a6001600160a01b03851684848463ffffffff61104b16565b50505050565b610d3983610fd0565b610e0157600081118015610dc7575060408051636eb1769f60e11b81523060048201526001600160a01b038481166024830152915160009286169163dd62ed3e916044808301926020929190829003018186803b158015610d9957600080fd5b505afa158015610dad573d6000803e3d6000fd5b505050506040513d6020811015610dc357600080fd5b5051115b15610de757610de76001600160a01b03841683600063ffffffff6110a516565b610e016001600160a01b038416838363ffffffff6110a516565b505050565b6000610e1183610fd0565b15610e2757506001600160a01b03811631610eac565b826001600160a01b03166370a08231836040518263ffffffff1660e01b815260040180826001600160a01b03166001600160a01b0316815260200191505060206040518083038186803b158015610e7d57600080fd5b505afa158015610e91573d6000803e3d6000fd5b505050506040513d6020811015610ea757600080fd5b505190505b92915050565b600081610ec157506001610f29565b610eca84610fd0565b15610f0b576040516001600160a01b0384169083156108fc029084906000818181858888f19350505050158015610f05573d6000803e3d6000fd5b50610f29565b610f256001600160a01b038516848463ffffffff6111b816565b5060015b9392505050565b6001600160a01b038116610f755760405162461bcd60e51b81526004018080602001828103825260268152602001806114b86026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160a01b0382161580610eac57506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1492915050565b6000610f2983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061120a565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b179052610d2a9085906112a1565b80158061112b575060408051636eb1769f60e11b81523060048201526001600160a01b03848116602483015291519185169163dd62ed3e91604480820192602092909190829003018186803b1580156110fd57600080fd5b505afa158015611111573d6000803e3d6000fd5b505050506040513d602081101561112757600080fd5b5051155b6111665760405162461bcd60e51b815260040180806020018281038252603681526020018061153d6036913960400191505060405180910390fd5b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663095ea7b360e01b179052610e019084906112a1565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610e019084906112a1565b600081848411156112995760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561125e578181015183820152602001611246565b50505050905090810190601f16801561128b5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b6112b3826001600160a01b0316611459565b611304576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106113425780518252601f199092019160209182019101611323565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146113a4576040519150601f19603f3d011682016040523d82523d6000602084013e6113a9565b606091505b509150915081611400576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b805115610d2a5780806020019051602081101561141c57600080fd5b5051610d2a5760405162461bcd60e51b815260040180806020018281038252602a815260200180611513602a913960400191505060405180910390fd5b6000813f7fc5d2460186f7233c927e7db2dcc703c0e500b653ca82273b7bfad8045d85a47081811480159061148d57508115155b94935050505056fe4f6e6553706c69743a20646f206e6f742073656e6420455448206469726563746c794f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573734f6e6553706c69743a2061637475616c2072657475726e20616d6f756e74206973206c657373207468616e206d696e52657475726e5361666545524332303a204552433230206f7065726174696f6e20646964206e6f7420737563636565645361666545524332303a20617070726f76652066726f6d206e6f6e2d7a65726f20746f206e6f6e2d7a65726f20616c6c6f77616e6365a265627a7a72315820dc5d4349870c96c44b4d47abf3779f8dbb14817a196701b99a4ff2d0f88c07ec64736f6c63430005100032
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000031e1043ac1dc312efe223fabdaf715a53fa6bf22
-----Decoded View---------------
Arg [0] : impl (address): 0x31E1043Ac1DC312EFE223faBDaF715a53FA6bF22
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000031e1043ac1dc312efe223fabdaf715a53fa6bf22
Deployed Bytecode Sourcemap
24684:2946:0:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25002:10;25016:9;25002:23;;24994:70;;;;-1:-1:-1;;;24994:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24684:2946;25231:656;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25231:656:0;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;25231:656:0;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25231:656:0;;;;;;;;;;;;;;;;;;7850:56;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7850:56:0;;;:::i;:::-;;;;;;;;;;;;;;;;7973:59;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7973:59:0;;;:::i;6974:69::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6974:69:0;;;:::i;6871:71::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6871:71:0;;;:::i;7462:48::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7462:48:0;;;:::i;7407:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7407:48:0;;;:::i;7290:52::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7290:52:0;;;:::i;7349:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7349:51:0;;;:::i;7913:53::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7913:53:0;;;:::i;7726:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7726:50:0;;;:::i;7234:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7234:49:0;;;:::i;26927:700::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;;26927:700:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;2963:140::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2963:140:0;;;:::i;7670:49::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7670:49:0;;;:::i;6815:::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6815:49:0;;;:::i;24778:29::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24778:29:0;;;:::i;:::-;;;;-1:-1:-1;;;;;24778:29:0;;;;;;;;;;;;;;2152:79;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2152:79:0;;;:::i;2518:94::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;2518:94:0;;;:::i;:::-;;;;;;;;;;;;;;;;;;7783:60;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7783:60:0;;;:::i;25080:143::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25080:143:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;25080:143:0;-1:-1:-1;;;;;25080:143:0;;:::i;7075:70::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7075:70:0;;;:::i;6757:51::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;6757:51:0;;;:::i;7580:58::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7580:58:0;;;:::i;7517:56::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7517:56:0;;;:::i;25895:1024::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;-1:-1;;;;;25895:1024:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;25895:1024:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25895:1024:0;;;;;;101:9:-1;95:2;81:12;77:21;67:8;63:36;60:51;39:11;25:12;22:29;11:108;8:2;;;132:1;129;122:12;8:2;25895:1024:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25895:1024:0;;-1:-1:-1;;25895:1024:0;;;-1:-1:-1;25895:1024:0;;-1:-1:-1;;25895:1024:0:i;3258:109::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;3258:109:0;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;3258:109:0;-1:-1:-1;;;;;3258:109:0;;:::i;7177:50::-;;8:9:-1;5:2;;;30:1;27;20:12;5:2;7177:50:0;;;:::i;25231:656::-;25724:12;;:155;;;-1:-1:-1;;;25724:155:0;;-1:-1:-1;;;;;25724:155:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25590:20;;25625:29;;25724:12;;:30;;:155;;;;;25590:20;;25724:155;;;;;;;:12;:155;;;5:2:-1;;;;30:1;27;20:12;5:2;25724:155:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25724:155:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;25724:155:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;;;5:11;;2:2;;;29:1;26;19:12;2:2;25724:155:0;;;;;;;;;;;;;;;;;;;19:11:-1;11:20;;8:2;;;44:1;41;34:12;8:2;62:21;;;;123:4;114:14;;138:31;;;135:2;;;182:1;179;172:12;135:2;219:3;213:10;331:9;325:2;311:12;307:21;289:16;285:44;282:59;261:11;247:12;244:29;233:116;230:2;;;362:1;359;352:12;230:2;373:25;;-1:-1;25724:155:0;;421:4:-1;412:14;;;;25724:155:0;;;;;412:14:-1;25724:155:0;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;25724:155:0;;;;;;;;;;;25717:162;;;;25231:656;;;;;;;;:::o;7850:56::-;7900:6;7850:56;:::o;7973:59::-;8026:6;7973:59;:::o;6974:69::-;7032:11;6974:69;:::o;6871:71::-;6931:11;6871:71;:::o;7462:48::-;7506:4;7462:48;:::o;7407:::-;7451:4;7407:48;:::o;7290:52::-;7338:4;7290:52;:::o;7349:51::-;7396:4;7349:51;:::o;7913:53::-;7960:6;7913:53;:::o;7726:50::-;7771:5;7726:50;:::o;7234:49::-;7279:4;7234:49;:::o;26927:700::-;27273:29;27306:142;27338:9;27362:7;27384:6;27405:5;27425:12;27306:17;:142::i;:::-;27270:178;;;27459:160;27478:9;27502:7;27524:6;27545:9;27569:12;27596;27459:4;:160::i;:::-;26927:700;;;;;;;:::o;2963:140::-;2364:9;:7;:9::i;:::-;2356:54;;;;;-1:-1:-1;;;2356:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3062:1;3046:6;;3025:40;;-1:-1:-1;;;;;3046:6:0;;;;3025:40;;3062:1;;3025:40;3093:1;3076:19;;-1:-1:-1;;;;;;3076:19:0;;;2963:140::o;7670:49::-;7714:5;7670:49;:::o;6815:::-;6860:4;6815:49;:::o;24778:29::-;;;-1:-1:-1;;;;;24778:29:0;;:::o;2152:79::-;2190:7;2217:6;-1:-1:-1;;;;;2217:6:0;2152:79;:::o;2518:94::-;2558:4;2598:6;;-1:-1:-1;;;;;2598:6:0;2582:12;:10;:12::i;:::-;-1:-1:-1;;;;;2582:22:0;;2575:29;;2518:94;:::o;7783:60::-;7837:6;7783:60;:::o;25080:143::-;2364:9;:7;:9::i;:::-;2356:54;;;;;-1:-1:-1;;;2356:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25144:12;:19;;-1:-1:-1;;;;;;25144:19:0;-1:-1:-1;;;;;25144:19:0;;;;;;;;25179:36;;;;-1:-1:-1;;25179:36:0;25080:143;:::o;7075:70::-;7134:11;7075:70;:::o;6757:51::-;6804:4;6757:51;:::o;7580:58::-;7633:5;7580:58;:::o;7517:56::-;7568:5;7517:56;:::o;25895:1024::-;26238:66;-1:-1:-1;;;;;26238:31:0;;26270:10;26290:4;26297:6;26238:66;:31;:66;:::i;:::-;26350:12;;26315:57;;-1:-1:-1;;;;;26315:26:0;;;;26350:12;26365:6;26315:57;:26;:57;:::i;:::-;26385:12;;;;;;;;;-1:-1:-1;;;;;26385:12:0;-1:-1:-1;;;;;26385:17:0;;26409:9;26434;26458:7;26480:6;26501:9;26525:12;26552;26385:190;;;;;;;;;;;;;-1:-1:-1;;;;;26385:190:0;-1:-1:-1;;;;;26385:190:0;;;;;;-1:-1:-1;;;;;26385:190:0;-1:-1:-1;;;;;26385:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;26385:190:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26385:190:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26385:190:0;;;;;26588:20;26611:41;26646:4;26611:7;-1:-1:-1;;;;;26611:26:0;;;:41;;;;:::i;:::-;26588:64;;26687:9;26671:12;:25;;26663:91;;;;-1:-1:-1;;;26663:91:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26765:51;-1:-1:-1;;;;;26765:25:0;;26791:10;26803:12;26765:51;:25;:51;:::i;:::-;-1:-1:-1;26827:84:0;26855:10;26867:43;-1:-1:-1;;;;;26867:28:0;;26904:4;26867:43;:28;:43;:::i;:::-;-1:-1:-1;;;;;26827:27:0;;;:84;;:27;:84;:::i;:::-;;25895:1024;;;;;;;:::o;3258:109::-;2364:9;:7;:9::i;:::-;2356:54;;;;;-1:-1:-1;;;2356:54:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3331:28;3350:8;3331:18;:28::i;:::-;3258:109;:::o;7177:50::-;7223:4;7177:50;:::o;858:98::-;938:10;858:98;:::o;22371:591::-;22482:11;22478:50;;22510:7;;22478:50;22544:12;22550:5;22544;:12::i;:::-;22540:415;;;-1:-1:-1;;;;;22581:18:0;;22589:10;22581:18;:41;;;;;22616:6;22603:9;:19;;22581:41;22573:71;;;;;-1:-1:-1;;;22573:71:0;;;;;;;;;;;;-1:-1:-1;;;22573:71:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;22663:19:0;;22677:4;22663:19;22659:97;;22703:37;;-1:-1:-1;;;;;22703:29:0;;;:37;;;;;22733:6;;22703:37;;;;22733:6;22703:29;:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22703:37:0;22659:97;22786:6;22774:9;:18;22770:101;;;22813:10;:42;22833:21;:9;22847:6;22833:21;:13;:21;:::i;:::-;22813:42;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22813:42:0;22770:101;22540:415;;;22903:40;-1:-1:-1;;;;;22903:22:0;;22926:4;22932:2;22936:6;22903:40;:22;:40;:::i;:::-;22371:591;;;;:::o;22970:301::-;23063:12;23069:5;23063;:12::i;:::-;23058:206;;23105:1;23096:6;:10;:52;;;;-1:-1:-1;23110:34:0;;;-1:-1:-1;;;23110:34:0;;23134:4;23110:34;;;;-1:-1:-1;;;;;23110:34:0;;;;;;;;;23147:1;;23110:15;;;;;:34;;;;;;;;;;;;;;:15;:34;;;5:2:-1;;;;30:1;27;20:12;5:2;23110:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23110:34:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23110:34:0;:38;23096:52;23092:117;;;23169:24;-1:-1:-1;;;;;23169:17:0;;23187:2;23191:1;23169:24;:17;:24;:::i;:::-;23223:29;-1:-1:-1;;;;;23223:17:0;;23241:2;23245:6;23223:29;:17;:29;:::i;:::-;22970:301;;;:::o;23279:228::-;23357:7;23381:12;23387:5;23381;:12::i;:::-;23377:123;;;-1:-1:-1;;;;;;23417:11:0;;;23410:18;;23377:123;23468:5;-1:-1:-1;;;;;23468:15:0;;23484:3;23468:20;;;;;;;;;;;;;-1:-1:-1;;;;;23468:20:0;-1:-1:-1;;;;;23468:20:0;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;23468:20:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;23468:20:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23468:20:0;;-1:-1:-1;23377:123:0;23279:228;;;;:::o;22015:348::-;22101:4;22122:11;22118:55;;-1:-1:-1;22157:4:0;22150:11;;22118:55;22189:12;22195:5;22189;:12::i;:::-;22185:171;;;22218:37;;-1:-1:-1;;;;;22218:29:0;;;:37;;;;;22248:6;;22218:37;;;;22248:6;22218:29;:37;;;;;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;22218:37:0;22185:171;;;22288:30;-1:-1:-1;;;;;22288:18:0;;22307:2;22311:6;22288:30;:18;:30;:::i;:::-;-1:-1:-1;22340:4:0;22185:171;22015:348;;;;;:::o;3473:229::-;-1:-1:-1;;;;;3547:22:0;;3539:73;;;;-1:-1:-1;;;3539:73:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3649:6;;;3628:38;;-1:-1:-1;;;;;3628:38:0;;;;3649:6;;;3628:38;;;3677:6;:17;;-1:-1:-1;;;;;;3677:17:0;-1:-1:-1;;;;;3677:17:0;;;;;;;;;;3473:229::o;24056:166::-;24107:4;-1:-1:-1;;;;;24132:39:0;;;;:81;;-1:-1:-1;;;;;;24175:38:0;;21963:42;24175:38;24124:90;24056:166;-1:-1:-1;;24056:166:0:o;10611:136::-;10669:7;10696:43;10700:1;10703;10696:43;;;;;;;;;;;;;;;;;:3;:43::i;18670:204::-;18797:68;;;-1:-1:-1;;;;;18797:68:0;;;;;;;;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18797:68:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18771:95:0;;18790:5;;18771:18;:95::i;18882:621::-;19252:10;;;19251:62;;-1:-1:-1;19268:39:0;;;-1:-1:-1;;;19268:39:0;;19292:4;19268:39;;;;-1:-1:-1;;;;;19268:39:0;;;;;;;;;:15;;;;;;:39;;;;;;;;;;;;;;;:15;:39;;;5:2:-1;;;;30:1;27;20:12;5:2;19268:39:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;19268:39:0;;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;19268:39:0;:44;19251:62;19243:152;;;;-1:-1:-1;;;19243:152:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19432:62;;;-1:-1:-1;;;;;19432:62:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;19432:62:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;19406:89:0;;19425:5;;19406:18;:89::i;18486:176::-;18595:58;;;-1:-1:-1;;;;;18595:58:0;;;;;;;;;;;;;;;26:21:-1;;;22:32;;;6:49;;18595:58:0;;;;;;;;25:18:-1;;61:17;;-1:-1;;;;;182:15;-1:-1;;;179:29;160:49;;18569:85:0;;18588:5;;18569:18;:85::i;11084:192::-;11170:7;11206:12;11198:6;;;;11190:29;;;;-1:-1:-1;;;11190:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23:1:-1;8:100;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;11190:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;11242:5:0;;;11084:192::o;20525:1114::-;21129:27;21137:5;-1:-1:-1;;;;;21129:25:0;;:27::i;:::-;21121:71;;;;;-1:-1:-1;;;21121:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;21266:12;21280:23;21315:5;-1:-1:-1;;;;;21307:19:0;21327:4;21307:25;;;;;;;;;;;;;36:153:-1;66:2;61:3;58:11;36:153;;176:10;;164:23;;-1:-1;;139:12;;;;98:2;89:12;;;;114;36:153;;;274:1;267:3;263:2;259:12;254:3;250:22;246:30;315:4;311:9;305:3;299:10;295:26;356:4;350:3;344:10;340:21;389:7;380;377:20;372:3;365:33;3:399;;;21307:25:0;;;;;;;;;;;;;;;;;;;;;;;;14:1:-1;21;16:31;;;;75:4;69:11;64:16;;144:4;140:9;133:4;115:16;111:27;107:43;104:1;100:51;94:4;87:65;169:16;166:1;159:27;225:16;222:1;215:4;212:1;208:12;193:49;7:242;;16:31;36:4;31:9;;7:242;;21265:67:0;;;;21351:7;21343:52;;;;;-1:-1:-1;;;21343:52:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21412:17;;:21;21408:224;;21554:10;21543:30;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21543:30:0;21535:85;;;;-1:-1:-1;;;21535:85:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15515:619;15575:4;16043:20;;15886:66;16083:23;;;;;;:42;;-1:-1:-1;16110:15:0;;;16083:42;16075:51;15515:619;-1:-1:-1;;;;15515:619:0:o
Swarm Source
bzzr://dc5d4349870c96c44b4d47abf3779f8dbb14817a196701b99a4ff2d0f88c07ec
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 31 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.