Overview
ETH Balance
0 ETH
Eth Value
$0.00Token Holdings
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 4,736 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20251305 | 117 days ago | IN | 0 ETH | 0.00002952 | ||||
Burn To Withdraw | 20061147 | 143 days ago | IN | 0 ETH | 0.00133573 | ||||
Burn To Withdraw | 18355409 | 382 days ago | IN | 0 ETH | 0.00147853 | ||||
Burn To Withdraw | 18080558 | 421 days ago | IN | 0 ETH | 0.00311537 | ||||
Burn To Withdraw | 17997101 | 433 days ago | IN | 0 ETH | 0.00318693 | ||||
Burn To Withdraw | 17898780 | 446 days ago | IN | 0 ETH | 0.00362944 | ||||
Approve | 17777064 | 463 days ago | IN | 0 ETH | 0.00125004 | ||||
Approve | 17706165 | 473 days ago | IN | 0 ETH | 0.00107547 | ||||
Unlock Deposit | 17677669 | 477 days ago | IN | 0 ETH | 0.00150733 | ||||
Approve | 17548560 | 495 days ago | IN | 0 ETH | 0.00036486 | ||||
Approve | 17548553 | 495 days ago | IN | 0 ETH | 0.00056265 | ||||
Unlock Deposit | 17548546 | 495 days ago | IN | 0 ETH | 0.00063715 | ||||
Burn To Withdraw | 17511519 | 501 days ago | IN | 0 ETH | 0.00409894 | ||||
Unlock Deposit | 17496760 | 503 days ago | IN | 0 ETH | 0.00079232 | ||||
Unlock Deposit | 17492746 | 503 days ago | IN | 0 ETH | 0.00099191 | ||||
Burn To Withdraw | 17448521 | 510 days ago | IN | 0 ETH | 0.00623745 | ||||
Unlock Deposit | 17448515 | 510 days ago | IN | 0 ETH | 0.00121369 | ||||
Approve | 17382499 | 519 days ago | IN | 0 ETH | 0.0011151 | ||||
Unlock Deposit | 17382493 | 519 days ago | IN | 0 ETH | 0.00126179 | ||||
Approve | 17130198 | 554 days ago | IN | 0 ETH | 0.00093491 | ||||
Burn To Withdraw | 17057816 | 565 days ago | IN | 0 ETH | 0.00660845 | ||||
Unlock Deposit | 17057805 | 565 days ago | IN | 0 ETH | 0.00121795 | ||||
Approve | 17046918 | 566 days ago | IN | 0 ETH | 0.00127008 | ||||
Approve | 17002208 | 573 days ago | IN | 0 ETH | 0.00096287 | ||||
Burn To Withdraw | 16910098 | 586 days ago | IN | 0 ETH | 0.00349984 |
Advanced mode: Intended for advanced users or developers and will display all Internal Transactions including zero value transfers. Name tag integration is not available in advanced view.
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | ||||
---|---|---|---|---|---|---|---|
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
20061147 | 143 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18355409 | 382 days ago | 0 ETH | |||||
18080558 | 421 days ago | 0 ETH | |||||
18080558 | 421 days ago | 0 ETH | |||||
18080558 | 421 days ago | 0 ETH | |||||
18080558 | 421 days ago | 0 ETH | |||||
18080558 | 421 days ago | 0 ETH |
Loading...
Loading
Contract Name:
ClipperCaravelExchange
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: Copyright 2021 Shipyard Software, Inc. pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "@openzeppelin/contracts/utils/math/SafeCast.sol"; import "./interfaces/WrapperContractInterface.sol"; import "./ClipperCommonExchange.sol"; contract ClipperCaravelExchange is ClipperCommonExchange, Ownable { using SafeCast for uint256; using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; modifier receivedInTime(uint256 goodUntil){ require(block.timestamp <= goodUntil, "Clipper: Expired"); _; } constructor(address theSigner, address theWrapper, address[] memory tokens) ClipperCommonExchange(theSigner, theWrapper, tokens) {} function addAsset(address token) external onlyOwner { assetSet.add(token); _sync(token); } function tokenBalance(address token) internal view returns (uint256) { (bool success, bytes memory data) = token.staticcall(abi.encodeWithSelector(IERC20.balanceOf.selector, address(this))); require(success && data.length >= 32); return abi.decode(data, (uint256)); } function _sync(address token) internal override { setBalance(token, tokenBalance(token)); } function confirmUnique(address token) internal view returns (uint32 newHash, uint256 currentBalance) { uint256 _current = lastBalances[token]; currentBalance = uint256(uint224(_current)); uint32 lastHash = uint32(_current >> 224); newHash = uint32(block.number+uint256(uint160(tx.origin))); require(newHash != lastHash, "Clipper: Failed tx uniqueness"); } function makeWriteValue(uint32 newHash, uint256 newBalance) internal pure returns (uint256) { return (uint256(newHash) << 224) + uint256(newBalance.toUint224()); } function setBalance(address token, uint256 newBalance) internal { (uint32 newHash, ) = confirmUnique(token); lastBalances[token] = makeWriteValue(newHash, newBalance); } function increaseBalance(address token, uint256 increaseAmount) internal { (uint32 newHash, uint256 curBalance) = confirmUnique(token); lastBalances[token] = makeWriteValue(newHash, curBalance+increaseAmount); } function decreaseBalance(address token, uint256 decreaseAmount) internal { (uint32 newHash, uint256 curBalance) = confirmUnique(token); lastBalances[token] = makeWriteValue(newHash, curBalance-decreaseAmount); } function getLastBalance(address token) public view override returns (uint256) { return uint256(uint224(lastBalances[token])); } // Can deposit raw ETH by attaching as msg.value function deposit(address sender, uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable override receivedInTime(goodUntil){ if(msg.value > 0){ safeEthSend(WRAPPER_CONTRACT, msg.value); } // Make sure the depositor is allowed require(msg.sender==sender, "Listed sender does not match msg.sender"); bytes32 depositDigest = createDepositDigest(sender, depositAmounts, nDays, poolTokens, goodUntil); // Revert if it's signed by the wrong address verifyDigestSignature(depositDigest, theSignature); // Check deposit amounts, syncing as we go uint i=0; uint n = depositAmounts.length; while(i < n){ uint256 allegedDeposit = depositAmounts[i]; if(allegedDeposit > 0){ address _token = tokenAt(i); uint256 currentBalance = tokenBalance(_token); require(currentBalance - getLastBalance(_token) >= allegedDeposit, "Insufficient token deposit"); setBalance(_token, currentBalance); } i++; } // OK now we're good _mintOrVesting(sender, nDays, poolTokens); emit Deposited(sender, poolTokens, nDays); } function depositSingleAsset(address sender, address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable override receivedInTime(goodUntil){ if(msg.value > 0){ safeEthSend(WRAPPER_CONTRACT, msg.value); } // Make sure the depositor is allowed require(msg.sender==sender && isToken(inputToken), "Invalid input"); // Check the signature bytes32 depositDigest = createSingleDepositDigest(sender, inputToken, inputAmount, nDays, poolTokens, goodUntil); // Revert if it's signed by the wrong address verifyDigestSignature(depositDigest, theSignature); // Check deposit amount and sync balance uint256 currentBalance = tokenBalance(inputToken); require(currentBalance - getLastBalance(inputToken) >= inputAmount, "Insufficient token deposit"); // sync the balance setBalance(inputToken, currentBalance); // OK now we're good _mintOrVesting(sender, nDays, poolTokens); emit Deposited(sender, poolTokens, nDays); } /* WITHDRAWAL FUNCTIONALITY */ /* Single asset withdrawal functionality */ function withdrawSingleAsset(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil, Signature calldata theSignature) external override receivedInTime(goodUntil) { /* CHECKS */ require(msg.sender==tokenHolder, "tokenHolder does not match msg.sender"); bool sendEthBack; if(assetAddress == CLIPPER_ETH_SIGIL) { assetAddress = WRAPPER_CONTRACT; sendEthBack = true; } bytes32 withdrawalDigest = createWithdrawalDigest(tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount, goodUntil); // Reverts if it's signed by the wrong address verifyDigestSignature(withdrawalDigest, theSignature); /* EFFECTS */ // Reverts if pool token balance is insufficient _burn(msg.sender, poolTokenAmountToBurn); // Reverts if the pool's balance of the token is insufficient decreaseBalance(assetAddress, assetAmount); /* INTERACTIONS */ if(sendEthBack) { WrapperContractInterface(WRAPPER_CONTRACT).withdraw(assetAmount); safeEthSend(msg.sender, assetAmount); } else { IERC20(assetAddress).safeTransfer(msg.sender, assetAmount); } emit AssetWithdrawn(tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount); } /* SWAP Functionality */ // Don't need a separate "transmit" function here since it's already payable // Gas optimized - no balance checks // Don't need fairOutput checks since exactly inputAmount is wrapped function sellEthForToken(address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external override receivedInTime(goodUntil) payable { /* CHECKS */ require(isToken(outputToken), "Clipper: Invalid token"); // Wrap ETH (as balance or value) as input. This will revert if insufficient balance is provided safeEthSend(WRAPPER_CONTRACT, inputAmount); // Revert if it's signed by the wrong address bytes32 digest = createSwapDigest(WRAPPER_CONTRACT, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress); verifyDigestSignature(digest, theSignature); /* EFFECTS */ increaseBalance(WRAPPER_CONTRACT, inputAmount); decreaseBalance(outputToken, outputAmount); /* INTERACTIONS */ IERC20(outputToken).safeTransfer(destinationAddress, outputAmount); emit Swapped(WRAPPER_CONTRACT, outputToken, destinationAddress, inputAmount, outputAmount, auxiliaryData); } // Mostly copied from gas-optimized swap functionality function sellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external override receivedInTime(goodUntil) { /* CHECKS */ require(isToken(inputToken), "Clipper: Invalid token"); // Revert if it's signed by the wrong address bytes32 digest = createSwapDigest(inputToken, WRAPPER_CONTRACT, inputAmount, outputAmount, goodUntil, destinationAddress); verifyDigestSignature(digest, theSignature); // Check that enough input token has been transmitted uint256 currentInputBalance = tokenBalance(inputToken); uint256 actualInput = currentInputBalance - getLastBalance(inputToken); uint256 fairOutput = calculateFairOutput(inputAmount, actualInput, outputAmount); /* EFFECTS */ setBalance(inputToken, currentInputBalance); decreaseBalance(WRAPPER_CONTRACT, fairOutput); /* INTERACTIONS */ // Unwrap and forward ETH, without sync WrapperContractInterface(WRAPPER_CONTRACT).withdraw(fairOutput); safeEthSend(destinationAddress, fairOutput); emit Swapped(inputToken, WRAPPER_CONTRACT, destinationAddress, actualInput, fairOutput, auxiliaryData); } function transmitAndDepositSingleAsset(address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) external override receivedInTime(goodUntil){ // Make sure the depositor is allowed require(isToken(inputToken), "Invalid input"); // Will revert if msg.sender has insufficient balance IERC20(inputToken).safeTransferFrom(msg.sender, address(this), inputAmount); // Check the signature bytes32 depositDigest = createSingleDepositDigest(msg.sender, inputToken, inputAmount, nDays, poolTokens, goodUntil); // Revert if it's signed by the wrong address verifyDigestSignature(depositDigest, theSignature); // sync the deposited asset increaseBalance(inputToken, inputAmount); // OK now we're good _mintOrVesting(msg.sender, nDays, poolTokens); emit Deposited(msg.sender, poolTokens, nDays); } // Gas optimized, no balance checks // No need to check fairOutput since the inputToken pull works function transmitAndSellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external override receivedInTime(goodUntil) { /* CHECKS */ require(isToken(inputToken), "Clipper: Invalid token"); // Will revert if msg.sender has insufficient balance IERC20(inputToken).safeTransferFrom(msg.sender, address(this), inputAmount); // Revert if it's signed by the wrong address bytes32 digest = createSwapDigest(inputToken, WRAPPER_CONTRACT, inputAmount, outputAmount, goodUntil, destinationAddress); verifyDigestSignature(digest, theSignature); /* EFFECTS */ increaseBalance(inputToken, inputAmount); decreaseBalance(WRAPPER_CONTRACT, outputAmount); /* INTERACTIONS */ // Unwrap and forward ETH, we've already updated the balance WrapperContractInterface(WRAPPER_CONTRACT).withdraw(outputAmount); safeEthSend(destinationAddress, outputAmount); emit Swapped(inputToken, WRAPPER_CONTRACT, destinationAddress, inputAmount, outputAmount, auxiliaryData); } // all-in-one transfer from msg.sender to destinationAddress. // Gas optimized - never checks balances // No need to check fairOutput since the inputToken pull works function transmitAndSwap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external override receivedInTime(goodUntil) { /* CHECKS */ require(isToken(inputToken) && isToken(outputToken), "Clipper: Invalid tokens"); // Will revert if msg.sender has insufficient balance IERC20(inputToken).safeTransferFrom(msg.sender, address(this), inputAmount); // Revert if it's signed by the wrong address bytes32 digest = createSwapDigest(inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress); verifyDigestSignature(digest, theSignature); /* EFFECTS */ increaseBalance(inputToken, inputAmount); decreaseBalance(outputToken, outputAmount); /* INTERACTIONS */ IERC20(outputToken).safeTransfer(destinationAddress, outputAmount); emit Swapped(inputToken, outputToken, destinationAddress, inputAmount, outputAmount, auxiliaryData); } // Gas optimized - single token balance check for input // output is dead-reckoned and scaled back if necessary function swap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) public override receivedInTime(goodUntil) { /* CHECKS */ require(isToken(inputToken) && isToken(outputToken), "Clipper: Invalid tokens"); { // Avoid stack too deep // Revert if it's signed by the wrong address bytes32 digest = createSwapDigest(inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress); verifyDigestSignature(digest, theSignature); } // Get fair output value uint256 currentInputBalance = tokenBalance(inputToken); uint256 actualInput = currentInputBalance-getLastBalance(inputToken); uint256 fairOutput = calculateFairOutput(inputAmount, actualInput, outputAmount); /* EFFECTS */ setBalance(inputToken, currentInputBalance); decreaseBalance(outputToken, fairOutput); /* INTERACTIONS */ IERC20(outputToken).safeTransfer(destinationAddress, fairOutput); emit Swapped(inputToken, outputToken, destinationAddress, actualInput, fairOutput, auxiliaryData); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.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 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' 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) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _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 require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/structs/EnumerableSet.sol) pragma solidity ^0.8.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastvalue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastvalue; // Update the index for the moved value set._indexes[lastvalue] = valueIndex; // Replace lastvalue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // Bytes32Set struct Bytes32Set { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _add(set._inner, value); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) { return _remove(set._inner, value); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) { return _contains(set._inner, value); } /** * @dev Returns the number of values in the set. O(1). */ function length(Bytes32Set storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) { return _at(set._inner, index); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(Bytes32Set storage set) internal view returns (bytes32[] memory) { return _values(set._inner); } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values on the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeCast.sol) pragma solidity ^0.8.0; /** * @dev Wrappers over Solidity's uintXX/intXX casting operators with added overflow * checks. * * Downcasting from uint256/int256 in Solidity does not revert on overflow. This can * easily result in undesired exploitation or bugs, since developers usually * assume that overflows raise errors. `SafeCast` restores this intuition by * reverting the transaction when such an operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. * * Can be combined with {SafeMath} and {SignedSafeMath} to extend it to smaller types, by performing * all math on `uint256` and `int256` and then downcasting. */ library SafeCast { /** * @dev Returns the downcasted uint224 from uint256, reverting on * overflow (when the input is greater than largest uint224). * * Counterpart to Solidity's `uint224` operator. * * Requirements: * * - input must fit into 224 bits */ function toUint224(uint256 value) internal pure returns (uint224) { require(value <= type(uint224).max, "SafeCast: value doesn't fit in 224 bits"); return uint224(value); } /** * @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 <= type(uint128).max, "SafeCast: value doesn't fit in 128 bits"); return uint128(value); } /** * @dev Returns the downcasted uint96 from uint256, reverting on * overflow (when the input is greater than largest uint96). * * Counterpart to Solidity's `uint96` operator. * * Requirements: * * - input must fit into 96 bits */ function toUint96(uint256 value) internal pure returns (uint96) { require(value <= type(uint96).max, "SafeCast: value doesn't fit in 96 bits"); return uint96(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 <= type(uint64).max, "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 <= type(uint32).max, "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 <= type(uint16).max, "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 <= type(uint8).max, "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 >= type(int128).min && value <= type(int128).max, "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 >= type(int64).min && value <= type(int64).max, "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 >= type(int32).min && value <= type(int32).max, "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 >= type(int16).min && value <= type(int16).max, "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 >= type(int8).min && value <= type(int8).max, "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) { // Note: Unsafe cast below is okay because `type(int256).max` is guaranteed to be positive require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } }
//SPDX-License-Identifier: Copyright 2021 Shipyard Software, Inc. pragma solidity ^0.8.0; interface WrapperContractInterface { function withdraw(uint256 amount) external; }
//SPDX-License-Identifier: Copyright 2021 Shipyard Software, Inc. pragma solidity ^0.8.0; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/cryptography/ECDSA.sol"; import "@openzeppelin/contracts/utils/structs/EnumerableSet.sol"; import "./interfaces/WrapperContractInterface.sol"; abstract contract ClipperCommonExchange is ERC20, ReentrancyGuard { using SafeERC20 for IERC20; using EnumerableSet for EnumerableSet.AddressSet; struct Signature { uint8 v; bytes32 r; bytes32 s; } struct Deposit { uint lockedUntil; uint256 poolTokenAmount; } uint256 constant ONE_IN_TEN_DECIMALS = 1e10; // Allow for inputs up to 0.5% more than quoted values to have scaled output. // Inputs higher than this value just get 0.5% more. uint256 constant MAX_ALLOWED_OVER_TEN_DECIMALS = ONE_IN_TEN_DECIMALS+50*1e6; // Signer is passed in on construction, hence "immutable" address immutable public DESIGNATED_SIGNER; address immutable public WRAPPER_CONTRACT; // Constant values for EIP-712 signing bytes32 immutable DOMAIN_SEPARATOR; string constant VERSION = '1.0.0'; string constant NAME = 'ClipperDirect'; address constant CLIPPER_ETH_SIGIL = address(0); bytes32 constant EIP712DOMAIN_TYPEHASH = keccak256( abi.encodePacked("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)") ); bytes32 constant OFFERSTRUCT_TYPEHASH = keccak256( abi.encodePacked("OfferStruct(address input_token,address output_token,uint256 input_amount,uint256 output_amount,uint256 good_until,address destination_address)") ); bytes32 constant DEPOSITSTRUCT_TYPEHASH = keccak256( abi.encodePacked("DepositStruct(address sender,uint256[] deposit_amounts,uint256 days_locked,uint256 pool_tokens,uint256 good_until)") ); bytes32 constant SINGLEDEPOSITSTRUCT_TYPEHASH = keccak256( abi.encodePacked("SingleDepositStruct(address sender,address token,uint256 amount,uint256 days_locked,uint256 pool_tokens,uint256 good_until)") ); bytes32 constant WITHDRAWALSTRUCT_TYPEHASH = keccak256( abi.encodePacked("WithdrawalStruct(address token_holder,uint256 pool_token_amount_to_burn,address asset_address,uint256 asset_amount,uint256 good_until)") ); // Assets // lastBalances: used for "transmit then swap then sync" modality // assetSet is a set of keys that have lastBalances mapping(address => uint256) public lastBalances; EnumerableSet.AddressSet assetSet; // Allows lookup mapping(address => Deposit) public vestingDeposits; // Events event Swapped( address indexed inAsset, address indexed outAsset, address indexed recipient, uint256 inAmount, uint256 outAmount, bytes auxiliaryData ); event Deposited( address indexed depositor, uint256 poolTokens, uint256 nDays ); event Withdrawn( address indexed withdrawer, uint256 poolTokens, uint256 fractionOfPool ); event AssetWithdrawn( address indexed withdrawer, uint256 poolTokens, address indexed assetAddress, uint256 assetAmount ); // Take in the designated signer address and the token list constructor(address theSigner, address theWrapper, address[] memory tokens) ERC20("ClipperDirect Pool Token", "CLPRDRPL") { DESIGNATED_SIGNER = theSigner; uint i; uint n = tokens.length; while(i < n) { assetSet.add(tokens[i]); i++; } DOMAIN_SEPARATOR = createDomainSeparator(NAME, VERSION, address(this)); WRAPPER_CONTRACT = theWrapper; } // Allows the receipt of ETH directly receive() external payable { } function safeEthSend(address recipient, uint256 howMuch) internal { (bool success, ) = payable(recipient).call{value: howMuch}(""); require(success, "Call with value failed"); } /* TOKEN AND ASSET FUNCTIONS */ function nTokens() public view returns (uint) { return assetSet.length(); } function tokenAt(uint i) public view returns (address) { return assetSet.at(i); } function isToken(address token) public view returns (bool) { return assetSet.contains(token); } function _sync(address token) internal virtual; // Can be overridden as in Caravel function getLastBalance(address token) public view virtual returns (uint256) { return lastBalances[token]; } function allTokensBalance() external view returns (uint256[] memory, address[] memory, uint256){ uint n = nTokens(); uint256[] memory balances = new uint256[](n); address[] memory tokens = new address[](n); for (uint i = 0; i < n; i++) { address token = tokenAt(i); balances[i] = getLastBalance(token); tokens[i] = token; } return (balances, tokens, totalSupply()); } // nonReentrant asset transfer function transferAsset(address token, address recipient, uint256 amount) internal nonReentrant { IERC20(token).safeTransfer(recipient, amount); // We never want to transfer an asset without sync'ing _sync(token); } function calculateFairOutput(uint256 statedInput, uint256 actualInput, uint256 statedOutput) internal pure returns (uint256) { if(actualInput == statedInput) { return statedOutput; } else { uint256 theFraction = (ONE_IN_TEN_DECIMALS*actualInput)/statedInput; if(theFraction >= MAX_ALLOWED_OVER_TEN_DECIMALS) { return (MAX_ALLOWED_OVER_TEN_DECIMALS*statedOutput)/ONE_IN_TEN_DECIMALS; } else { return (theFraction*statedOutput)/ONE_IN_TEN_DECIMALS; } } } /* DEPOSIT FUNCTIONALITY */ function canUnlockDeposit(address theAddress) public view returns (bool) { Deposit storage myDeposit = vestingDeposits[theAddress]; return (myDeposit.poolTokenAmount > 0) && (myDeposit.lockedUntil <= block.timestamp); } function unlockDeposit() external returns (uint256 poolTokens) { require(canUnlockDeposit(msg.sender), "ClipperDirect: Deposit cannot be unlocked"); poolTokens = vestingDeposits[msg.sender].poolTokenAmount; delete vestingDeposits[msg.sender]; _transfer(address(this), msg.sender, poolTokens); } function _mintOrVesting(address sender, uint256 nDays, uint256 poolTokens) internal { if(nDays==0){ // No vesting period required - mint tokens directly for the user _mint(sender, poolTokens); } else { // Set up a vesting deposit for the sender _createVestingDeposit(sender, nDays, poolTokens); } } // Mints tokens to this contract to hold for vesting function _createVestingDeposit(address theAddress, uint256 nDays, uint256 numPoolTokens) internal { require(nDays > 0, "ClipperDirect: Cannot create vesting deposit without positive vesting period"); require(vestingDeposits[theAddress].poolTokenAmount==0, "ClipperDirect: Depositor already has an active deposit"); Deposit memory myDeposit = Deposit({ lockedUntil: block.timestamp + (nDays * 1 days), poolTokenAmount: numPoolTokens }); vestingDeposits[theAddress] = myDeposit; _mint(address(this), numPoolTokens); } function transmitAndDeposit(uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) external { uint i=0; uint n = depositAmounts.length; while(i < n){ uint256 transferAmount = depositAmounts[i]; if(transferAmount > 0){ IERC20(tokenAt(i)).safeTransferFrom(msg.sender, address(this), transferAmount); } i++; } deposit(msg.sender, depositAmounts, nDays, poolTokens, goodUntil, theSignature); } function transmitAndDepositSingleAsset(address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) external virtual; function deposit(address sender, uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable virtual; function depositSingleAsset(address sender, address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil, Signature calldata theSignature) public payable virtual; /* WITHDRAWAL FUNCTIONALITY */ function _proportionalWithdrawal(uint256 myFraction) internal { uint256 toTransfer; uint i; uint n = nTokens(); while(i < n) { address theToken = tokenAt(i); toTransfer = (myFraction*getLastBalance(theToken)) / ONE_IN_TEN_DECIMALS; // syncs done automatically on transfer transferAsset(theToken, msg.sender, toTransfer); i++; } } function burnToWithdraw(uint256 amount) external { // Capture the fraction first, before burning uint256 theFractionBaseTen = (ONE_IN_TEN_DECIMALS*amount)/totalSupply(); // Reverts if balance is insufficient _burn(msg.sender, amount); _proportionalWithdrawal(theFractionBaseTen); emit Withdrawn(msg.sender, amount, theFractionBaseTen); } function withdrawSingleAsset(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil, Signature calldata theSignature) external virtual; /* SWAP Functionality: Virtual */ function sellEthForToken(address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external payable virtual; function sellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function transmitAndSellTokenForEth(address inputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function transmitAndSwap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) external virtual; function swap(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress, Signature calldata theSignature, bytes calldata auxiliaryData) public virtual; /* SIGNING Functionality */ function createDomainSeparator(string memory name, string memory version, address theSigner) internal view returns (bytes32) { return keccak256(abi.encode( EIP712DOMAIN_TYPEHASH, keccak256(abi.encodePacked(name)), keccak256(abi.encodePacked(version)), uint256(block.chainid), theSigner )); } function hashInputOffer(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress) internal pure returns (bytes32) { return keccak256(abi.encode( OFFERSTRUCT_TYPEHASH, inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress )); } function hashDeposit(address sender, uint256[] calldata depositAmounts, uint256 daysLocked, uint256 poolTokens, uint256 goodUntil) internal pure returns (bytes32) { bytes32 depositAmountsHash = keccak256(abi.encodePacked(depositAmounts)); return keccak256(abi.encode( DEPOSITSTRUCT_TYPEHASH, sender, depositAmountsHash, daysLocked, poolTokens, goodUntil )); } function hashSingleDeposit(address sender, address inputToken, uint256 inputAmount, uint256 daysLocked, uint256 poolTokens, uint256 goodUntil) internal pure returns (bytes32) { return keccak256(abi.encode( SINGLEDEPOSITSTRUCT_TYPEHASH, sender, inputToken, inputAmount, daysLocked, poolTokens, goodUntil )); } function hashWithdrawal(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil) internal pure returns (bytes32) { return keccak256(abi.encode( WITHDRAWALSTRUCT_TYPEHASH, tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount, goodUntil )); } function createSwapDigest(address inputToken, address outputToken, uint256 inputAmount, uint256 outputAmount, uint256 goodUntil, address destinationAddress) internal view returns (bytes32 digest){ bytes32 hashedInput = hashInputOffer(inputToken, outputToken, inputAmount, outputAmount, goodUntil, destinationAddress); digest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createDepositDigest(address sender, uint256[] calldata depositAmounts, uint256 nDays, uint256 poolTokens, uint256 goodUntil) internal view returns (bytes32 depositDigest){ bytes32 hashedInput = hashDeposit(sender, depositAmounts, nDays, poolTokens, goodUntil); depositDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createSingleDepositDigest(address sender, address inputToken, uint256 inputAmount, uint256 nDays, uint256 poolTokens, uint256 goodUntil) internal view returns (bytes32 depositDigest){ bytes32 hashedInput = hashSingleDeposit(sender, inputToken, inputAmount, nDays, poolTokens, goodUntil); depositDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function createWithdrawalDigest(address tokenHolder, uint256 poolTokenAmountToBurn, address assetAddress, uint256 assetAmount, uint256 goodUntil) internal view returns (bytes32 withdrawalDigest){ bytes32 hashedInput = hashWithdrawal(tokenHolder, poolTokenAmountToBurn, assetAddress, assetAmount, goodUntil); withdrawalDigest = ECDSA.toTypedDataHash(DOMAIN_SEPARATOR, hashedInput); } function verifyDigestSignature(bytes32 theDigest, Signature calldata theSignature) internal view { address signingAddress = ecrecover(theDigest, theSignature.v, theSignature.r, theSignature.s); require(signingAddress==DESIGNATED_SIGNER, "Message signed by incorrect address"); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _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 making 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.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 Contracts guidelines: functions revert * instead 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, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override 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 this function is * overridden; * * 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 virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual 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); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This 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); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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: * * - `account` 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 += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(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); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @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 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 {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been 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 _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/cryptography/ECDSA.sol) pragma solidity ^0.8.0; import "../Strings.sol"; /** * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations. * * These functions can be used to verify that a message was signed by the holder * of the private keys of a given address. */ library ECDSA { enum RecoverError { NoError, InvalidSignature, InvalidSignatureLength, InvalidSignatureS, InvalidSignatureV } function _throwError(RecoverError error) private pure { if (error == RecoverError.NoError) { return; // no error: do nothing } else if (error == RecoverError.InvalidSignature) { revert("ECDSA: invalid signature"); } else if (error == RecoverError.InvalidSignatureLength) { revert("ECDSA: invalid signature length"); } else if (error == RecoverError.InvalidSignatureS) { revert("ECDSA: invalid signature 's' value"); } else if (error == RecoverError.InvalidSignatureV) { revert("ECDSA: invalid signature 'v' value"); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature` or error string. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. * * Documentation for signature generation: * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js] * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers] * * _Available since v4.3._ */ function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) { // Check the signature length // - case 65: r,s,v signature (standard) // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._ if (signature.length == 65) { bytes32 r; bytes32 s; uint8 v; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) s := mload(add(signature, 0x40)) v := byte(0, mload(add(signature, 0x60))) } return tryRecover(hash, v, r, s); } else if (signature.length == 64) { bytes32 r; bytes32 vs; // ecrecover takes the signature parameters, and the only way to get them // currently is to use assembly. assembly { r := mload(add(signature, 0x20)) vs := mload(add(signature, 0x40)) } return tryRecover(hash, r, vs); } else { return (address(0), RecoverError.InvalidSignatureLength); } } /** * @dev Returns the address that signed a hashed message (`hash`) with * `signature`. This address can then be used for verification purposes. * * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures: * this function rejects them by requiring the `s` value to be in the lower * half order, and the `v` value to be either 27 or 28. * * IMPORTANT: `hash` _must_ be the result of a hash operation for the * verification to be secure: it is possible to craft signatures that * recover to arbitrary addresses for non-hashed data. A safe way to ensure * this is by receiving a hash of the original message (which may otherwise * be too long), and then calling {toEthSignedMessageHash} on it. */ function recover(bytes32 hash, bytes memory signature) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, signature); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately. * * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures] * * _Available since v4.3._ */ function tryRecover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address, RecoverError) { bytes32 s; uint8 v; assembly { s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff) v := add(shr(255, vs), 27) } return tryRecover(hash, v, r, s); } /** * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately. * * _Available since v4.2._ */ function recover( bytes32 hash, bytes32 r, bytes32 vs ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, r, vs); _throwError(error); return recovered; } /** * @dev Overload of {ECDSA-tryRecover} that receives the `v`, * `r` and `s` signature fields separately. * * _Available since v4.3._ */ function tryRecover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address, RecoverError) { // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most // signatures from current libraries generate a unique signature with an s-value in the lower half order. // // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept // these malleable signatures as well. if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) { return (address(0), RecoverError.InvalidSignatureS); } if (v != 27 && v != 28) { return (address(0), RecoverError.InvalidSignatureV); } // If the signature is valid (and not malleable), return the signer address address signer = ecrecover(hash, v, r, s); if (signer == address(0)) { return (address(0), RecoverError.InvalidSignature); } return (signer, RecoverError.NoError); } /** * @dev Overload of {ECDSA-recover} that receives the `v`, * `r` and `s` signature fields separately. */ function recover( bytes32 hash, uint8 v, bytes32 r, bytes32 s ) internal pure returns (address) { (address recovered, RecoverError error) = tryRecover(hash, v, r, s); _throwError(error); return recovered; } /** * @dev Returns an Ethereum Signed Message, created from a `hash`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) { // 32 is the length in bytes of hash, // enforced by the type signature above return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash)); } /** * @dev Returns an Ethereum Signed Message, created from `s`. This * produces hash corresponding to the one signed with the * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`] * JSON-RPC method as part of EIP-191. * * See {recover}. */ function toEthSignedMessageHash(bytes memory s) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n", Strings.toString(s.length), s)); } /** * @dev Returns an Ethereum Signed Typed Data, created from a * `domainSeparator` and a `structHash`. This produces hash corresponding * to the one signed with the * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`] * JSON-RPC method as part of EIP-712. * * See {recover}. */ function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) { return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"theSigner","type":"address"},{"internalType":"address","name":"theWrapper","type":"address"},{"internalType":"address[]","name":"tokens","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"uint256","name":"poolTokens","type":"uint256"},{"indexed":true,"internalType":"address","name":"assetAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"assetAmount","type":"uint256"}],"name":"AssetWithdrawn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256","name":"poolTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"nDays","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"inAsset","type":"address"},{"indexed":true,"internalType":"address","name":"outAsset","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"inAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"outAmount","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"Swapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"uint256","name":"poolTokens","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"fractionOfPool","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"DESIGNATED_SIGNER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WRAPPER_CONTRACT","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"addAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"allTokensBalance","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"address[]","name":"","type":"address[]"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnToWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"theAddress","type":"address"}],"name":"canUnlockDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256[]","name":"depositAmounts","type":"uint256[]"},{"internalType":"uint256","name":"nDays","type":"uint256"},{"internalType":"uint256","name":"poolTokens","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"nDays","type":"uint256"},{"internalType":"uint256","name":"poolTokens","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"depositSingleAsset","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"getLastBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"isToken","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lastBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"internalType":"address","name":"destinationAddress","type":"address"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"},{"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"sellEthForToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"internalType":"address","name":"destinationAddress","type":"address"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"},{"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"sellTokenForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"internalType":"address","name":"destinationAddress","type":"address"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"},{"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"swap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"i","type":"uint256"}],"name":"tokenAt","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"depositAmounts","type":"uint256[]"},{"internalType":"uint256","name":"nDays","type":"uint256"},{"internalType":"uint256","name":"poolTokens","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"transmitAndDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"nDays","type":"uint256"},{"internalType":"uint256","name":"poolTokens","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"transmitAndDepositSingleAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"internalType":"address","name":"destinationAddress","type":"address"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"},{"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"transmitAndSellTokenForEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"inputToken","type":"address"},{"internalType":"address","name":"outputToken","type":"address"},{"internalType":"uint256","name":"inputAmount","type":"uint256"},{"internalType":"uint256","name":"outputAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"internalType":"address","name":"destinationAddress","type":"address"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"},{"internalType":"bytes","name":"auxiliaryData","type":"bytes"}],"name":"transmitAndSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unlockDeposit","outputs":[{"internalType":"uint256","name":"poolTokens","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"vestingDeposits","outputs":[{"internalType":"uint256","name":"lockedUntil","type":"uint256"},{"internalType":"uint256","name":"poolTokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenHolder","type":"address"},{"internalType":"uint256","name":"poolTokenAmountToBurn","type":"uint256"},{"internalType":"address","name":"assetAddress","type":"address"},{"internalType":"uint256","name":"assetAmount","type":"uint256"},{"internalType":"uint256","name":"goodUntil","type":"uint256"},{"components":[{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"internalType":"struct ClipperCommonExchange.Signature","name":"theSignature","type":"tuple"}],"name":"withdrawSingleAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60e06040523480156200001157600080fd5b506040516200409038038062004090833981016040819052620000349162000471565b604080518082018252601881527f436c697070657244697265637420506f6f6c20546f6b656e000000000000000060208083019182528351808501909452600884526710d314149114941360c21b90840152815186938693869390926200009e91600391620003ae565b508051620000b4906004906020840190620003ae565b50506001600555506001600160601b0319606084901b1660805280516000905b808210156200013657620001208383815181106200010257634e487b7160e01b600052603260045260246000fd5b60200260200101516007620001bd60201b62001c131790919060201c565b50816200012d81620005e6565b925050620000d4565b6200018b6040518060400160405280600d81526020016c10db1a5c1c195c911a5c9958dd609a1b815250604051806040016040528060058152602001640312e302e360dc1b81525030620001dd60201b60201c565b60c05250505060601b6001600160601b03191660a05250620001b4620001ae3390565b6200030a565b50505062000624565b6000620001d4836001600160a01b0384166200035c565b90505b92915050565b600060405160200162000254907f454950373132446f6d61696e28737472696e67206e616d652c737472696e672081527f76657273696f6e2c75696e7432353620636861696e49642c6164647265737320602082015271766572696679696e67436f6e74726163742960701b604082015260520190565b60405160208183030381529060405280519060200120846040516020016200027d91906200056d565b6040516020818303038152906040528051906020012084604051602001620002a691906200056d565b60408051601f1981840301815282825280516020918201209083019490945281019190915260608101919091524660808201526001600160a01b03831660a082015260c0016040516020818303038152906040528051906020012090509392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000818152600183016020526040812054620003a557508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001d7565b506000620001d7565b828054620003bc90620005a9565b90600052602060002090601f016020900481019282620003e057600085556200042b565b82601f10620003fb57805160ff19168380011785556200042b565b828001600101855582156200042b579182015b828111156200042b5782518255916020019190600101906200040e565b50620004399291506200043d565b5090565b5b808211156200043957600081556001016200043e565b80516001600160a01b03811681146200046c57600080fd5b919050565b60008060006060848603121562000486578283fd5b620004918462000454565b92506020620004a281860162000454565b60408601519093506001600160401b0380821115620004bf578384fd5b818701915087601f830112620004d3578384fd5b815181811115620004e857620004e86200060e565b8060051b604051601f19603f830116810181811085821117156200051057620005106200060e565b604052828152858101935084860182860187018c10156200052f578788fd5b8795505b838610156200055c57620005478162000454565b85526001959095019493860193860162000533565b508096505050505050509250925092565b60008251815b818110156200058f576020818601810151858301520162000573565b818111156200059e5782828501525b509190910192915050565b600181811c90821680620005be57607f821691505b60208210811415620005e057634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200060757634e487b7160e01b81526011600452602481fd5b5060010190565b634e487b7160e01b600052604160045260246000fd5b60805160601c60a05160601c60c0516139b8620006d86000396000818161200101526125cd01526000818161048801528181610a7301528181610a9f01528181610ad901528181610b320152818161109b015281816111110152818161114c015281816111c601528181611247015281816114c2015281816115310152818161167b015281816119fe01528181611a4101528181611a7c0152611af601526000818161057001526120a601526139b86000f3fe60806040526004361061021e5760003560e01c80635250d7301161012357806395d89b41116100ab578063c72da66a1161006f578063c72da66a14610670578063dd62ed3e14610690578063eb1c6453146106d6578063ecc7633d146106f6578063f2fde38b1461072357600080fd5b806395d89b41146105b2578063a457c2d7146105c7578063a9059cbb146105e7578063c0d5ebfd14610607578063c325a5491461062757600080fd5b8063715018a6116100f2578063715018a61461051857806387e08c251461052d5780638da5cb5b146105405780638dda8f3f1461055e57806392a91a3a1461059257600080fd5b80635250d730146104635780635aecdda51461047657806362fb4e01146104c257806370a08231146104e257600080fd5b806329d0c8fc116101a6578063368dfc1811610175578063368dfc18146103ce578063377a368c146103ee57806339509351146104035780633b26e4eb146104235780634cb6864c1461044357600080fd5b806329d0c8fc146103525780632b651a6c14610372578063313ce5671461039257806334cb3d7f146103ae57600080fd5b80631b6a8759116101ed5780631b6a8759146102c45780631dc6f5a5146102d957806323b872dd146102fd57806327a9b4241461031d578063298410e51461033257600080fd5b806306fdde031461022a578063095ea7b31461025557806318160ddd1461028557806319f37361146102a457600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610743565b60405161024c9190613763565b60405180910390f35b34801561026157600080fd5b50610275610270366004613455565b6107d5565b604051901515815260200161024c565b34801561029157600080fd5b506002545b60405190815260200161024c565b3480156102b057600080fd5b506102756102bf36600461324a565b6107ec565b3480156102d057600080fd5b506102966107f9565b3480156102e557600080fd5b506102ee61080a565b60405161024c939291906136d7565b34801561030957600080fd5b50610275610318366004613296565b610977565b61033061032b3660046134de565b610a28565b005b34801561033e57600080fd5b5061033061034d36600461324a565b610b91565b34801561035e57600080fd5b5061033061036d3660046135be565b610bd3565b34801561037e57600080fd5b5061033061038d3660046132d1565b610c5f565b34801561039e57600080fd5b506040516012815260200161024c565b3480156103ba57600080fd5b506102966103c936600461324a565b610daf565b3480156103da57600080fd5b506103306103e9366004613640565b610dd3565b3480156103fa57600080fd5b50610296610e4b565b34801561040f57600080fd5b5061027561041e366004613455565b610ee2565b34801561042f57600080fd5b5061033061043e3660046132d1565b610f1e565b34801561044f57600080fd5b5061033061045e3660046134de565b61104d565b6103306104713660046133e2565b61121b565b34801561048257600080fd5b506104aa7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200161024c565b3480156104ce57600080fd5b506103306104dd36600461347e565b611428565b3480156104ee57600080fd5b506102966104fd36600461324a565b6001600160a01b031660009081526020819052604090205490565b34801561052457600080fd5b50610330611619565b61033061053b366004613377565b61164f565b34801561054c57600080fd5b50600a546001600160a01b03166104aa565b34801561056a57600080fd5b506104aa7f000000000000000000000000000000000000000000000000000000000000000081565b34801561059e57600080fd5b506104aa6105ad366004613640565b6117e8565b3480156105be57600080fd5b5061023f6117f5565b3480156105d357600080fd5b506102756105e2366004613455565b611804565b3480156105f357600080fd5b50610275610602366004613455565b61189d565b34801561061357600080fd5b50610330610622366004613571565b6118aa565b34801561063357600080fd5b5061065b61064236600461324a565b6009602052600090815260409020805460019091015482565b6040805192835260208301919091520161024c565b34801561067c57600080fd5b5061033061068b3660046134de565b61199b565b34801561069c57600080fd5b506102966106ab366004613264565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e257600080fd5b506102756106f136600461324a565b611b4b565b34801561070257600080fd5b5061029661071136600461324a565b60066020526000908152604090205481565b34801561072f57600080fd5b5061033061073e36600461324a565b611b7b565b606060038054610752906138fc565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906138fc565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e2338484611c28565b5060015b92915050565b60006107e6600783611d4c565b60006108056007611d6e565b905090565b6060806000806108186107f9565b905060008167ffffffffffffffff81111561084357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561086c578160200160208202803683370190505b50905060008267ffffffffffffffff81111561089857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108c1578160200160208202803683370190505b50905060005b8381101561095d5760006108da826117e8565b90506108e581610daf565b84838151811061090557634e487b7160e01b600052603260045260246000fd5b6020026020010181815250508083838151811061093257634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152508061095581613931565b9150506108c7565b50818161096960025490565b955095509550505050909192565b6000610984848484611d78565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a0e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a1b8533858403611c28565b60019150505b9392505050565b8480421115610a495760405162461bcd60e51b8152600401610a05906137cb565b610a52896107ec565b610a6e5760405162461bcd60e51b8152600401610a05906137f5565b610a987f000000000000000000000000000000000000000000000000000000000000000089611f48565b6000610ac87f00000000000000000000000000000000000000000000000000000000000000008b8b8b8b8b611fe9565b9050610ad48186612032565b610afe7f00000000000000000000000000000000000000000000000000000000000000008a612131565b610b088a89612177565b610b1c6001600160a01b038b16878a612196565b856001600160a01b03168a6001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03166000805160206139638339815191528c8c8989604051610b7d9493929190613825565b60405180910390a450505050505050505050565b600a546001600160a01b03163314610bbb5760405162461bcd60e51b8152600401610a0590613796565b610bc6600782611c13565b50610bd0816121f9565b50565b6000855b80821015610c46576000888884818110610c0157634e487b7160e01b600052603260045260246000fd5b9050602002013590506000811115610c3357610c33333083610c22876117e8565b6001600160a01b031692919061220b565b82610c3d81613931565b93505050610bd7565b610c553389898989898961121b565b5050505050505050565b8480421115610c805760405162461bcd60e51b8152600401610a05906137cb565b610c898a6107ec565b8015610c995750610c99896107ec565b610cdf5760405162461bcd60e51b8152602060048201526017602482015276436c69707065723a20496e76616c696420746f6b656e7360481b6044820152606401610a05565b6000610cef8b8b8b8b8b8b611fe9565b9050610cfb8186612032565b506000610d078b612243565b90506000610d148c610daf565b610d1e90836138b9565b90506000610d2d8b838c612313565b9050610d398d8461239c565b610d438c82612177565b610d576001600160a01b038d168983612196565b876001600160a01b03168c6001600160a01b03168e6001600160a01b031660008051602061396383398151915285858b8b604051610d989493929190613825565b60405180910390a450505050505050505050505050565b6001600160a01b03166000908152600660205260409020546001600160e01b031690565b6000610dde60025490565b610ded836402540be40061389a565b610df7919061387a565b9050610e0333836123d5565b610e0c81612523565b604080518381526020810183905233917f92ccf450a286a957af52509bc1c9939d1a6a481783e142e41e2499f0bb66ebc6910160405180910390a25050565b6000610e5633611b4b565b610eb45760405162461bcd60e51b815260206004820152602960248201527f436c69707065724469726563743a204465706f7369742063616e6e6f74206265604482015268081d5b9b1bd8dad95960ba1b6064820152608401610a05565b50336000818152600960205260408120600181018054918390559190915590610edf90309083611d78565b90565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e2918590610f19908690613862565b611c28565b8480421115610f3f5760405162461bcd60e51b8152600401610a05906137cb565b610f488a6107ec565b8015610f585750610f58896107ec565b610f9e5760405162461bcd60e51b8152602060048201526017602482015276436c69707065723a20496e76616c696420746f6b656e7360481b6044820152606401610a05565b610fb36001600160a01b038b1633308b61220b565b6000610fc38b8b8b8b8b8b611fe9565b9050610fcf8186612032565b610fd98b8a612131565b610fe38a89612177565b610ff76001600160a01b038b16878a612196565b856001600160a01b03168a6001600160a01b03168c6001600160a01b03166000805160206139638339815191528c8c89896040516110389493929190613825565b60405180910390a45050505050505050505050565b848042111561106e5760405162461bcd60e51b8152600401610a05906137cb565b611077896107ec565b6110935760405162461bcd60e51b8152600401610a05906137f5565b60006110c38a7f00000000000000000000000000000000000000000000000000000000000000008b8b8b8b611fe9565b90506110cf8186612032565b60006110da8b612243565b905060006110e78c610daf565b6110f190836138b9565b905060006111008c838d612313565b905061110c8d8461239c565b6111367f000000000000000000000000000000000000000000000000000000000000000082612177565b604051632e1a7d4d60e01b8152600481018290527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561119857600080fd5b505af11580156111ac573d6000803e3d6000fd5b505050506111ba8982611f48565b886001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168e6001600160a01b031660008051602061396383398151915285858c8c604051610d989493929190613825565b818042111561123c5760405162461bcd60e51b8152600401610a05906137cb565b341561126c5761126c7f000000000000000000000000000000000000000000000000000000000000000034611f48565b336001600160a01b038916146112d45760405162461bcd60e51b815260206004820152602760248201527f4c69737465642073656e64657220646f6573206e6f74206d61746368206d73676044820152661739b2b73232b960c91b6064820152608401610a05565b60006112e489898989898961258b565b90506112f08184612032565b6000875b808210156113cc5760008a8a8481811061131e57634e487b7160e01b600052603260045260246000fd5b90506020020135905060008111156113b957600061133b846117e8565b9050600061134882612243565b90508261135483610daf565b61135e90836138b9565b10156113ac5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e206465706f7369740000000000006044820152606401610a05565b6113b6828261239c565b50505b826113c381613931565b935050506112f4565b6113d78b898961259c565b60408051888152602081018a90526001600160a01b038d16917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a25050505050505050505050565b81804211156114495760405162461bcd60e51b8152600401610a05906137cb565b336001600160a01b038816146114af5760405162461bcd60e51b815260206004820152602560248201527f746f6b656e486f6c64657220646f6573206e6f74206d61746368206d73672e7360448201526432b73232b960d91b6064820152608401610a05565b60006001600160a01b0386166114e657507f0000000000000000000000000000000000000000000000000000000000000000945060015b60006114f589898989896125b6565b90506115018185612032565b61150b33896123d5565b6115158787612177565b81156115a457604051632e1a7d4d60e01b8152600481018790527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561157d57600080fd5b505af1158015611591573d6000803e3d6000fd5b5050505061159f3387611f48565b6115b8565b6115b86001600160a01b0388163388612196565b866001600160a01b0316896001600160a01b03167f41e79959bad1d45680578f8a544fb5af76d72b04090e65a51b4d0eaab959a9ab8a89604051611606929190918252602082015260400190565b60405180910390a3505050505050505050565b600a546001600160a01b031633146116435760405162461bcd60e51b8152600401610a0590613796565b61164d60006125fd565b565b81804211156116705760405162461bcd60e51b8152600401610a05906137cb565b34156116a0576116a07f000000000000000000000000000000000000000000000000000000000000000034611f48565b336001600160a01b0389161480156116bc57506116bc876107ec565b6116f85760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b6044820152606401610a05565b600061170889898989898961264f565b90506117148184612032565b600061171f89612243565b90508761172b8a610daf565b61173590836138b9565b10156117835760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e206465706f7369740000000000006044820152606401610a05565b61178d898261239c565b6117988a888861259c565b60408051878152602081018990526001600160a01b038c16917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a250505050505050505050565b60006107e6600783612660565b606060048054610752906138fc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156118865760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a05565b6118933385858403611c28565b5060019392505050565b60006107e2338484611d78565b81804211156118cb5760405162461bcd60e51b8152600401610a05906137cb565b6118d4876107ec565b6119105760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b6044820152606401610a05565b6119256001600160a01b03881633308961220b565b600061193533898989898961264f565b90506119418184612032565b61194b8888612131565b61195633878761259c565b604080518681526020810188905233917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a25050505050505050565b84804211156119bc5760405162461bcd60e51b8152600401610a05906137cb565b6119c5896107ec565b6119e15760405162461bcd60e51b8152600401610a05906137f5565b6119f66001600160a01b038a1633308b61220b565b6000611a268a7f00000000000000000000000000000000000000000000000000000000000000008b8b8b8b611fe9565b9050611a328186612032565b611a3c8a8a612131565b611a667f000000000000000000000000000000000000000000000000000000000000000089612177565b604051632e1a7d4d60e01b8152600481018990527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031690632e1a7d4d90602401600060405180830381600087803b158015611ac857600080fd5b505af1158015611adc573d6000803e3d6000fd5b50505050611aea8689611f48565b856001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03168b6001600160a01b03166000805160206139638339815191528c8c8989604051610b7d9493929190613825565b6001600160a01b0381166000908152600960205260408120600181015415801590610a2157505442101592915050565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610a0590613796565b6001600160a01b038116611c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a05565b610bd0816125fd565b6000610a21836001600160a01b03841661266c565b6001600160a01b038316611c8a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a05565b6001600160a01b038216611ceb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a05565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03811660009081526001830160205260408120541515610a21565b60006107e6825490565b6001600160a01b038316611ddc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a05565b6001600160a01b038216611e3e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a05565b6001600160a01b03831660009081526020819052604090205481811015611eb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a05565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611eed908490613862565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f3991815260200190565b60405180910390a35b50505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f95576040519150601f19603f3d011682016040523d82523d6000602084013e611f9a565b606091505b5050905080611fe45760405162461bcd60e51b815260206004820152601660248201527510d85b1b081dda5d1a081d985b1d594819985a5b195960521b6044820152606401610a05565b505050565b600080611ffa8888888888886126bb565b90506120267f0000000000000000000000000000000000000000000000000000000000000000826127f3565b98975050505050505050565b60006001836120446020850185613670565b604080516000815260208181018084529490945260ff9092168282015291850135606082015290840135608082015260a0016020604051602081039080840390855afa158015612098573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614611fe45760405162461bcd60e51b815260206004820152602360248201527f4d657373616765207369676e656420627920696e636f7272656374206164647260448201526265737360e81b6064820152608401610a05565b60008061213d84612833565b9092509050612155826121508584613862565b6128cb565b6001600160a01b03909416600090815260066020526040902093909355505050565b60008061218384612833565b90925090506121558261215085846138b9565b6040516001600160a01b038316602482015260448101829052611fe490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526128f7565b610bd08161220683612243565b61239c565b6040516001600160a01b0380851660248301528316604482015260648101829052611f429085906323b872dd60e01b906084016121c2565b604080513060248083019190915282518083039091018152604490910182526020810180516001600160e01b03166370a0823160e01b1790529051600091829182916001600160a01b0386169161229a91906136bb565b600060405180830381855afa9150503d80600081146122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b50915091508180156122ee57506020815110155b6122f757600080fd5b8080602001905181019061230b9190613658565b949350505050565b600083831415612324575080610a21565b600084612336856402540be40061389a565b612340919061387a565b90506123556402540be4006302faf080613862565b811061238c576402540be40083612370826302faf080613862565b61237a919061389a565b612384919061387a565b915050610a21565b6402540be40061237a848361389a565b60006123a783612833565b5090506123b481836128cb565b6001600160a01b039093166000908152600660205260409020929092555050565b6001600160a01b0382166124355760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a05565b6001600160a01b038216600090815260208190526040902054818110156124a95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a05565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124d89084906138b9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60008060006125306107f9565b90505b80821015611f42576000612546836117e8565b90506402540be40061255782610daf565b612561908761389a565b61256b919061387a565b93506125788133866129c9565b8261258281613931565b93505050612533565b600080611ffa888888888888612a48565b816125ab57611fe48382612b7c565b611fe4838383612c5b565b6000806125c68787878787612dcf565b90506125f27f0000000000000000000000000000000000000000000000000000000000000000826127f3565b979650505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611ffa888888888888612eec565b6000610a218383612fed565b60008181526001830160205260408120546126b3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107e6565b5060006107e6565b600060405160200161277a907f4f66666572537472756374286164647265737320696e7075745f746f6b656e2c81527f61646472657373206f75747075745f746f6b656e2c75696e7432353620696e7060208201527f75745f616d6f756e742c75696e74323536206f75747075745f616d6f756e742c60408201527f75696e7432353620676f6f645f756e74696c2c6164647265737320646573746960608201526e6e6174696f6e5f616464726573732960881b6080820152608f0190565b60408051601f198184030181528282528051602091820120908301526001600160a01b03808a169183019190915280881660608301526080820187905260a0820186905260c08201859052831660e0820152610100015b6040516020818303038152906040528051906020012090509695505050505050565b60405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6001600160a01b0381166000908152600660205260408120546001600160e01b0381169060e081901c6128663243613862565b93508063ffffffff168463ffffffff1614156128c45760405162461bcd60e51b815260206004820152601d60248201527f436c69707065723a204661696c656420747820756e697175656e6573730000006044820152606401610a05565b5050915091565b60006128d682613025565b610a21906001600160e01b03166001600160e01b031960e086901b16613862565b600061294c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130929092919063ffffffff16565b805190915015611fe4578080602001905181019061296a9190613620565b611fe45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a05565b60026005541415612a1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a05565b6002600555612a356001600160a01b0384168383612196565b612a3e836121f9565b5050600160055550565b6000808686604051602001612a5e929190613691565b604051602081830303815290604052805190602001209050604051602001612b10907f4465706f73697453747275637428616464726573732073656e6465722c75696e81527f743235365b5d206465706f7369745f616d6f756e74732c75696e74323536206460208201527f6179735f6c6f636b65642c75696e7432353620706f6f6c5f746f6b656e732c75604082015271696e7432353620676f6f645f756e74696c2960701b606082015260720190565b60408051601f198184030181528282528051602091820120908301526001600160a01b038a1690820152606081018290526080810186905260a0810185905260c0810184905260e001604051602081830303815290604052805190602001209150509695505050505050565b6001600160a01b038216612bd25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a05565b8060026000828254612be49190613862565b90915550506001600160a01b03821660009081526020819052604081208054839290612c11908490613862565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008211612ce65760405162461bcd60e51b815260206004820152604c60248201527f436c69707065724469726563743a2043616e6e6f74206372656174652076657360448201527f74696e67206465706f73697420776974686f757420706f73697469766520766560648201526b1cdd1a5b99c81c195c9a5bd960a21b608482015260a401610a05565b6001600160a01b03831660009081526009602052604090206001015415612d6e5760405162461bcd60e51b815260206004820152603660248201527f436c69707065724469726563743a204465706f7369746f7220616c7265616479604482015275081a185cc8185b881858dd1a5d994819195c1bdcda5d60521b6064820152608401610a05565b600060405180604001604052808462015180612d8a919061389a565b612d949042613862565b815260209081018490526001600160a01b0386166000908152600982526040902082518155908201516001909101559050611f423083612b7c565b6000604051602001612e85907f5769746864726177616c537472756374286164647265737320746f6b656e5f6881527f6f6c6465722c75696e7432353620706f6f6c5f746f6b656e5f616d6f756e745f60208201527f746f5f6275726e2c616464726573732061737365745f616464726573732c756960408201527f6e743235362061737365745f616d6f756e742c75696e7432353620676f6f645f606082015265756e74696c2960d01b608082015260860190565b60408051808303601f190181528282528051602091820120818401526001600160a01b039889168383015260608301979097529490961660808701525060a085019190915260c0808501919091528151808503909101815260e09093019052815191012090565b6000604051602001612f93907f53696e676c654465706f73697453747275637428616464726573732073656e6481527f65722c6164647265737320746f6b656e2c75696e7432353620616d6f756e742c60208201527f75696e7432353620646179735f6c6f636b65642c75696e7432353620706f6f6c60408201527f5f746f6b656e732c75696e7432353620676f6f645f756e74696c2900000000006060820152607b0190565b60408051601f198184030181528282528051602091820120908301526001600160a01b03808a1691830191909152871660608201526080810186905260a0810185905260c0810184905260e08101839052610100016127d1565b600082600001828154811061301257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160e01b0382111561308e5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610a05565b5090565b606061230b848460008585843b6130eb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a05565b600080866001600160a01b0316858760405161310791906136bb565b60006040518083038185875af1925050503d8060008114613144576040519150601f19603f3d011682016040523d82523d6000602084013e613149565b606091505b50915091506125f282828660608315613163575081610a21565b8251156131735782518084602001fd5b8160405162461bcd60e51b8152600401610a059190613763565b80356001600160a01b03811681146131a457600080fd5b919050565b60008083601f8401126131ba578182fd5b50813567ffffffffffffffff8111156131d1578182fd5b6020830191508360208260051b85010111156131ec57600080fd5b9250929050565b60008083601f840112613204578182fd5b50813567ffffffffffffffff81111561321b578182fd5b6020830191508360208285010111156131ec57600080fd5b600060608284031215613244578081fd5b50919050565b60006020828403121561325b578081fd5b610a218261318d565b60008060408385031215613276578081fd5b61327f8361318d565b915061328d6020840161318d565b90509250929050565b6000806000606084860312156132aa578081fd5b6132b38461318d565b92506132c16020850161318d565b9150604084013590509250925092565b60008060008060008060008060006101408a8c0312156132ef578485fd5b6132f88a61318d565b985061330660208b0161318d565b975060408a0135965060608a0135955060808a0135945061332960a08b0161318d565b93506133388b60c08c01613233565b92506101208a013567ffffffffffffffff811115613354578283fd5b6133608c828d016131f3565b915080935050809150509295985092959850929598565b6000806000806000806000610120888a031215613392578283fd5b61339b8861318d565b96506133a96020890161318d565b955060408801359450606088013593506080880135925060a088013591506133d48960c08a01613233565b905092959891949750929550565b6000806000806000806000610100888a0312156133fd578283fd5b6134068861318d565b9650602088013567ffffffffffffffff811115613421578384fd5b61342d8a828b016131a9565b9097509550506040880135935060608801359250608088013591506133d48960a08a01613233565b60008060408385031215613467578182fd5b6134708361318d565b946020939093013593505050565b6000806000806000806101008789031215613497578182fd5b6134a08761318d565b9550602087013594506134b56040880161318d565b935060608701359250608087013591506134d28860a08901613233565b90509295509295509295565b600080600080600080600080610120898b0312156134fa578182fd5b6135038961318d565b975060208901359650604089013595506060890135945061352660808a0161318d565b93506135358a60a08b01613233565b925061010089013567ffffffffffffffff811115613551578283fd5b61355d8b828c016131f3565b999c989b5096995094979396929594505050565b600080600080600080610100878903121561358a578384fd5b6135938761318d565b9550602087013594506040870135935060608701359250608087013591506134d28860a08901613233565b60008060008060008060e087890312156135d6578384fd5b863567ffffffffffffffff8111156135ec578485fd5b6135f889828a016131a9565b9097509550506020870135935060408701359250606087013591506134d28860808901613233565b600060208284031215613631578081fd5b81518015158114610a21578182fd5b600060208284031215613651578081fd5b5035919050565b600060208284031215613669578081fd5b5051919050565b600060208284031215613681578081fd5b813560ff81168114610a21578182fd5b60006001600160fb1b038311156136a6578081fd5b8260051b808584379190910190815292915050565b600082516136cd8184602087016138d0565b9190910192915050565b606080825284519082018190526000906020906080840190828801845b82811015613710578151845292840192908401906001016136f4565b50505083810382850152855180825286830191830190845b8181101561374d5783516001600160a01b031683529284019291840191600101613728565b5050809350505050826040830152949350505050565b60208152600082518060208401526137828160408501602087016138d0565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f10db1a5c1c195c8e88115e1c1a5c995960821b604082015260600190565b60208082526016908201527521b634b83832b91d1024b73b30b634b2103a37b5b2b760511b604082015260600190565b84815283602082015260606040820152816060820152818360808301376000818301608090810191909152601f909201601f191601019392505050565b600082198211156138755761387561394c565b500190565b60008261389557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156138b4576138b461394c565b500290565b6000828210156138cb576138cb61394c565b500390565b60005b838110156138eb5781810151838201526020016138d3565b83811115611f425750506000910152565b600181811c9082168061391057607f821691505b6020821081141561324457634e487b7160e01b600052602260045260246000fd5b60006000198214156139455761394561394c565b5060010190565b634e487b7160e01b600052601160045260246000fdfe4be05c8d54f5e056ab2cfa033e9f582057001268c3e28561bb999d35d2c8f2c8a2646970667358221220616d559f5d034e4d11da92df92acd6f410c61aadc835d539be0379985da86fe664736f6c6343000804003300000000000000000000000008938a61ba9523298dbcacee0cda5b371fb7f1f8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000050000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x60806040526004361061021e5760003560e01c80635250d7301161012357806395d89b41116100ab578063c72da66a1161006f578063c72da66a14610670578063dd62ed3e14610690578063eb1c6453146106d6578063ecc7633d146106f6578063f2fde38b1461072357600080fd5b806395d89b41146105b2578063a457c2d7146105c7578063a9059cbb146105e7578063c0d5ebfd14610607578063c325a5491461062757600080fd5b8063715018a6116100f2578063715018a61461051857806387e08c251461052d5780638da5cb5b146105405780638dda8f3f1461055e57806392a91a3a1461059257600080fd5b80635250d730146104635780635aecdda51461047657806362fb4e01146104c257806370a08231146104e257600080fd5b806329d0c8fc116101a6578063368dfc1811610175578063368dfc18146103ce578063377a368c146103ee57806339509351146104035780633b26e4eb146104235780634cb6864c1461044357600080fd5b806329d0c8fc146103525780632b651a6c14610372578063313ce5671461039257806334cb3d7f146103ae57600080fd5b80631b6a8759116101ed5780631b6a8759146102c45780631dc6f5a5146102d957806323b872dd146102fd57806327a9b4241461031d578063298410e51461033257600080fd5b806306fdde031461022a578063095ea7b31461025557806318160ddd1461028557806319f37361146102a457600080fd5b3661022557005b600080fd5b34801561023657600080fd5b5061023f610743565b60405161024c9190613763565b60405180910390f35b34801561026157600080fd5b50610275610270366004613455565b6107d5565b604051901515815260200161024c565b34801561029157600080fd5b506002545b60405190815260200161024c565b3480156102b057600080fd5b506102756102bf36600461324a565b6107ec565b3480156102d057600080fd5b506102966107f9565b3480156102e557600080fd5b506102ee61080a565b60405161024c939291906136d7565b34801561030957600080fd5b50610275610318366004613296565b610977565b61033061032b3660046134de565b610a28565b005b34801561033e57600080fd5b5061033061034d36600461324a565b610b91565b34801561035e57600080fd5b5061033061036d3660046135be565b610bd3565b34801561037e57600080fd5b5061033061038d3660046132d1565b610c5f565b34801561039e57600080fd5b506040516012815260200161024c565b3480156103ba57600080fd5b506102966103c936600461324a565b610daf565b3480156103da57600080fd5b506103306103e9366004613640565b610dd3565b3480156103fa57600080fd5b50610296610e4b565b34801561040f57600080fd5b5061027561041e366004613455565b610ee2565b34801561042f57600080fd5b5061033061043e3660046132d1565b610f1e565b34801561044f57600080fd5b5061033061045e3660046134de565b61104d565b6103306104713660046133e2565b61121b565b34801561048257600080fd5b506104aa7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b6040516001600160a01b03909116815260200161024c565b3480156104ce57600080fd5b506103306104dd36600461347e565b611428565b3480156104ee57600080fd5b506102966104fd36600461324a565b6001600160a01b031660009081526020819052604090205490565b34801561052457600080fd5b50610330611619565b61033061053b366004613377565b61164f565b34801561054c57600080fd5b50600a546001600160a01b03166104aa565b34801561056a57600080fd5b506104aa7f00000000000000000000000008938a61ba9523298dbcacee0cda5b371fb7f1f881565b34801561059e57600080fd5b506104aa6105ad366004613640565b6117e8565b3480156105be57600080fd5b5061023f6117f5565b3480156105d357600080fd5b506102756105e2366004613455565b611804565b3480156105f357600080fd5b50610275610602366004613455565b61189d565b34801561061357600080fd5b50610330610622366004613571565b6118aa565b34801561063357600080fd5b5061065b61064236600461324a565b6009602052600090815260409020805460019091015482565b6040805192835260208301919091520161024c565b34801561067c57600080fd5b5061033061068b3660046134de565b61199b565b34801561069c57600080fd5b506102966106ab366004613264565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156106e257600080fd5b506102756106f136600461324a565b611b4b565b34801561070257600080fd5b5061029661071136600461324a565b60066020526000908152604090205481565b34801561072f57600080fd5b5061033061073e36600461324a565b611b7b565b606060038054610752906138fc565b80601f016020809104026020016040519081016040528092919081815260200182805461077e906138fc565b80156107cb5780601f106107a0576101008083540402835291602001916107cb565b820191906000526020600020905b8154815290600101906020018083116107ae57829003601f168201915b5050505050905090565b60006107e2338484611c28565b5060015b92915050565b60006107e6600783611d4c565b60006108056007611d6e565b905090565b6060806000806108186107f9565b905060008167ffffffffffffffff81111561084357634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561086c578160200160208202803683370190505b50905060008267ffffffffffffffff81111561089857634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156108c1578160200160208202803683370190505b50905060005b8381101561095d5760006108da826117e8565b90506108e581610daf565b84838151811061090557634e487b7160e01b600052603260045260246000fd5b6020026020010181815250508083838151811061093257634e487b7160e01b600052603260045260246000fd5b6001600160a01b0390921660209283029190910190910152508061095581613931565b9150506108c7565b50818161096960025490565b955095509550505050909192565b6000610984848484611d78565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a0e5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b610a1b8533858403611c28565b60019150505b9392505050565b8480421115610a495760405162461bcd60e51b8152600401610a05906137cb565b610a52896107ec565b610a6e5760405162461bcd60e51b8152600401610a05906137f5565b610a987f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc289611f48565b6000610ac87f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28b8b8b8b8b611fe9565b9050610ad48186612032565b610afe7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28a612131565b610b088a89612177565b610b1c6001600160a01b038b16878a612196565b856001600160a01b03168a6001600160a01b03167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03166000805160206139638339815191528c8c8989604051610b7d9493929190613825565b60405180910390a450505050505050505050565b600a546001600160a01b03163314610bbb5760405162461bcd60e51b8152600401610a0590613796565b610bc6600782611c13565b50610bd0816121f9565b50565b6000855b80821015610c46576000888884818110610c0157634e487b7160e01b600052603260045260246000fd5b9050602002013590506000811115610c3357610c33333083610c22876117e8565b6001600160a01b031692919061220b565b82610c3d81613931565b93505050610bd7565b610c553389898989898961121b565b5050505050505050565b8480421115610c805760405162461bcd60e51b8152600401610a05906137cb565b610c898a6107ec565b8015610c995750610c99896107ec565b610cdf5760405162461bcd60e51b8152602060048201526017602482015276436c69707065723a20496e76616c696420746f6b656e7360481b6044820152606401610a05565b6000610cef8b8b8b8b8b8b611fe9565b9050610cfb8186612032565b506000610d078b612243565b90506000610d148c610daf565b610d1e90836138b9565b90506000610d2d8b838c612313565b9050610d398d8461239c565b610d438c82612177565b610d576001600160a01b038d168983612196565b876001600160a01b03168c6001600160a01b03168e6001600160a01b031660008051602061396383398151915285858b8b604051610d989493929190613825565b60405180910390a450505050505050505050505050565b6001600160a01b03166000908152600660205260409020546001600160e01b031690565b6000610dde60025490565b610ded836402540be40061389a565b610df7919061387a565b9050610e0333836123d5565b610e0c81612523565b604080518381526020810183905233917f92ccf450a286a957af52509bc1c9939d1a6a481783e142e41e2499f0bb66ebc6910160405180910390a25050565b6000610e5633611b4b565b610eb45760405162461bcd60e51b815260206004820152602960248201527f436c69707065724469726563743a204465706f7369742063616e6e6f74206265604482015268081d5b9b1bd8dad95960ba1b6064820152608401610a05565b50336000818152600960205260408120600181018054918390559190915590610edf90309083611d78565b90565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916107e2918590610f19908690613862565b611c28565b8480421115610f3f5760405162461bcd60e51b8152600401610a05906137cb565b610f488a6107ec565b8015610f585750610f58896107ec565b610f9e5760405162461bcd60e51b8152602060048201526017602482015276436c69707065723a20496e76616c696420746f6b656e7360481b6044820152606401610a05565b610fb36001600160a01b038b1633308b61220b565b6000610fc38b8b8b8b8b8b611fe9565b9050610fcf8186612032565b610fd98b8a612131565b610fe38a89612177565b610ff76001600160a01b038b16878a612196565b856001600160a01b03168a6001600160a01b03168c6001600160a01b03166000805160206139638339815191528c8c89896040516110389493929190613825565b60405180910390a45050505050505050505050565b848042111561106e5760405162461bcd60e51b8152600401610a05906137cb565b611077896107ec565b6110935760405162461bcd60e51b8152600401610a05906137f5565b60006110c38a7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28b8b8b8b611fe9565b90506110cf8186612032565b60006110da8b612243565b905060006110e78c610daf565b6110f190836138b9565b905060006111008c838d612313565b905061110c8d8461239c565b6111367f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc282612177565b604051632e1a7d4d60e01b8152600481018290527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561119857600080fd5b505af11580156111ac573d6000803e3d6000fd5b505050506111ba8982611f48565b886001600160a01b03167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168e6001600160a01b031660008051602061396383398151915285858c8c604051610d989493929190613825565b818042111561123c5760405162461bcd60e51b8152600401610a05906137cb565b341561126c5761126c7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc234611f48565b336001600160a01b038916146112d45760405162461bcd60e51b815260206004820152602760248201527f4c69737465642073656e64657220646f6573206e6f74206d61746368206d73676044820152661739b2b73232b960c91b6064820152608401610a05565b60006112e489898989898961258b565b90506112f08184612032565b6000875b808210156113cc5760008a8a8481811061131e57634e487b7160e01b600052603260045260246000fd5b90506020020135905060008111156113b957600061133b846117e8565b9050600061134882612243565b90508261135483610daf565b61135e90836138b9565b10156113ac5760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e206465706f7369740000000000006044820152606401610a05565b6113b6828261239c565b50505b826113c381613931565b935050506112f4565b6113d78b898961259c565b60408051888152602081018a90526001600160a01b038d16917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a25050505050505050505050565b81804211156114495760405162461bcd60e51b8152600401610a05906137cb565b336001600160a01b038816146114af5760405162461bcd60e51b815260206004820152602560248201527f746f6b656e486f6c64657220646f6573206e6f74206d61746368206d73672e7360448201526432b73232b960d91b6064820152608401610a05565b60006001600160a01b0386166114e657507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2945060015b60006114f589898989896125b6565b90506115018185612032565b61150b33896123d5565b6115158787612177565b81156115a457604051632e1a7d4d60e01b8152600481018790527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031690632e1a7d4d90602401600060405180830381600087803b15801561157d57600080fd5b505af1158015611591573d6000803e3d6000fd5b5050505061159f3387611f48565b6115b8565b6115b86001600160a01b0388163388612196565b866001600160a01b0316896001600160a01b03167f41e79959bad1d45680578f8a544fb5af76d72b04090e65a51b4d0eaab959a9ab8a89604051611606929190918252602082015260400190565b60405180910390a3505050505050505050565b600a546001600160a01b031633146116435760405162461bcd60e51b8152600401610a0590613796565b61164d60006125fd565b565b81804211156116705760405162461bcd60e51b8152600401610a05906137cb565b34156116a0576116a07f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc234611f48565b336001600160a01b0389161480156116bc57506116bc876107ec565b6116f85760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b6044820152606401610a05565b600061170889898989898961264f565b90506117148184612032565b600061171f89612243565b90508761172b8a610daf565b61173590836138b9565b10156117835760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e7420746f6b656e206465706f7369740000000000006044820152606401610a05565b61178d898261239c565b6117988a888861259c565b60408051878152602081018990526001600160a01b038c16917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a250505050505050505050565b60006107e6600783612660565b606060048054610752906138fc565b3360009081526001602090815260408083206001600160a01b0386168452909152812054828110156118865760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610a05565b6118933385858403611c28565b5060019392505050565b60006107e2338484611d78565b81804211156118cb5760405162461bcd60e51b8152600401610a05906137cb565b6118d4876107ec565b6119105760405162461bcd60e51b815260206004820152600d60248201526c125b9d985b1a59081a5b9c1d5d609a1b6044820152606401610a05565b6119256001600160a01b03881633308961220b565b600061193533898989898961264f565b90506119418184612032565b61194b8888612131565b61195633878761259c565b604080518681526020810188905233917f73a19dd210f1a7f902193214c0ee91dd35ee5b4d920cba8d519eca65a7b488ca910160405180910390a25050505050505050565b84804211156119bc5760405162461bcd60e51b8152600401610a05906137cb565b6119c5896107ec565b6119e15760405162461bcd60e51b8152600401610a05906137f5565b6119f66001600160a01b038a1633308b61220b565b6000611a268a7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28b8b8b8b611fe9565b9050611a328186612032565b611a3c8a8a612131565b611a667f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc289612177565b604051632e1a7d4d60e01b8152600481018990527f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b031690632e1a7d4d90602401600060405180830381600087803b158015611ac857600080fd5b505af1158015611adc573d6000803e3d6000fd5b50505050611aea8689611f48565b856001600160a01b03167f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03168b6001600160a01b03166000805160206139638339815191528c8c8989604051610b7d9493929190613825565b6001600160a01b0381166000908152600960205260408120600181015415801590610a2157505442101592915050565b600a546001600160a01b03163314611ba55760405162461bcd60e51b8152600401610a0590613796565b6001600160a01b038116611c0a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a05565b610bd0816125fd565b6000610a21836001600160a01b03841661266c565b6001600160a01b038316611c8a5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a05565b6001600160a01b038216611ceb5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a05565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b03811660009081526001830160205260408120541515610a21565b60006107e6825490565b6001600160a01b038316611ddc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a05565b6001600160a01b038216611e3e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a05565b6001600160a01b03831660009081526020819052604090205481811015611eb65760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a05565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611eed908490613862565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f3991815260200190565b60405180910390a35b50505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611f95576040519150601f19603f3d011682016040523d82523d6000602084013e611f9a565b606091505b5050905080611fe45760405162461bcd60e51b815260206004820152601660248201527510d85b1b081dda5d1a081d985b1d594819985a5b195960521b6044820152606401610a05565b505050565b600080611ffa8888888888886126bb565b90506120267f574d02d7a4d0825398490c1df2565a39b1e10f2f2c554a103edbe49503f07363826127f3565b98975050505050505050565b60006001836120446020850185613670565b604080516000815260208181018084529490945260ff9092168282015291850135606082015290840135608082015260a0016020604051602081039080840390855afa158015612098573d6000803e3d6000fd5b5050506020604051035190507f00000000000000000000000008938a61ba9523298dbcacee0cda5b371fb7f1f86001600160a01b0316816001600160a01b031614611fe45760405162461bcd60e51b815260206004820152602360248201527f4d657373616765207369676e656420627920696e636f7272656374206164647260448201526265737360e81b6064820152608401610a05565b60008061213d84612833565b9092509050612155826121508584613862565b6128cb565b6001600160a01b03909416600090815260066020526040902093909355505050565b60008061218384612833565b90925090506121558261215085846138b9565b6040516001600160a01b038316602482015260448101829052611fe490849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526128f7565b610bd08161220683612243565b61239c565b6040516001600160a01b0380851660248301528316604482015260648101829052611f429085906323b872dd60e01b906084016121c2565b604080513060248083019190915282518083039091018152604490910182526020810180516001600160e01b03166370a0823160e01b1790529051600091829182916001600160a01b0386169161229a91906136bb565b600060405180830381855afa9150503d80600081146122d5576040519150601f19603f3d011682016040523d82523d6000602084013e6122da565b606091505b50915091508180156122ee57506020815110155b6122f757600080fd5b8080602001905181019061230b9190613658565b949350505050565b600083831415612324575080610a21565b600084612336856402540be40061389a565b612340919061387a565b90506123556402540be4006302faf080613862565b811061238c576402540be40083612370826302faf080613862565b61237a919061389a565b612384919061387a565b915050610a21565b6402540be40061237a848361389a565b60006123a783612833565b5090506123b481836128cb565b6001600160a01b039093166000908152600660205260409020929092555050565b6001600160a01b0382166124355760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610a05565b6001600160a01b038216600090815260208190526040902054818110156124a95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610a05565b6001600160a01b03831660009081526020819052604081208383039055600280548492906124d89084906138b9565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b60008060006125306107f9565b90505b80821015611f42576000612546836117e8565b90506402540be40061255782610daf565b612561908761389a565b61256b919061387a565b93506125788133866129c9565b8261258281613931565b93505050612533565b600080611ffa888888888888612a48565b816125ab57611fe48382612b7c565b611fe4838383612c5b565b6000806125c68787878787612dcf565b90506125f27f574d02d7a4d0825398490c1df2565a39b1e10f2f2c554a103edbe49503f07363826127f3565b979650505050505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600080611ffa888888888888612eec565b6000610a218383612fed565b60008181526001830160205260408120546126b3575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556107e6565b5060006107e6565b600060405160200161277a907f4f66666572537472756374286164647265737320696e7075745f746f6b656e2c81527f61646472657373206f75747075745f746f6b656e2c75696e7432353620696e7060208201527f75745f616d6f756e742c75696e74323536206f75747075745f616d6f756e742c60408201527f75696e7432353620676f6f645f756e74696c2c6164647265737320646573746960608201526e6e6174696f6e5f616464726573732960881b6080820152608f0190565b60408051601f198184030181528282528051602091820120908301526001600160a01b03808a169183019190915280881660608301526080820187905260a0820186905260c08201859052831660e0820152610100015b6040516020818303038152906040528051906020012090509695505050505050565b60405161190160f01b6020820152602281018390526042810182905260009060620160405160208183030381529060405280519060200120905092915050565b6001600160a01b0381166000908152600660205260408120546001600160e01b0381169060e081901c6128663243613862565b93508063ffffffff168463ffffffff1614156128c45760405162461bcd60e51b815260206004820152601d60248201527f436c69707065723a204661696c656420747820756e697175656e6573730000006044820152606401610a05565b5050915091565b60006128d682613025565b610a21906001600160e01b03166001600160e01b031960e086901b16613862565b600061294c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166130929092919063ffffffff16565b805190915015611fe4578080602001905181019061296a9190613620565b611fe45760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610a05565b60026005541415612a1c5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610a05565b6002600555612a356001600160a01b0384168383612196565b612a3e836121f9565b5050600160055550565b6000808686604051602001612a5e929190613691565b604051602081830303815290604052805190602001209050604051602001612b10907f4465706f73697453747275637428616464726573732073656e6465722c75696e81527f743235365b5d206465706f7369745f616d6f756e74732c75696e74323536206460208201527f6179735f6c6f636b65642c75696e7432353620706f6f6c5f746f6b656e732c75604082015271696e7432353620676f6f645f756e74696c2960701b606082015260720190565b60408051601f198184030181528282528051602091820120908301526001600160a01b038a1690820152606081018290526080810186905260a0810185905260c0810184905260e001604051602081830303815290604052805190602001209150509695505050505050565b6001600160a01b038216612bd25760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610a05565b8060026000828254612be49190613862565b90915550506001600160a01b03821660009081526020819052604081208054839290612c11908490613862565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b60008211612ce65760405162461bcd60e51b815260206004820152604c60248201527f436c69707065724469726563743a2043616e6e6f74206372656174652076657360448201527f74696e67206465706f73697420776974686f757420706f73697469766520766560648201526b1cdd1a5b99c81c195c9a5bd960a21b608482015260a401610a05565b6001600160a01b03831660009081526009602052604090206001015415612d6e5760405162461bcd60e51b815260206004820152603660248201527f436c69707065724469726563743a204465706f7369746f7220616c7265616479604482015275081a185cc8185b881858dd1a5d994819195c1bdcda5d60521b6064820152608401610a05565b600060405180604001604052808462015180612d8a919061389a565b612d949042613862565b815260209081018490526001600160a01b0386166000908152600982526040902082518155908201516001909101559050611f423083612b7c565b6000604051602001612e85907f5769746864726177616c537472756374286164647265737320746f6b656e5f6881527f6f6c6465722c75696e7432353620706f6f6c5f746f6b656e5f616d6f756e745f60208201527f746f5f6275726e2c616464726573732061737365745f616464726573732c756960408201527f6e743235362061737365745f616d6f756e742c75696e7432353620676f6f645f606082015265756e74696c2960d01b608082015260860190565b60408051808303601f190181528282528051602091820120818401526001600160a01b039889168383015260608301979097529490961660808701525060a085019190915260c0808501919091528151808503909101815260e09093019052815191012090565b6000604051602001612f93907f53696e676c654465706f73697453747275637428616464726573732073656e6481527f65722c6164647265737320746f6b656e2c75696e7432353620616d6f756e742c60208201527f75696e7432353620646179735f6c6f636b65642c75696e7432353620706f6f6c60408201527f5f746f6b656e732c75696e7432353620676f6f645f756e74696c2900000000006060820152607b0190565b60408051601f198184030181528282528051602091820120908301526001600160a01b03808a1691830191909152871660608201526080810186905260a0810185905260c0810184905260e08101839052610100016127d1565b600082600001828154811061301257634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160e01b0382111561308e5760405162461bcd60e51b815260206004820152602760248201527f53616665436173743a2076616c756520646f65736e27742066697420696e20326044820152663234206269747360c81b6064820152608401610a05565b5090565b606061230b848460008585843b6130eb5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610a05565b600080866001600160a01b0316858760405161310791906136bb565b60006040518083038185875af1925050503d8060008114613144576040519150601f19603f3d011682016040523d82523d6000602084013e613149565b606091505b50915091506125f282828660608315613163575081610a21565b8251156131735782518084602001fd5b8160405162461bcd60e51b8152600401610a059190613763565b80356001600160a01b03811681146131a457600080fd5b919050565b60008083601f8401126131ba578182fd5b50813567ffffffffffffffff8111156131d1578182fd5b6020830191508360208260051b85010111156131ec57600080fd5b9250929050565b60008083601f840112613204578182fd5b50813567ffffffffffffffff81111561321b578182fd5b6020830191508360208285010111156131ec57600080fd5b600060608284031215613244578081fd5b50919050565b60006020828403121561325b578081fd5b610a218261318d565b60008060408385031215613276578081fd5b61327f8361318d565b915061328d6020840161318d565b90509250929050565b6000806000606084860312156132aa578081fd5b6132b38461318d565b92506132c16020850161318d565b9150604084013590509250925092565b60008060008060008060008060006101408a8c0312156132ef578485fd5b6132f88a61318d565b985061330660208b0161318d565b975060408a0135965060608a0135955060808a0135945061332960a08b0161318d565b93506133388b60c08c01613233565b92506101208a013567ffffffffffffffff811115613354578283fd5b6133608c828d016131f3565b915080935050809150509295985092959850929598565b6000806000806000806000610120888a031215613392578283fd5b61339b8861318d565b96506133a96020890161318d565b955060408801359450606088013593506080880135925060a088013591506133d48960c08a01613233565b905092959891949750929550565b6000806000806000806000610100888a0312156133fd578283fd5b6134068861318d565b9650602088013567ffffffffffffffff811115613421578384fd5b61342d8a828b016131a9565b9097509550506040880135935060608801359250608088013591506133d48960a08a01613233565b60008060408385031215613467578182fd5b6134708361318d565b946020939093013593505050565b6000806000806000806101008789031215613497578182fd5b6134a08761318d565b9550602087013594506134b56040880161318d565b935060608701359250608087013591506134d28860a08901613233565b90509295509295509295565b600080600080600080600080610120898b0312156134fa578182fd5b6135038961318d565b975060208901359650604089013595506060890135945061352660808a0161318d565b93506135358a60a08b01613233565b925061010089013567ffffffffffffffff811115613551578283fd5b61355d8b828c016131f3565b999c989b5096995094979396929594505050565b600080600080600080610100878903121561358a578384fd5b6135938761318d565b9550602087013594506040870135935060608701359250608087013591506134d28860a08901613233565b60008060008060008060e087890312156135d6578384fd5b863567ffffffffffffffff8111156135ec578485fd5b6135f889828a016131a9565b9097509550506020870135935060408701359250606087013591506134d28860808901613233565b600060208284031215613631578081fd5b81518015158114610a21578182fd5b600060208284031215613651578081fd5b5035919050565b600060208284031215613669578081fd5b5051919050565b600060208284031215613681578081fd5b813560ff81168114610a21578182fd5b60006001600160fb1b038311156136a6578081fd5b8260051b808584379190910190815292915050565b600082516136cd8184602087016138d0565b9190910192915050565b606080825284519082018190526000906020906080840190828801845b82811015613710578151845292840192908401906001016136f4565b50505083810382850152855180825286830191830190845b8181101561374d5783516001600160a01b031683529284019291840191600101613728565b5050809350505050826040830152949350505050565b60208152600082518060208401526137828160408501602087016138d0565b601f01601f19169190910160400192915050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526010908201526f10db1a5c1c195c8e88115e1c1a5c995960821b604082015260600190565b60208082526016908201527521b634b83832b91d1024b73b30b634b2103a37b5b2b760511b604082015260600190565b84815283602082015260606040820152816060820152818360808301376000818301608090810191909152601f909201601f191601019392505050565b600082198211156138755761387561394c565b500190565b60008261389557634e487b7160e01b81526012600452602481fd5b500490565b60008160001904831182151516156138b4576138b461394c565b500290565b6000828210156138cb576138cb61394c565b500390565b60005b838110156138eb5781810151838201526020016138d3565b83811115611f425750506000910152565b600181811c9082168061391057607f821691505b6020821081141561324457634e487b7160e01b600052602260045260246000fd5b60006000198214156139455761394561394c565b5060010190565b634e487b7160e01b600052601160045260246000fdfe4be05c8d54f5e056ab2cfa033e9f582057001268c3e28561bb999d35d2c8f2c8a2646970667358221220616d559f5d034e4d11da92df92acd6f410c61aadc835d539be0379985da86fe664736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000008938a61ba9523298dbcacee0cda5b371fb7f1f8000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000050000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec70000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : theSigner (address): 0x08938a61BA9523298dbCAceE0cda5B371FB7f1F8
Arg [1] : theWrapper (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
Arg [2] : tokens (address[]): 0x2260FAC5E5542a773Aa44fBCfeDf7C193bc2C599,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,0xdAC17F958D2ee523a2206206994597C13D831ec7,0x6B175474E89094C44Da98b954EedeAC495271d0F,0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000008938a61ba9523298dbcacee0cda5b371fb7f1f8
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [4] : 0000000000000000000000002260fac5e5542a773aa44fbcfedf7c193bc2c599
Arg [5] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [6] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7
Arg [7] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [8] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.