More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 142 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Remove_liquidity | 19335850 | 249 days ago | IN | 0 ETH | 0.01313309 | ||||
Exchange | 15396748 | 805 days ago | IN | 0 ETH | 0.00122997 | ||||
Exchange | 15396692 | 805 days ago | IN | 0 ETH | 0.00096807 | ||||
Remove_liquidity | 15396679 | 805 days ago | IN | 0 ETH | 0.00156199 | ||||
Exchange | 15066123 | 856 days ago | IN | 0 ETH | 0.00245876 | ||||
Remove_liquidity | 15040716 | 860 days ago | IN | 0 ETH | 0.01500802 | ||||
Add_liquidity | 15020213 | 864 days ago | IN | 0 ETH | 0.0045807 | ||||
Remove_liquidity | 14829731 | 897 days ago | IN | 0 ETH | 0.00681291 | ||||
Remove_liquidity | 14582811 | 936 days ago | IN | 0 ETH | 0.00929539 | ||||
Exchange | 14574582 | 937 days ago | IN | 0 ETH | 0.00412534 | ||||
Exchange | 14574560 | 937 days ago | IN | 0 ETH | 0.00409031 | ||||
Remove_liquidity | 14258252 | 986 days ago | IN | 0 ETH | 0.02136443 | ||||
Add_liquidity | 14211842 | 993 days ago | IN | 0 ETH | 0.01152731 | ||||
Exchange | 14182832 | 998 days ago | IN | 0 ETH | 0.00586384 | ||||
Remove_liquidity... | 14176157 | 999 days ago | IN | 0 ETH | 0.0072507 | ||||
Remove_liquidity... | 14136239 | 1005 days ago | IN | 0 ETH | 0.01057472 | ||||
Remove_liquidity | 14073685 | 1015 days ago | IN | 0 ETH | 0.01858176 | ||||
Remove_liquidity | 14059025 | 1017 days ago | IN | 0 ETH | 0.03004051 | ||||
Remove_liquidity... | 14033365 | 1021 days ago | IN | 0 ETH | 0.01298473 | ||||
Remove_liquidity... | 14028531 | 1022 days ago | IN | 0 ETH | 0.01546823 | ||||
Remove_liquidity... | 13984944 | 1029 days ago | IN | 0 ETH | 0.02156638 | ||||
Remove_liquidity... | 13651540 | 1081 days ago | IN | 0 ETH | 0.01438312 | ||||
Exchange | 13639361 | 1083 days ago | IN | 0 ETH | 0.01366013 | ||||
Exchange | 13639330 | 1083 days ago | IN | 0 ETH | 0.01517647 | ||||
Remove_liquidity | 13639263 | 1083 days ago | IN | 0 ETH | 0.02251252 |
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 | ||||
---|---|---|---|---|---|---|---|
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
19335850 | 249 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH | |||||
15396748 | 805 days ago | 0 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.8
Contract Source Code (Vyper language format)
# @version ^0.2.8 """ @title StableSwap @author Curve.Fi @license Copyright (c) Curve.Fi, 2020 - all rights reserved @notice Minimal pool implementation with no lending @dev This contract is only a template, pool-specific constants must be set prior to compiling """ from vyper.interfaces import ERC20 interface CurveToken: def totalSupply() -> uint256: view def mint(_to: address, _value: uint256) -> bool: nonpayable def burnFrom(_to: address, _value: uint256) -> bool: nonpayable # Events event TokenExchange: buyer: indexed(address) sold_id: int128 tokens_sold: uint256 bought_id: int128 tokens_bought: uint256 event AddLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event RemoveLiquidity: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] token_supply: uint256 event RemoveLiquidityOne: provider: indexed(address) token_amount: uint256 coin_amount: uint256 token_supply: uint256 event RemoveLiquidityImbalance: provider: indexed(address) token_amounts: uint256[N_COINS] fees: uint256[N_COINS] invariant: uint256 token_supply: uint256 event CommitNewAdmin: deadline: indexed(uint256) admin: indexed(address) event NewAdmin: admin: indexed(address) event CommitNewFee: deadline: indexed(uint256) fee: uint256 admin_fee: uint256 event NewFee: fee: uint256 admin_fee: uint256 event RampA: old_A: uint256 new_A: uint256 initial_time: uint256 future_time: uint256 event StopRampA: A: uint256 t: uint256 # These constants must be set prior to compiling N_COINS: constant(int128) = 4 PRECISION_MUL: constant(uint256[N_COINS]) = [1, 1, 1, 1] # PRECISION_MUL: constant(uint256[N_COINS]) = [ # PRECISION / convert(10 ** 18, uint256), # wETH # PRECISION / convert(10 ** 18, uint256), # eCRV # PRECISION / convert(10 ** 18, uint256), # steCRV # PRECISION / convert(10 ** 18, uint256)] # ankrCRV RATES: constant(uint256[N_COINS]) = [ 1000000000000000000, 1000000000000000000, 1000000000000000000, 1000000000000000000] # fixed constants FEE_DENOMINATOR: constant(uint256) = 10 ** 10 PRECISION: constant(uint256) = 10 ** 18 # The precision to convert to MAX_ADMIN_FEE: constant(uint256) = 10 * 10 ** 9 MAX_FEE: constant(uint256) = 5 * 10 ** 9 MAX_A: constant(uint256) = 10 ** 6 MAX_A_CHANGE: constant(uint256) = 10 ADMIN_ACTIONS_DELAY: constant(uint256) = 3 * 86400 MIN_RAMP_TIME: constant(uint256) = 86400 coins: public(address[N_COINS]) balances: public(uint256[N_COINS]) fee: public(uint256) # fee * 1e10 admin_fee: public(uint256) # admin_fee * 1e10 owner: public(address) lp_token: public(address) A_PRECISION: constant(uint256) = 100 initial_A: public(uint256) future_A: public(uint256) initial_A_time: public(uint256) future_A_time: public(uint256) admin_actions_deadline: public(uint256) transfer_ownership_deadline: public(uint256) future_fee: public(uint256) future_admin_fee: public(uint256) future_owner: public(address) is_killed: bool kill_deadline: uint256 KILL_DEADLINE_DT: constant(uint256) = 2 * 30 * 86400 @external def __init__( _owner: address, _coins: address[N_COINS], _pool_token: address, _A: uint256, _fee: uint256, _admin_fee: uint256 ): """ @notice Contract constructor @param _owner Contract owner address @param _coins Addresses of ERC20 conracts of coins @param _pool_token Address of the token representing LP share @param _A Amplification coefficient multiplied by n * (n - 1) @param _fee Fee to charge for exchanges @param _admin_fee Admin fee """ for i in range(N_COINS): assert _coins[i] != ZERO_ADDRESS self.coins = _coins self.initial_A = _A * A_PRECISION self.future_A = _A * A_PRECISION self.fee = _fee self.admin_fee = _admin_fee self.owner = _owner self.kill_deadline = block.timestamp + KILL_DEADLINE_DT self.lp_token = _pool_token @view @internal def _A() -> uint256: """ Handle ramping A up or down """ t1: uint256 = self.future_A_time A1: uint256 = self.future_A if block.timestamp < t1: A0: uint256 = self.initial_A t0: uint256 = self.initial_A_time # Expressions in uint256 cannot have negative numbers, thus "if" if A1 > A0: return A0 + (A1 - A0) * (block.timestamp - t0) / (t1 - t0) else: return A0 - (A0 - A1) * (block.timestamp - t0) / (t1 - t0) else: # when t1 == 0 or block.timestamp >= t1 return A1 @view @external def A() -> uint256: return self._A() / A_PRECISION @view @external def A_precise() -> uint256: return self._A() @view @internal def _xp() -> uint256[N_COINS]: result: uint256[N_COINS] = RATES for i in range(N_COINS): result[i] = result[i] * self.balances[i] / PRECISION return result @pure @internal def _xp_mem(_balances: uint256[N_COINS]) -> uint256[N_COINS]: result: uint256[N_COINS] = RATES for i in range(N_COINS): result[i] = result[i] * _balances[i] / PRECISION return result @pure @internal def _get_D(_xp: uint256[N_COINS], _amp: uint256) -> uint256: """ D invariant calculation in non-overflowing integer operations iteratively A * sum(x_i) * n**n + D = A * D * n**n + D**(n+1) / (n**n * prod(x_i)) Converging solution: D[j+1] = (A * n**n * sum(x_i) - D[j]**(n+1) / (n**n prod(x_i))) / (A * n**n - 1) """ S: uint256 = 0 Dprev: uint256 = 0 for _x in _xp: S += _x if S == 0: return 0 D: uint256 = S Ann: uint256 = _amp * N_COINS for _i in range(255): D_P: uint256 = D for _x in _xp: D_P = D_P * D / (_x * N_COINS) # If division by 0, this will be borked: only withdrawal will work. And that is good Dprev = D D = (Ann * S / A_PRECISION + D_P * N_COINS) * D / ((Ann - A_PRECISION) * D / A_PRECISION + (N_COINS + 1) * D_P) # Equality with the precision of 1 if D > Dprev: if D - Dprev <= 1: return D else: if Dprev - D <= 1: return D # convergence typically occurs in 4 rounds or less, this should be unreachable! # if it does happen the pool is borked and LPs can withdraw via `remove_liquidity` raise @view @internal def _get_D_mem(_balances: uint256[N_COINS], _amp: uint256) -> uint256: return self._get_D(self._xp_mem(_balances), _amp) @view @external def get_virtual_price() -> uint256: """ @notice The current virtual price of the pool LP token @dev Useful for calculating profits @return LP token virtual price normalized to 1e18 """ D: uint256 = self._get_D(self._xp(), self._A()) # D is in the units similar to DAI (e.g. converted to precision 1e18) # When balanced, D = n * x_u - total virtual value of the portfolio token_supply: uint256 = ERC20(self.lp_token).totalSupply() return D * PRECISION / token_supply @view @external def calc_token_amount(_amounts: uint256[N_COINS], _is_deposit: bool) -> uint256: """ @notice Calculate addition or reduction in token supply from a deposit or withdrawal @dev This calculation accounts for slippage, but not fees. Needed to prevent front-running, not for precise calculations! @param _amounts Amount of each coin being deposited @param _is_deposit set True for deposits, False for withdrawals @return Expected amount of LP tokens received """ amp: uint256 = self._A() balances: uint256[N_COINS] = self.balances D0: uint256 = self._get_D_mem(balances, amp) for i in range(N_COINS): if _is_deposit: balances[i] += _amounts[i] else: balances[i] -= _amounts[i] D1: uint256 = self._get_D_mem(balances, amp) token_amount: uint256 = CurveToken(self.lp_token).totalSupply() diff: uint256 = 0 if _is_deposit: diff = D1 - D0 else: diff = D0 - D1 return diff * token_amount / D0 @external @nonreentrant('lock') def add_liquidity(_amounts: uint256[N_COINS], _min_mint_amount: uint256) -> uint256: """ @notice Deposit coins into the pool @param _amounts List of amounts of coins to deposit @param _min_mint_amount Minimum amount of LP tokens to mint from the deposit @return Amount of LP tokens received by depositing """ assert not self.is_killed # dev: is killed amp: uint256 = self._A() old_balances: uint256[N_COINS] = self.balances # Initial invariant D0: uint256 = self._get_D_mem(old_balances, amp) lp_token: address = self.lp_token token_supply: uint256 = CurveToken(lp_token).totalSupply() new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): if token_supply == 0: assert _amounts[i] > 0 # dev: initial deposit requires all coins # balances store amounts of c-tokens new_balances[i] += _amounts[i] # Invariant after change D1: uint256 = self._get_D_mem(new_balances, amp) assert D1 > D0 # We need to recalculate the invariant accounting for fees # to calculate fair user's share D2: uint256 = D1 fees: uint256[N_COINS] = empty(uint256[N_COINS]) mint_amount: uint256 = 0 if token_supply > 0: # Only account for fees if we are not the first to deposit fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) admin_fee: uint256 = self.admin_fee for i in range(N_COINS): ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 new_balance: uint256 = new_balances[i] if ideal_balance > new_balance: difference = ideal_balance - new_balance else: difference = new_balance - ideal_balance fees[i] = fee * difference / FEE_DENOMINATOR self.balances[i] = new_balance - (fees[i] * admin_fee / FEE_DENOMINATOR) new_balances[i] -= fees[i] D2 = self._get_D_mem(new_balances, amp) mint_amount = token_supply * (D2 - D0) / D0 else: self.balances = new_balances mint_amount = D1 # Take the dust if there was any assert mint_amount >= _min_mint_amount, "Slippage screwed you" # Take coins from the sender for i in range(N_COINS): if _amounts[i] > 0: # "safeTransferFrom" which works for ERC20s which return bool or not _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(_amounts[i], bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) # dev: failed transfer # end "safeTransferFrom" # Mint pool tokens CurveToken(lp_token).mint(msg.sender, mint_amount) log AddLiquidity(msg.sender, _amounts, fees, D1, token_supply + mint_amount) return mint_amount @view @internal def _get_y(i: int128, j: int128, x: uint256, _xp: uint256[N_COINS]) -> uint256: """ Calculate x[j] if one makes x[i] = x Done by solving quadratic equation iteratively. x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ # x in the input is converted to the same price/precision assert i != j # dev: same coin assert j >= 0 # dev: j below zero assert j < N_COINS # dev: j above N_COINS # should be unreachable, but good for safety assert i >= 0 assert i < N_COINS A: uint256 = self._A() D: uint256 = self._get_D(_xp, A) Ann: uint256 = A * N_COINS c: uint256 = D S: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 for _i in range(N_COINS): if _i == i: _x = x elif _i != j: _x = _xp[_i] else: continue S += _x c = c * D / (_x * N_COINS) c = c * D * A_PRECISION / (Ann * N_COINS) b: uint256 = S + D * A_PRECISION / Ann # - D y: uint256 = D for _i in range(255): y_prev = y y = (y*y + c) / (2 * y + b - D) # Equality with the precision of 1 if y > y_prev: if y - y_prev <= 1: return y else: if y_prev - y <= 1: return y raise @view @external def get_dy(i: int128, j: int128, _dx: uint256) -> uint256: xp: uint256[N_COINS] = self._xp() rates: uint256[N_COINS] = RATES x: uint256 = xp[i] + (_dx * rates[i] / PRECISION) y: uint256 = self._get_y(i, j, x, xp) dy: uint256 = xp[j] - y - 1 fee: uint256 = self.fee * dy / FEE_DENOMINATOR return (dy - fee) * PRECISION / rates[j] @external @nonreentrant('lock') def exchange(i: int128, j: int128, _dx: uint256, _min_dy: uint256) -> uint256: """ @notice Perform an exchange between two coins @dev Index values can be found via the `coins` public getter method @param i Index value for the coin to send @param j Index valie of the coin to recieve @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @return Actual amount of `j` received """ assert not self.is_killed # dev: is killed old_balances: uint256[N_COINS] = self.balances xp: uint256[N_COINS] = self._xp_mem(old_balances) rates: uint256[N_COINS] = RATES x: uint256 = xp[i] + _dx * rates[i] / PRECISION y: uint256 = self._get_y(i, j, x, xp) dy: uint256 = xp[j] - y - 1 # -1 just in case there were some rounding errors dy_fee: uint256 = dy * self.fee / FEE_DENOMINATOR # Convert all to real units dy = (dy - dy_fee) * PRECISION / rates[j] assert dy >= _min_dy, "Exchange resulted in fewer coins than expected" dy_admin_fee: uint256 = dy_fee * self.admin_fee / FEE_DENOMINATOR dy_admin_fee = dy_admin_fee * PRECISION / rates[j] # Change balances exactly in same way as we change actual ERC20 coin amounts self.balances[i] = old_balances[i] + _dx # When rounding errors happen, we undercharge admin fee in favor of LP self.balances[j] = old_balances[j] - dy - dy_admin_fee _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(_dx, bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) _response = raw_call( self.coins[j], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(dy, bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) log TokenExchange(msg.sender, i, _dx, j, dy) return dy @external @nonreentrant('lock') def remove_liquidity(_amount: uint256, _min_amounts: uint256[N_COINS]) -> uint256[N_COINS]: """ @notice Withdraw coins from the pool @dev Withdrawal amounts are based on current deposit ratios @param _amount Quantity of LP tokens to burn in the withdrawal @param _min_amounts Minimum amounts of underlying coins to receive @return List of amounts of coins that were withdrawn """ lp_token: address = self.lp_token total_supply: uint256 = CurveToken(lp_token).totalSupply() amounts: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): old_balance: uint256 = self.balances[i] value: uint256 = old_balance * _amount / total_supply assert value >= _min_amounts[i], "Withdrawal resulted in fewer coins than expected" self.balances[i] = old_balance - value amounts[i] = value _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(value, bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) CurveToken(lp_token).burnFrom(msg.sender, _amount) # dev: insufficient funds log RemoveLiquidity(msg.sender, amounts, empty(uint256[N_COINS]), total_supply - _amount) return amounts @external @nonreentrant('lock') def remove_liquidity_imbalance(_amounts: uint256[N_COINS], _max_burn_amount: uint256) -> uint256: """ @notice Withdraw coins from the pool in an imbalanced amount @param _amounts List of amounts of underlying coins to withdraw @param _max_burn_amount Maximum amount of LP token to burn in the withdrawal @return Actual amount of the LP token burned in the withdrawal """ assert not self.is_killed # dev: is killed amp: uint256 = self._A() old_balances: uint256[N_COINS] = self.balances D0: uint256 = self._get_D_mem(old_balances, amp) new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): new_balances[i] -= _amounts[i] D1: uint256 = self._get_D_mem(new_balances, amp) fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) admin_fee: uint256 = self.admin_fee fees: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): new_balance: uint256 = new_balances[i] ideal_balance: uint256 = D1 * old_balances[i] / D0 difference: uint256 = 0 if ideal_balance > new_balance: difference = ideal_balance - new_balance else: difference = new_balance - ideal_balance fees[i] = fee * difference / FEE_DENOMINATOR self.balances[i] = new_balance - (fees[i] * admin_fee / FEE_DENOMINATOR) new_balances[i] = new_balance - fees[i] D2: uint256 = self._get_D_mem(new_balances, amp) lp_token: address = self.lp_token token_supply: uint256 = CurveToken(lp_token).totalSupply() token_amount: uint256 = (D0 - D2) * token_supply / D0 assert token_amount != 0 # dev: zero tokens burned token_amount += 1 # In case of rounding errors - make it unfavorable for the "attacker" assert token_amount <= _max_burn_amount, "Slippage screwed you" CurveToken(lp_token).burnFrom(msg.sender, token_amount) # dev: insufficient funds for i in range(N_COINS): if _amounts[i] != 0: _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(_amounts[i], bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) log RemoveLiquidityImbalance(msg.sender, _amounts, fees, D1, token_supply - token_amount) return token_amount @pure @internal def _get_y_D(A: uint256, i: int128, _xp: uint256[N_COINS], D: uint256) -> uint256: """ Calculate x[i] if one reduces D from being calculated for xp to D Done by solving quadratic equation iteratively. x_1**2 + x_1 * (sum' - (A*n**n - 1) * D / (A * n**n)) = D ** (n + 1) / (n ** (2 * n) * prod' * A) x_1**2 + b*x_1 = c x_1 = (x_1**2 + c) / (2*x_1 + b) """ # x in the input is converted to the same price/precision assert i >= 0 # dev: i below zero assert i < N_COINS # dev: i above N_COINS Ann: uint256 = A * N_COINS c: uint256 = D S: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 for _i in range(N_COINS): if _i != i: _x = _xp[_i] else: continue S += _x c = c * D / (_x * N_COINS) c = c * D * A_PRECISION / (Ann * N_COINS) b: uint256 = S + D * A_PRECISION / Ann y: uint256 = D for _i in range(255): y_prev = y y = (y*y + c) / (2 * y + b - D) # Equality with the precision of 1 if y > y_prev: if y - y_prev <= 1: return y else: if y_prev - y <= 1: return y raise @view @internal def _calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> (uint256, uint256, uint256): # First, need to calculate # * Get current D # * Solve Eqn against y_i for D - _token_amount amp: uint256 = self._A() xp: uint256[N_COINS] = self._xp() D0: uint256 = self._get_D(xp, amp) total_supply: uint256 = CurveToken(self.lp_token).totalSupply() D1: uint256 = D0 - _token_amount * D0 / total_supply new_y: uint256 = self._get_y_D(amp, i, xp, D1) xp_reduced: uint256[N_COINS] = xp fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) for j in range(N_COINS): dx_expected: uint256 = 0 if j == i: dx_expected = xp[j] * D1 / D0 - new_y else: dx_expected = xp[j] - xp[j] * D1 / D0 xp_reduced[j] -= fee * dx_expected / FEE_DENOMINATOR dy: uint256 = xp_reduced[i] - self._get_y_D(amp, i, xp_reduced, D1) precisions: uint256[N_COINS] = PRECISION_MUL dy = (dy - 1) / precisions[i] # Withdraw less to account for rounding errors dy_0: uint256 = (xp[i] - new_y) / precisions[i] # w/o fees return dy, dy_0 - dy, total_supply @view @external def calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> uint256: """ @notice Calculate the amount received when withdrawing a single coin @param _token_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @return Amount of coin received """ return self._calc_withdraw_one_coin(_token_amount, i)[0] @external @nonreentrant('lock') def remove_liquidity_one_coin(_token_amount: uint256, i: int128, _min_amount: uint256) -> uint256: """ @notice Withdraw a single coin from the pool @param _token_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @param _min_amount Minimum amount of coin to receive @return Amount of coin received """ assert not self.is_killed # dev: is killed dy: uint256 = 0 dy_fee: uint256 = 0 total_supply: uint256 = 0 dy, dy_fee, total_supply = self._calc_withdraw_one_coin(_token_amount, i) assert dy >= _min_amount, "Not enough coins removed" self.balances[i] -= (dy + dy_fee * self.admin_fee / FEE_DENOMINATOR) CurveToken(self.lp_token).burnFrom(msg.sender, _token_amount) # dev: insufficient funds _response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(dy, bytes32), ), max_outsize=32, ) if len(_response) > 0: assert convert(_response, bool) log RemoveLiquidityOne(msg.sender, _token_amount, dy, total_supply - _token_amount) return dy ### Admin functions ### @external def ramp_A(_future_A: uint256, _future_time: uint256): assert msg.sender == self.owner # dev: only owner assert block.timestamp >= self.initial_A_time + MIN_RAMP_TIME assert _future_time >= block.timestamp + MIN_RAMP_TIME # dev: insufficient time initial_A: uint256 = self._A() future_A_p: uint256 = _future_A * A_PRECISION assert _future_A > 0 and _future_A < MAX_A if future_A_p < initial_A: assert future_A_p * MAX_A_CHANGE >= initial_A else: assert future_A_p <= initial_A * MAX_A_CHANGE self.initial_A = initial_A self.future_A = future_A_p self.initial_A_time = block.timestamp self.future_A_time = _future_time log RampA(initial_A, future_A_p, block.timestamp, _future_time) @external def stop_ramp_A(): assert msg.sender == self.owner # dev: only owner current_A: uint256 = self._A() self.initial_A = current_A self.future_A = current_A self.initial_A_time = block.timestamp self.future_A_time = block.timestamp # now (block.timestamp < t1) is always False, so we return saved A log StopRampA(current_A, block.timestamp) @external def commit_new_fee(_new_fee: uint256, _new_admin_fee: uint256): assert msg.sender == self.owner # dev: only owner assert self.admin_actions_deadline == 0 # dev: active action assert _new_fee <= MAX_FEE # dev: fee exceeds maximum assert _new_admin_fee <= MAX_ADMIN_FEE # dev: admin fee exceeds maximum deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY self.admin_actions_deadline = deadline self.future_fee = _new_fee self.future_admin_fee = _new_admin_fee log CommitNewFee(deadline, _new_fee, _new_admin_fee) @external def apply_new_fee(): assert msg.sender == self.owner # dev: only owner assert block.timestamp >= self.admin_actions_deadline # dev: insufficient time assert self.admin_actions_deadline != 0 # dev: no active action self.admin_actions_deadline = 0 fee: uint256 = self.future_fee admin_fee: uint256 = self.future_admin_fee self.fee = fee self.admin_fee = admin_fee log NewFee(fee, admin_fee) @external def revert_new_parameters(): assert msg.sender == self.owner # dev: only owner self.admin_actions_deadline = 0 @external def commit_transfer_ownership(_owner: address): assert msg.sender == self.owner # dev: only owner assert self.transfer_ownership_deadline == 0 # dev: active transfer deadline: uint256 = block.timestamp + ADMIN_ACTIONS_DELAY self.transfer_ownership_deadline = deadline self.future_owner = _owner log CommitNewAdmin(deadline, _owner) @external def apply_transfer_ownership(): assert msg.sender == self.owner # dev: only owner assert block.timestamp >= self.transfer_ownership_deadline # dev: insufficient time assert self.transfer_ownership_deadline != 0 # dev: no active transfer self.transfer_ownership_deadline = 0 owner: address = self.future_owner self.owner = owner log NewAdmin(owner) @external def revert_transfer_ownership(): assert msg.sender == self.owner # dev: only owner self.transfer_ownership_deadline = 0 @view @external def admin_balances(i: uint256) -> uint256: return ERC20(self.coins[i]).balanceOf(self) - self.balances[i] @external def withdraw_admin_fees(): assert msg.sender == self.owner # dev: only owner for i in range(N_COINS): coin: address = self.coins[i] value: uint256 = ERC20(coin).balanceOf(self) - self.balances[i] if value > 0: _response: Bytes[32] = raw_call( coin, concat( method_id("transfer(address,uint256)"), convert(msg.sender, bytes32), convert(value, bytes32), ), max_outsize=32, ) # dev: failed transfer if len(_response) > 0: assert convert(_response, bool) @external def donate_admin_fees(): assert msg.sender == self.owner # dev: only owner for i in range(N_COINS): self.balances[i] = ERC20(self.coins[i]).balanceOf(self) @external def kill_me(): assert msg.sender == self.owner # dev: only owner assert self.kill_deadline > block.timestamp # dev: deadline has passed self.is_killed = True @external def unkill_me(): assert msg.sender == self.owner # dev: only owner self.is_killed = False
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"name":"TokenExchange","inputs":[{"type":"address","name":"buyer","indexed":true},{"type":"int128","name":"sold_id","indexed":false},{"type":"uint256","name":"tokens_sold","indexed":false},{"type":"int128","name":"bought_id","indexed":false},{"type":"uint256","name":"tokens_bought","indexed":false}],"anonymous":false,"type":"event"},{"name":"AddLiquidity","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","name":"fees","indexed":false},{"type":"uint256","name":"invariant","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidity","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","name":"fees","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityOne","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256","name":"token_amount","indexed":false},{"type":"uint256","name":"coin_amount","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityImbalance","inputs":[{"type":"address","name":"provider","indexed":true},{"type":"uint256[4]","name":"token_amounts","indexed":false},{"type":"uint256[4]","name":"fees","indexed":false},{"type":"uint256","name":"invariant","indexed":false},{"type":"uint256","name":"token_supply","indexed":false}],"anonymous":false,"type":"event"},{"name":"CommitNewAdmin","inputs":[{"type":"uint256","name":"deadline","indexed":true},{"type":"address","name":"admin","indexed":true}],"anonymous":false,"type":"event"},{"name":"NewAdmin","inputs":[{"type":"address","name":"admin","indexed":true}],"anonymous":false,"type":"event"},{"name":"CommitNewFee","inputs":[{"type":"uint256","name":"deadline","indexed":true},{"type":"uint256","name":"fee","indexed":false},{"type":"uint256","name":"admin_fee","indexed":false}],"anonymous":false,"type":"event"},{"name":"NewFee","inputs":[{"type":"uint256","name":"fee","indexed":false},{"type":"uint256","name":"admin_fee","indexed":false}],"anonymous":false,"type":"event"},{"name":"RampA","inputs":[{"type":"uint256","name":"old_A","indexed":false},{"type":"uint256","name":"new_A","indexed":false},{"type":"uint256","name":"initial_time","indexed":false},{"type":"uint256","name":"future_time","indexed":false}],"anonymous":false,"type":"event"},{"name":"StopRampA","inputs":[{"type":"uint256","name":"A","indexed":false},{"type":"uint256","name":"t","indexed":false}],"anonymous":false,"type":"event"},{"outputs":[],"inputs":[{"type":"address","name":"_owner"},{"type":"address[4]","name":"_coins"},{"type":"address","name":"_pool_token"},{"type":"uint256","name":"_A"},{"type":"uint256","name":"_fee"},{"type":"uint256","name":"_admin_fee"}],"stateMutability":"nonpayable","type":"constructor"},{"name":"A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":5199},{"name":"A_precise","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":5161},{"name":"get_virtual_price","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":1366240},{"name":"calc_token_amount","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"_amounts"},{"type":"bool","name":"_is_deposit"}],"stateMutability":"view","type":"function","gas":5437857},{"name":"add_liquidity","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"_amounts"},{"type":"uint256","name":"_min_mint_amount"}],"stateMutability":"nonpayable","type":"function","gas":8407397},{"name":"get_dy","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"}],"stateMutability":"view","type":"function","gas":3159555},{"name":"exchange","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"int128","name":"i"},{"type":"int128","name":"j"},{"type":"uint256","name":"_dx"},{"type":"uint256","name":"_min_dy"}],"stateMutability":"nonpayable","type":"function","gas":3322659},{"name":"remove_liquidity","outputs":[{"type":"uint256[4]","name":""}],"inputs":[{"type":"uint256","name":"_amount"},{"type":"uint256[4]","name":"_min_amounts"}],"stateMutability":"nonpayable","type":"function","gas":252310},{"name":"remove_liquidity_imbalance","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256[4]","name":"_amounts"},{"type":"uint256","name":"_max_burn_amount"}],"stateMutability":"nonpayable","type":"function","gas":8406593},{"name":"calc_withdraw_one_coin","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_token_amount"},{"type":"int128","name":"i"}],"stateMutability":"view","type":"function","gas":1489},{"name":"remove_liquidity_one_coin","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"_token_amount"},{"type":"int128","name":"i"},{"type":"uint256","name":"_min_amount"}],"stateMutability":"nonpayable","type":"function","gas":4598987},{"name":"ramp_A","outputs":[],"inputs":[{"type":"uint256","name":"_future_A"},{"type":"uint256","name":"_future_time"}],"stateMutability":"nonpayable","type":"function","gas":151774},{"name":"stop_ramp_A","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":148535},{"name":"commit_new_fee","outputs":[],"inputs":[{"type":"uint256","name":"_new_fee"},{"type":"uint256","name":"_new_admin_fee"}],"stateMutability":"nonpayable","type":"function","gas":110371},{"name":"apply_new_fee","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":97152},{"name":"revert_new_parameters","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":21805},{"name":"commit_transfer_ownership","outputs":[],"inputs":[{"type":"address","name":"_owner"}],"stateMutability":"nonpayable","type":"function","gas":74543},{"name":"apply_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":60620},{"name":"revert_transfer_ownership","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":21895},{"name":"admin_balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"i"}],"stateMutability":"view","type":"function","gas":3391},{"name":"withdraw_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":27847},{"name":"donate_admin_fees","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":147723},{"name":"kill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":37908},{"name":"unkill_me","outputs":[],"inputs":[],"stateMutability":"nonpayable","type":"function","gas":22045},{"name":"coins","outputs":[{"type":"address","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2130},{"name":"balances","outputs":[{"type":"uint256","name":""}],"inputs":[{"type":"uint256","name":"arg0"}],"stateMutability":"view","type":"function","gas":2160},{"name":"fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2081},{"name":"admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2111},{"name":"owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2141},{"name":"lp_token","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2171},{"name":"initial_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2201},{"name":"future_A","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2231},{"name":"initial_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2261},{"name":"future_A_time","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2291},{"name":"admin_actions_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2321},{"name":"transfer_ownership_deadline","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2351},{"name":"future_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2381},{"name":"future_admin_fee","outputs":[{"type":"uint256","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2411},{"name":"future_owner","outputs":[{"type":"address","name":""}],"inputs":[],"stateMutability":"view","type":"function","gas":2441}]
Contract Creation Code
610120614f67610140396020614f6760c03960c05160a01c1561002157600080fd5b60206020614f670160c03960c05160a01c1561003c57600080fd5b60206040614f670160c03960c05160a01c1561005757600080fd5b60206060614f670160c03960c05160a01c1561007257600080fd5b60206080614f670160c03960c05160a01c1561008d57600080fd5b602060a0614f670160c03960c05160a01c156100a857600080fd5b61026060006004818352015b600061016061026051600481106100ca57600080fd5b6020020151186100d957600080fd5b5b81516001018083528114156100b4575b5050600060c052602060c0206101605181556101805160018201556101a05160028201556101c051600382015550610200516064808202821582848304141761013257600080fd5b80905090509050600655610200516064808202821582848304141761015657600080fd5b8090509050905060075561022051600255610240516003556101405160045542624f1a0081818301101561018957600080fd5b808201905090506010556101e051600555614f4f56341561000a57600080fd5b600436101561001857614daa565b600035601c526000156101c1575b610140526009546101605260075461018052610160514210156101ae576006546101a0526008546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610333575b61014052670de0b6b3a764000061016052670de0b6b3a764000061018052670de0b6b3a76400006101a052670de0b6b3a76400006101c0526101e060006004818352015b6101606101e0516004811061027e57600080fd5b60200201516101e0516004811061029457600080fd5b600160c052602060c020015480820282158284830414176102b457600080fd5b80905090509050670de0b6b3a7640000808204905090506101606101e051600481106102df57600080fd5b60200201525b815160010180835281141561026a575b505060806101e0525b60006101e0511115156103105761032c565b60206101e05103610160015160206101e051036101e0526102fe565b6101405156005b600015610454575b6101c0526101405261016052610180526101a052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a764000061022052670de0b6b3a76400006102405261026060006004818352015b6101e061026051600481106103a357600080fd5b602002015161014061026051600481106103bc57600080fd5b602002015180820282158284830414176103d557600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0610260516004811061040057600080fd5b60200201525b815160010180835281141561038f575b50506080610260525b6000610260511115156104315761044d565b602061026051036101e00151602061026051036102605261041f565b6101c05156005b600015610764575b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110156104af57600080fd5b808201905090508152505b8151600101808352811415610487575b50506102005115156104e55760006000526000516101e05156505b61020051610240526101c0516004808202821582848304141761050757600080fd5b8090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141761055e57600080fd5b809050905090506102c0516004808202821582848304141761057f57600080fd5b80905090509050808061059157600080fd5b8204905090506102a0525b8151600101808352811415610532575b50506102405161022052610260516102005180820282158284830414176105d257600080fd5b809050905090506064808204905090506102a051600480820282158284830414176105fc57600080fd5b8090509050905081818301101561061257600080fd5b8082019050905061024051808202821582848304141761063157600080fd5b809050905090506102605160648082101561064b57600080fd5b8082039050905061024051808202821582848304141761066a57600080fd5b8090509050905060648082049050905060056102a051808202821582848304141761069457600080fd5b809050905090508181830110156106aa57600080fd5b8082019050905080806106bc57600080fd5b82049050905061024052610220516102405111156107115760016102405161022051808210156106eb57600080fd5b8082039050905011151561070c576102405160005250506000516101e05156505b61074a565b600161022051610240518082101561072857600080fd5b80820390509050111515610749576102405160005250506000516101e05156505b5b5b815160010180835281141561051e575b505060006000fd005b60001561091d575b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e0516101405161020052610160516102205261018051610240526101a05161026052610260516102405161022051610200516006580161033b565b6102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102c080516103405280602001516103605280604001516103805280606001516103a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a051610340516103c052610360516103e05261038051610400526103a051610420526101c051610440526104405161042051610400516103e0516103c0516006580161045c565b6104a0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516000526000516101e0515650005b63bb7b8b806000511415610af8576101405160065801610226565b61016052610180526101a0526101c0526101405261016080516101e052806020015161020052806040015161022052806060015161024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610280516103205261032051610300516102e0516102c0516102a0516006580161045c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516101405260206101e060046318160ddd6101805261019c6005545afa610a9857600080fd5b601f3d11610aa557600080fd5b6000506101e0516101605261014051670de0b6b3a76400008082028215828483041417610ad157600080fd5b80905090509050610160518080610ae757600080fd5b82049050905060005260206000f350005b63cf701ff76000511415610e125760843560011c15610b1657600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006004818352015b60843515610c5c576101606102005160048110610c2057600080fd5b60200201805160046102005160048110610c3957600080fd5b6020020135818183011015610c4d57600080fd5b80820190509050815250610ca6565b6101606102005160048110610c7057600080fd5b60200201805160046102005160048110610c8957600080fd5b602002013580821015610c9b57600080fd5b808203905090508152505b5b8151600101808352811415610c04575b50506101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a051610260526101c05161028052610140516102a0526102a051610280516102605161024051610220516006580161076c565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260206102a060046318160ddd6102405261025c6005545afa610d6357600080fd5b601f3d11610d7057600080fd5b6000506102a0516102205260006102405260843515610dae57610200516101e05180821015610d9e57600080fd5b8082039050905061024052610dcf565b6101e0516102005180821015610dc357600080fd5b80820390509050610240525b61024051610220518082028215828483041417610deb57600080fd5b809050905090506101e0518080610e0157600080fd5b82049050905060005260206000f350005b63029b2f3460005114156117635762ffffff5415610e2f57600080fd5b600162ffffff55600f5415610e4357600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526005546102005260206102a060046318160ddd6102405261025c610200515afa610f4e57600080fd5b601f3d11610f5b57600080fd5b6000506102a05161022052610160516102405261018051610260526101a051610280526101c0516102a0526102c060006004818352015b610220511515610fc157600060046102c05160048110610fb157600080fd5b602002013511610fc057600080fd5b5b6102406102c05160048110610fd557600080fd5b60200201805160046102c05160048110610fee57600080fd5b602002013581818301101561100257600080fd5b808201905090508152505b8151600101808352811415610f92575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101405161036052610360516103405161032051610300516102e0516006580161076c565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526101e0516102c051116110ea57600080fd5b6102c0516102e05260a03661030037600061022051111561142c576002546004808202821582848304141761111e57600080fd5b80905090509050600c808204905090506103a0526003546103c0526103e060006004818352015b6102c0516101606103e0516004811061115d57600080fd5b6020020151808202821582848304141761117657600080fd5b809050905090506101e051808061118c57600080fd5b820490509050610400526000610420526102406103e051600481106111b057600080fd5b602002015161044052610440516104005111156111ec576104005161044051808210156111dc57600080fd5b808203905090506104205261120d565b61044051610400518082101561120157600080fd5b80820390509050610420525b6103a05161042051808202821582848304141761122957600080fd5b809050905090506402540be400808204905090506103006103e0516004811061125157600080fd5b6020020152610440516103006103e0516004811061126e57600080fd5b60200201516103c051808202821582848304141761128b57600080fd5b809050905090506402540be40080820490509050808210156112ac57600080fd5b808203905090506103e051600481106112c457600080fd5b600160c052602060c02001556102406103e051600481106112e457600080fd5b6020020180516103006103e051600481106112fe57600080fd5b60200201518082101561131057600080fd5b808203905090508152505b8151600101808352811415611145575b50506101406103e0525b6103e0515160206103e051016103e0526103e06103e051101561135757611335565b6102405161040052610260516104205261028051610440526102a05161046052610140516104805261048051610460516104405161042051610400516006580161076c565b6104e0526103c06103e0525b6103e0515260206103e051036103e0526101406103e0511015156113cb576113a8565b6104e0516102e052610220516102e0516101e051808210156113ec57600080fd5b80820390509050808202821582848304141761140757600080fd5b809050905090506101e051808061141d57600080fd5b82049050905061038052611461565b600160c052602060c0206102405181556102605160018201556102805160028201556102a0516003820155506102c051610380525b60843561038051101515156114b5576308c379a06103a05260206103c05260146103e0527f536c697070616765207363726577656420796f75000000000000000000000000610400526103e05060646103bcfd5b6103a060006004818352015b600060046103a051600481106114d657600080fd5b6020020135111561165f5760006004610420527f23b872dd000000000000000000000000000000000000000000000000000000006104405261042060048060208461048001018260208501600060045af1505080518201915050336020826104800101526020810190503060208261048001015260208101905060046103a0516004811061156357600080fd5b6020020135602082610480010152602081019050806104805261048090508051602001806105408284600060045af161159b57600080fd5b505060206106206105405161056060006103a051600481106115bc57600080fd5b600060c052602060c02001545af16115d357600080fd5b60203d808211156115e457806115e6565b815b90509050610600526106008051602001806103c08284600060045af161160b57600080fd5b505060006103c051111561165e576103c080602001516000825180602090131561163457600080fd5b809190121561164257600080fd5b806020036101000a8204905090509050151561165d57600080fd5b5b5b5b81516001018083528114156114c1575b5050602061044060446340c10f196103a052336103c052610380516103e0526103bc6000610200515af16116a357600080fd5b601f3d116116b057600080fd5b600050610440506004356103a0526024356103c0526044356103e0526064356104005261030051610420526103205161044052610340516104605261036051610480526102c0516104a052610220516103805181818301101561171257600080fd5b808201905090506104c052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d6101406103a0a261038051600052600062ffffff5560206000f350600062ffffff55005b600015611c25575b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511861179d57600080fd5b60006101605112156117ae57600080fd5b600461016051126117be57600080fd5b60006101405112156117cf57600080fd5b600461014051126117df57600080fd5b6101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161045c565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605261024051600480820282158284830414176118f757600080fd5b8090509050905061028052610260516102a0526060366102c03761032060006004818352015b6101405161032051141561193857610180516102e05261196e565b61016051610320511815611968576101a0610320516004811061195a57600080fd5b60200201516102e05261196d565b6119ea565b5b6102c080516102e05181818301101561198657600080fd5b808201905090508152506102a0516102605180820282158284830414176119ac57600080fd5b809050905090506102e051600480820282158284830414176119cd57600080fd5b8090509050905080806119df57600080fd5b8204905090506102a0525b815160010180835281141561191d575b50506102a051610260518082028215828483041417611a1857600080fd5b8090509050905060648082028215828483041417611a3557600080fd5b809050905090506102805160048082028215828483041417611a5657600080fd5b809050905090508080611a6857600080fd5b8204905090506102a0526102c0516102605160648082028215828483041417611a9057600080fd5b80905090509050610280518080611aa657600080fd5b820490509050818183011015611abb57600080fd5b80820190509050610320526102605161034052610360600060ff818352015b610340516103005261034051610340518082028215828483041417611afe57600080fd5b809050905090506102a051818183011015611b1857600080fd5b808201905090506002610340518082028215828483041417611b3957600080fd5b8090509050905061032051818183011015611b5357600080fd5b808201905090506102605180821015611b6b57600080fd5b808203905090508080611b7d57600080fd5b8204905090506103405261030051610340511115611bd2576001610340516103005180821015611bac57600080fd5b80820390509050111515611bcd576103405160005250506000516102205156505b611c0b565b6001610300516103405180821015611be957600080fd5b80820390509050111515611c0a576103405160005250506000516102205156505b5b5b8151600101808352811415611ada575b505060006000fd005b635e0d443f6000511415611f255760043580806000811215611c4357195b607f1c15611c5057600080fd5b90505060243580806000811215611c6357195b607f1c15611c7057600080fd5b9050506101405161016051610180516101a05160065801610226565b6101c0526101e05261020052610220526101a0526101805261016052610140526101c080516101405280602001516101605280604001516101805280606001516101a05250670de0b6b3a76400006101c052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a76400006102205261014060043560048110611d1857600080fd5b60200201516044356101c060043560048110611d3357600080fd5b60200201518082028215828483041417611d4c57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611d7257600080fd5b80820190509050610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051600435610280526024356102a052610240516102c052610140516102e052610160516103005261018051610320526101a051610340526103405161032051610300516102e0516102c0516102a051610280516006580161176b565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102605261014060243560048110611e4757600080fd5b60200201516102605180821015611e5d57600080fd5b80820390509050600180821015611e7357600080fd5b8082039050905061028052600254610280518082028215828483041417611e9957600080fd5b809050905090506402540be400808204905090506102a052610280516102a05180821015611ec657600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611eea57600080fd5b809050905090506101c060243560048110611f0457600080fd5b60200201518080611f1457600080fd5b82049050905060005260206000f350005b633df0212460005114156127c85762ffffff5415611f4257600080fd5b600162ffffff5560043580806000811215611f5957195b607f1c15611f6657600080fd5b90505060243580806000811215611f7957195b607f1c15611f8657600080fd5b905050600f5415611f9657600080fd5b60018060c052602060c020546101405260018160c052602060c02001546101605260028160c052602060c02001546101805260038160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a0516102805161026051610240516006580161033b565b6103005261032052610340526103605261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101c05280602001516101e05280604001516102005280606001516102205250670de0b6b3a764000061024052670de0b6b3a764000061026052670de0b6b3a764000061028052670de0b6b3a76400006102a0526101c0600435600481106120cf57600080fd5b6020020151604435610240600435600481106120ea57600080fd5b6020020151808202821582848304141761210357600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561212957600080fd5b808201905090506102c0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160043561030052602435610320526102c051610340526101c051610360526101e05161038052610200516103a052610220516103c0526103c0516103a05161038051610360516103405161032051610300516006580161176b565b610420526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610420516102e0526101c06024356004811061221e57600080fd5b60200201516102e0518082101561223457600080fd5b8082039050905060018082101561224a57600080fd5b808203905090506103005261030051600254808202821582848304141761227057600080fd5b809050905090506402540be400808204905090506103205261030051610320518082101561229d57600080fd5b80820390509050670de0b6b3a764000080820282158284830414176122c157600080fd5b80905090509050610240602435600481106122db57600080fd5b602002015180806122eb57600080fd5b82049050905061030052606435610300511015151561236e576308c379a061034052602061036052602e610380527f45786368616e676520726573756c74656420696e20666577657220636f696e736103a0527f207468616e2065787065637465640000000000000000000000000000000000006103c05261038050608461035cfd5b61032051600354808202821582848304141761238957600080fd5b809050905090506402540be400808204905090506103405261034051670de0b6b3a764000080820282158284830414176123c257600080fd5b80905090509050610240602435600481106123dc57600080fd5b602002015180806123ec57600080fd5b820490509050610340526101406004356004811061240957600080fd5b602002015160443581818301101561242057600080fd5b808201905090506004356004811061243757600080fd5b600160c052602060c02001556101406024356004811061245657600080fd5b6020020151610300518082101561246c57600080fd5b80820390509050610340518082101561248457600080fd5b808203905090506024356004811061249b57600080fd5b600160c052602060c0200155600060046103c0527f23b872dd000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905030602082610420010152602081019050604435602082610420010152602081019050806104205261042090508051602001806104e08284600060045af161254c57600080fd5b505060206105c06104e05161050060006004356004811061256c57600080fd5b600060c052602060c02001545af161258357600080fd5b60203d808211156125945780612596565b815b905090506105a0526105a08051602001806103608284600060045af16125bb57600080fd5b5050600061036051111561260e576103608060200151600082518060209013156125e457600080fd5b80919012156125f257600080fd5b806020036101000a8204905090509050151561260d57600080fd5b5b600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905061030051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af16126a457600080fd5b505060206105806104c0516104e06000602435600481106126c457600080fd5b600060c052602060c02001545af16126db57600080fd5b60203d808211156126ec57806126ee565b815b90509050610560526105608051602001806103608284600060045af161271357600080fd5b505060006103605111156127665761036080602001516000825180602090131561273c57600080fd5b809190121561274a57600080fd5b806020036101000a8204905090509050151561276557600080fd5b5b6004356103c0526044356103e052602435610400526103005161042052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103c0a261030051600052600062ffffff5560206000f350600062ffffff55005b637d49d8756000511415612bb55762ffffff54156127e557600080fd5b600162ffffff556005546101405260206101e060046318160ddd6101805261019c610140515afa61281557600080fd5b601f3d1161282257600080fd5b6000506101e051610160526080366101803761020060006004818352015b610200516004811061285157600080fd5b600160c052602060c02001546102205261022051600435808202821582848304141761287c57600080fd5b8090509050905061016051808061289257600080fd5b82049050905061024052602461020051600481106128af57600080fd5b6020020135610240511015151561292a576308c379a06102605260206102805260306102a0527f5769746864726177616c20726573756c74656420696e20666577657220636f696102c0527f6e73207468616e206578706563746564000000000000000000000000000000006102e0526102a050608461027cfd5b61022051610240518082101561293f57600080fd5b80820390509050610200516004811061295757600080fd5b600160c052602060c020015561024051610180610200516004811061297b57600080fd5b6020020152600060046102c0527fa9059cbb000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150503360208261032001015260208101905061024051602082610320010152602081019050806103205261032090508051602001806103c08284600060045af1612a1657600080fd5b505060206104806103c0516103e060006102005160048110612a3757600080fd5b600060c052602060c02001545af1612a4e57600080fd5b60203d80821115612a5f5780612a61565b815b90509050610460526104608051602001806102608284600060045af1612a8657600080fd5b50506000610260511115612ad957610260806020015160008251806020901315612aaf57600080fd5b8091901215612abd57600080fd5b806020036101000a82049050905090501515612ad857600080fd5b5b5b8151600101808352811415612840575b505060206102a060446379cc67906102005233610220526004356102405261021c6000610140515af1612b1c57600080fd5b601f3d11612b2957600080fd5b6000506102a05061018051610200526101a051610220526101c051610240526101e05161026052608036610280376101605160043580821015612b6b57600080fd5b8082039050905061030052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610200a2600062ffffff556080610180f3600062ffffff55005b6318a7bd7660005114156134be5762ffffff5415612bd257600080fd5b600162ffffff55600f5415612be657600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e052610160516102005261018051610220526101a051610240526101c0516102605261028060006004818352015b6102006102805160048110612d0857600080fd5b60200201805160046102805160048110612d2157600080fd5b602002013580821015612d3357600080fd5b808203905090508152505b8151600101808352811415612cf4575b50506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610200516102a052610220516102c052610240516102e0526102605161030052610140516103205261032051610300516102e0516102c0516102a0516006580161076c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516102805260025460048082028215828483041417612e1257600080fd5b80905090509050600c808204905090506102a0526003546102c0526080366102e03761036060006004818352015b6102006103605160048110612e5457600080fd5b602002015161038052610280516101606103605160048110612e7557600080fd5b60200201518082028215828483041417612e8e57600080fd5b809050905090506101e0518080612ea457600080fd5b8204905090506103a05260006103c052610380516103a0511115612ee7576103a0516103805180821015612ed757600080fd5b808203905090506103c052612f08565b610380516103a05180821015612efc57600080fd5b808203905090506103c0525b6102a0516103c0518082028215828483041417612f2457600080fd5b809050905090506402540be400808204905090506102e06103605160048110612f4c57600080fd5b6020020152610380516102e06103605160048110612f6957600080fd5b60200201516102c0518082028215828483041417612f8657600080fd5b809050905090506402540be4008082049050905080821015612fa757600080fd5b808203905090506103605160048110612fbf57600080fd5b600160c052602060c0200155610380516102e06103605160048110612fe357600080fd5b602002015180821015612ff557600080fd5b80820390509050610200610360516004811061301057600080fd5b60200201525b8151600101808352811415612e40575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e051610300516103205161034051610360516102005161038052610220516103a052610240516103c052610260516103e0526101405161040052610400516103e0516103c0516103a051610380516006580161076c565b61046052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610460516103605260055461038052602061042060046318160ddd6103c0526103dc610380515afa61313257600080fd5b601f3d1161313f57600080fd5b600050610420516103a0526101e051610360518082101561315f57600080fd5b808203905090506103a051808202821582848304141761317e57600080fd5b809050905090506101e051808061319457600080fd5b8204905090506103c05260006103c051186131ae57600080fd5b6103c0805160018181830110156131c457600080fd5b808201905090508152506084356103c05111151515613222576308c379a06103e0526020610400526014610420527f536c697070616765207363726577656420796f75000000000000000000000000610440526104205060646103fcfd5b602061048060446379cc67906103e05233610400526103c051610420526103fc6000610380515af161325357600080fd5b601f3d1161326057600080fd5b600050610480506103e060006004818352015b600060046103e0516004811061328857600080fd5b602002013518156134015760006004610460527fa9059cbb00000000000000000000000000000000000000000000000000000000610480526104606004806020846104c001018260208501600060045af1505080518201915050336020826104c001015260208101905060046103e0516004811061330557600080fd5b60200201356020826104c0010152602081019050806104c0526104c090508051602001806105608284600060045af161333d57600080fd5b505060206106206105605161058060006103e0516004811061335e57600080fd5b600060c052602060c02001545af161337557600080fd5b60203d808211156133865780613388565b815b90509050610600526106008051602001806104008284600060045af16133ad57600080fd5b50506000610400511115613400576104008060200151600082518060209013156133d657600080fd5b80919012156133e457600080fd5b806020036101000a820490509050905015156133ff57600080fd5b5b5b5b8151600101808352811415613273575b50506004356103e0526024356104005260443561042052606435610440526102e051610460526103005161048052610320516104a052610340516104c052610280516104e0526103a0516103c0518082101561346d57600080fd5b8082039050905061050052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd6026101406103e0a26103c051600052600062ffffff5560206000f350600062ffffff55005b600015613833575b610220526101405261016052610180526101a0526101c0526101e0526102005260006101605112156134f757600080fd5b6004610160511261350757600080fd5b610140516004808202821582848304141761352157600080fd5b80905090509050610240526102005161026052606036610280376102e060006004818352015b610160516102e0511815613577576101806102e0516004811061356957600080fd5b60200201516102a05261357c565b6135f8565b61028080516102a05181818301101561359457600080fd5b80820190509050815250610260516102005180820282158284830414176135ba57600080fd5b809050905090506102a051600480820282158284830414176135db57600080fd5b8090509050905080806135ed57600080fd5b820490509050610260525b8151600101808352811415613547575b50506102605161020051808202821582848304141761362657600080fd5b809050905090506064808202821582848304141761364357600080fd5b80905090509050610240516004808202821582848304141761366457600080fd5b80905090509050808061367657600080fd5b8204905090506102605261028051610200516064808202821582848304141761369e57600080fd5b809050905090506102405180806136b457600080fd5b8204905090508181830110156136c957600080fd5b808201905090506102e0526102005161030052610320600060ff818352015b610300516102c0526103005161030051808202821582848304141761370c57600080fd5b809050905090506102605181818301101561372657600080fd5b80820190509050600261030051808202821582848304141761374757600080fd5b809050905090506102e05181818301101561376157600080fd5b80820190509050610200518082101561377957600080fd5b80820390509050808061378b57600080fd5b820490509050610300526102c0516103005111156137e0576001610300516102c051808210156137ba57600080fd5b808203905090501115156137db576103005160005250506000516102205156505b613819565b60016102c05161030051808210156137f757600080fd5b80820390509050111515613818576103005160005250506000516102205156505b5b5b81516001018083528114156136e8575b505060006000fd005b600015613eee575b6101805261014052610160526101405161016051610180516101a05160065801610026565b6101c0526101a0526101805261016052610140526101c0516101a0526101405161016051610180516101a0516101c0516101e051610200516102205160065801610226565b6102405261026052610280526102a05261022052610200526101e0526101c0526101a05261018052610160526101405261024080516101c05280602001516101e052806040015161020052806060015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516101c051610260526101e05161028052610200516102a052610220516102c0526101a0516102e0526102e0516102c0516102a05161028051610260516006580161045c565b610340526102405261022052610200526101e0526101c0526101a052610180526101605261014052610340516102405260206102e060046318160ddd6102805261029c6005545afa6139b457600080fd5b601f3d116139c157600080fd5b6000506102e0516102605261024051610140516102405180820282158284830414176139ec57600080fd5b80905090509050610260518080613a0257600080fd5b82049050905080821015613a1557600080fd5b80820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526101c051610300526101e0516103205261020051610340526102205161036052610280516103805261038051610360516103405161032051610300516102e0516102c051600658016134c6565b6103e0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102a0526101c0516102c0526101e0516102e0526102005161030052610220516103205260025460048082028215828483041417613b2257600080fd5b80905090509050600c808204905090506103405261036060006004818352015b60006103805261016051610360511415613bc4576101c06103605160048110613b6a57600080fd5b6020020151610280518082028215828483041417613b8757600080fd5b80905090509050610240518080613b9d57600080fd5b8204905090506102a05180821015613bb457600080fd5b8082039050905061038052613c43565b6101c06103605160048110613bd857600080fd5b60200201516101c06103605160048110613bf157600080fd5b6020020151610280518082028215828483041417613c0e57600080fd5b80905090509050610240518080613c2457600080fd5b82049050905080821015613c3757600080fd5b80820390509050610380525b6102c06103605160048110613c5757600080fd5b60200201805161034051610380518082028215828483041417613c7957600080fd5b809050905090506402540be4008082049050905080821015613c9a57600080fd5b808203905090508152505b8151600101808352811415613b42575b50506102c06101605160048110613ccb57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015613cfa57613cd8565b6101a0516103a052610160516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526102805161046052610460516104405161042051610400516103e0516103c0516103a051600658016134c6565b6104c052610360610380525b6103805152602061038051036103805261014061038051101515613d8657613d63565b6104c05180821015613d9757600080fd5b808203905090506103605260016103805260016103a05260016103c05260016103e05261036051600180821015613dcd57600080fd5b808203905090506103806101605160048110613de857600080fd5b60200201518080613df857600080fd5b820490509050610360526101c06101605160048110613e1657600080fd5b60200201516102a05180821015613e2c57600080fd5b808203905090506103806101605160048110613e4757600080fd5b60200201518080613e5757600080fd5b8204905090506104005261042080808061036051815250506020810190508080610400516103605180821015613e8c57600080fd5b80820390509050815250506020810190508080610260518152505060609050905060c05260c051610480525b600061048051111515613eca57613ee6565b6020610480510361042001516020610480510361048052613eb8565b610180515650005b63cc2b27d76000511415613f865760243580806000811215613f0c57195b607f1c15613f1957600080fd5b905050600435610140526024356101605261016051610140516006580161383b565b6101c0526101e052610200526101c08080808051610220525050602081019050808080516102405250506020810190508080805161026052505050506102205160005260206000f350005b631a4d01d2600051141561434c5762ffffff5415613fa357600080fd5b600162ffffff5560243580806000811215613fba57195b607f1c15613fc757600080fd5b905050600f5415613fd757600080fd5b606036610140376101405161016051610180516004356101a0526024356101c0526101c0516101a0516006580161383b565b6102205261024052610260526101805261016052610140526102208080808051610280525050602081019050808080516102a0525050602081019050808080516102c052505050506102808051610140528060200151610160528060400151610180525060443561014051101515156140c1576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b602435600481106140d157600080fd5b600160c052602060c020018054610140516101605160035480820282158284830414176140fd57600080fd5b809050905090506402540be4008082049050905081818301101561412057600080fd5b808201905090508082101561413457600080fd5b80820390509050815550602061024060446379cc67906101a052336101c0526004356101e0526101bc60006005545af161416d57600080fd5b601f3d1161417a57600080fd5b6000506102405060006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061014051602082610260010152602081019050806102605261026090508051602001806103008284600060045af161421757600080fd5b505060206103c06103005161032060006024356004811061423757600080fd5b600060c052602060c02001545af161424e57600080fd5b60203d8082111561425f5780614261565b815b905090506103a0526103a08051602001806101a08284600060045af161428657600080fd5b505060006101a05111156142d9576101a08060200151600082518060209013156142af57600080fd5b80919012156142bd57600080fd5b806020036101000a820490509050905015156142d857600080fd5b5b60043561020052610140516102205261018051600435808210156142fc57600080fd5b8082039050905061024052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610200a261014051600052600062ffffff5560206000f350600062ffffff55005b633c157e6460005114156144f057600454331461436857600080fd5b6008546201518081818301101561437e57600080fd5b8082019050905042101561439157600080fd5b42620151808181830110156143a557600080fd5b8082019050905060243510156143ba57600080fd5b6101405160065801610026565b61016052610140526101605161014052600435606480820282158284830414176143f057600080fd5b80905090509050610160526000600435111561441357620f424060043510614416565b60005b61441f57600080fd5b61014051610160511015614462576101405161016051600a808202821582848304141761444b57600080fd5b80905090509050101561445d57600080fd5b614493565b61014051600a808202821582848304141761447c57600080fd5b8090509050905061016051111561449257600080fd5b5b6101405160065561016051600755426008556024356009556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a6588600051141561457557600454331461450c57600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600655610140516007554260085542600955610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a1467600051141561463357600454331461459157600080fd5b600a541561459e57600080fd5b64012a05f20060043511156145b257600080fd5b6402540be40060243511156145c657600080fd5b426203f4808181830110156145da57600080fd5b808201905090506101405261014051600a55600435600c55602435600d556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156146c757600454331461464f57600080fd5b600a5442101561465e57600080fd5b6000600a541861466d57600080fd5b6000600a55600c5461014052600d546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb60005114156146ea5760045433146146e357600080fd5b6000600a55005b636b441a40600051141561477e5760043560a01c1561470857600080fd5b600454331461471657600080fd5b600b541561472357600080fd5b426203f48081818301101561473757600080fd5b808201905090506101405261014051600b55600435600e55600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae60005114156147f757600454331461479a57600080fd5b600b544210156147a957600080fd5b6000600b54186147b857600080fd5b6000600b55600e546101405261014051600455610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf193600051141561481a57600454331461481357600080fd5b6000600b55005b63e2e7d26460005114156148b65760206101c060246370a0823161014052306101605261015c6004356004811061485057600080fd5b600060c052602060c02001545afa61486757600080fd5b601f3d1161487457600080fd5b6000506101c0516004356004811061488b57600080fd5b600160c052602060c0200154808210156148a457600080fd5b8082039050905060005260206000f350005b6330c540856000511415614ad15760045433146148d257600080fd5b61014060006004818352015b61014051600481106148ef57600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61492657600080fd5b601f3d1161493357600080fd5b60005061022051610140516004811061494b57600080fd5b600160c052602060c02001548082101561496457600080fd5b80820390509050610180526000610180511115614abc5760006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1614a1157600080fd5b505060206103c0610300516103206000610160515af1614a3057600080fd5b60203d80821115614a415780614a43565b815b905090506103a0526103a08051602001806101a08284600060045af1614a6857600080fd5b505060006101a0511115614abb576101a0806020015160008251806020901315614a9157600080fd5b8091901215614a9f57600080fd5b806020036101000a82049050905090501515614aba57600080fd5b5b5b5b81516001018083528114156148de575b5050005b63524c39016000511415614b7f576004543314614aed57600080fd5b61014060006004818352015b60206101e060246370a0823161016052306101805261017c6101405160048110614b2257600080fd5b600060c052602060c02001545afa614b3957600080fd5b601f3d11614b4657600080fd5b6000506101e0516101405160048110614b5e57600080fd5b600160c052602060c02001555b8151600101808352811415614af9575b5050005b63e36988536000511415614bb0576004543314614b9b57600080fd5b4260105411614ba957600080fd5b6001600f55005b633046f9726000511415614bd3576004543314614bcc57600080fd5b6000600f55005b63c66106576000511415614c085760043560048110614bf157600080fd5b600060c052602060c020015460005260206000f350005b634903b0d16000511415614c3d5760043560048110614c2657600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f436000511415614c595760025460005260206000f350005b63fee3f7f96000511415614c755760035460005260206000f350005b638da5cb5b6000511415614c915760045460005260206000f350005b6382c630666000511415614cad5760055460005260206000f350005b635409491a6000511415614cc95760065460005260206000f350005b63b4b577ad6000511415614ce55760075460005260206000f350005b632081066c6000511415614d015760085460005260206000f350005b63140522886000511415614d1d5760095460005260206000f350005b63405e28f86000511415614d3957600a5460005260206000f350005b63e0a0b5866000511415614d5557600b5460005260206000f350005b6358680d0b6000511415614d7157600c5460005260206000f350005b63e38244626000511415614d8d57600d5460005260206000f350005b631ec0cdc16000511415614da957600e5460005260206000f350005b5b60006000fd5b61019f614f4f0361019f60003961019f614f4f036000f3000000000000000000000000f9589b4da15ffe6825df987e9651f7a4db8a296e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a3d87fffce63b53e0d54faa1cc983b7eb0b74a9c00000000000000000000000006325440d014e39736583c165c2963ba99faf14e000000000000000000000000aa17a236f2badc98ddc0cf999abb47d47fc0a6cf000000000000000000000000da75443f636e0949a1979088da5430f8eb6f1177000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000003d09000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x341561000a57600080fd5b600436101561001857614daa565b600035601c526000156101c1575b610140526009546101605260075461018052610160514210156101ae576006546101a0526008546101c0526101a051610180511115610107576101a051610180516101a0518082101561007857600080fd5b80820390509050426101c0518082101561009157600080fd5b8082039050905080820282158284830414176100ac57600080fd5b80905090509050610160516101c051808210156100c857600080fd5b8082039050905080806100da57600080fd5b8204905090508181830110156100ef57600080fd5b808201905090506000526000516101405156506101a9565b6101a0516101a051610180518082101561012057600080fd5b80820390509050426101c0518082101561013957600080fd5b80820390509050808202821582848304141761015457600080fd5b80905090509050610160516101c0518082101561017057600080fd5b80820390509050808061018257600080fd5b8204905090508082101561019557600080fd5b808203905090506000526000516101405156505b6101bf565b610180516000526000516101405156505b005b63f446c1d060005114156101f45760065801610026565b610140526101405160648082049050905060005260206000f350005b6376a2f0f0600051141561021e5760065801610026565b610140526101405160005260206000f350005b600015610333575b61014052670de0b6b3a764000061016052670de0b6b3a764000061018052670de0b6b3a76400006101a052670de0b6b3a76400006101c0526101e060006004818352015b6101606101e0516004811061027e57600080fd5b60200201516101e0516004811061029457600080fd5b600160c052602060c020015480820282158284830414176102b457600080fd5b80905090509050670de0b6b3a7640000808204905090506101606101e051600481106102df57600080fd5b60200201525b815160010180835281141561026a575b505060806101e0525b60006101e0511115156103105761032c565b60206101e05103610160015160206101e051036101e0526102fe565b6101405156005b600015610454575b6101c0526101405261016052610180526101a052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a764000061022052670de0b6b3a76400006102405261026060006004818352015b6101e061026051600481106103a357600080fd5b602002015161014061026051600481106103bc57600080fd5b602002015180820282158284830414176103d557600080fd5b80905090509050670de0b6b3a7640000808204905090506101e0610260516004811061040057600080fd5b60200201525b815160010180835281141561038f575b50506080610260525b6000610260511115156104315761044d565b602061026051036101e00151602061026051036102605261041f565b6101c05156005b600015610764575b6101e0526101405261016052610180526101a0526101c0526040366102003761026060006004818352015b602061026051026101400151610240526102008051610240518181830110156104af57600080fd5b808201905090508152505b8151600101808352811415610487575b50506102005115156104e55760006000526000516101e05156505b61020051610240526101c0516004808202821582848304141761050757600080fd5b8090509050905061026052610280600060ff818352015b610240516102a0526102e060006004818352015b60206102e0510261014001516102c0526102a05161024051808202821582848304141761055e57600080fd5b809050905090506102c0516004808202821582848304141761057f57600080fd5b80905090509050808061059157600080fd5b8204905090506102a0525b8151600101808352811415610532575b50506102405161022052610260516102005180820282158284830414176105d257600080fd5b809050905090506064808204905090506102a051600480820282158284830414176105fc57600080fd5b8090509050905081818301101561061257600080fd5b8082019050905061024051808202821582848304141761063157600080fd5b809050905090506102605160648082101561064b57600080fd5b8082039050905061024051808202821582848304141761066a57600080fd5b8090509050905060648082049050905060056102a051808202821582848304141761069457600080fd5b809050905090508181830110156106aa57600080fd5b8082019050905080806106bc57600080fd5b82049050905061024052610220516102405111156107115760016102405161022051808210156106eb57600080fd5b8082039050905011151561070c576102405160005250506000516101e05156505b61074a565b600161022051610240518082101561072857600080fd5b80820390509050111515610749576102405160005250506000516101e05156505b5b5b815160010180835281141561051e575b505060006000fd005b60001561091d575b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e0516101405161020052610160516102205261018051610240526101a05161026052610260516102405161022051610200516006580161033b565b6102c0526102e05261030052610320526101e0526101c0526101a0526101805261016052610140526102c080516103405280602001516103605280604001516103805280606001516103a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05161030051610320516103405161036051610380516103a051610340516103c052610360516103e05261038051610400526103a051610420526101c051610440526104405161042051610400516103e0516103c0516006580161045c565b6104a0526103a05261038052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526104a0516000526000516101e0515650005b63bb7b8b806000511415610af8576101405160065801610226565b61016052610180526101a0526101c0526101405261016080516101e052806020015161020052806040015161022052806060015161024052506101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101e0516102a052610200516102c052610220516102e0526102405161030052610280516103205261032051610300516102e0516102c0516102a0516006580161045c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516101405260206101e060046318160ddd6101805261019c6005545afa610a9857600080fd5b601f3d11610aa557600080fd5b6000506101e0516101605261014051670de0b6b3a76400008082028215828483041417610ad157600080fd5b80905090509050610160518080610ae757600080fd5b82049050905060005260206000f350005b63cf701ff76000511415610e125760843560011c15610b1657600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006004818352015b60843515610c5c576101606102005160048110610c2057600080fd5b60200201805160046102005160048110610c3957600080fd5b6020020135818183011015610c4d57600080fd5b80820190509050815250610ca6565b6101606102005160048110610c7057600080fd5b60200201805160046102005160048110610c8957600080fd5b602002013580821015610c9b57600080fd5b808203905090508152505b5b8151600101808352811415610c04575b50506101405161016051610180516101a0516101c0516101e05161020051610160516102205261018051610240526101a051610260526101c05161028052610140516102a0526102a051610280516102605161024051610220516006580161076c565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260206102a060046318160ddd6102405261025c6005545afa610d6357600080fd5b601f3d11610d7057600080fd5b6000506102a0516102205260006102405260843515610dae57610200516101e05180821015610d9e57600080fd5b8082039050905061024052610dcf565b6101e0516102005180821015610dc357600080fd5b80820390509050610240525b61024051610220518082028215828483041417610deb57600080fd5b809050905090506101e0518080610e0157600080fd5b82049050905060005260206000f350005b63029b2f3460005114156117635762ffffff5415610e2f57600080fd5b600162ffffff55600f5415610e4357600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526005546102005260206102a060046318160ddd6102405261025c610200515afa610f4e57600080fd5b601f3d11610f5b57600080fd5b6000506102a05161022052610160516102405261018051610260526101a051610280526101c0516102a0526102c060006004818352015b610220511515610fc157600060046102c05160048110610fb157600080fd5b602002013511610fc057600080fd5b5b6102406102c05160048110610fd557600080fd5b60200201805160046102c05160048110610fee57600080fd5b602002013581818301101561100257600080fd5b808201905090508152505b8151600101808352811415610f92575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c051610240516102e052610260516103005261028051610320526102a051610340526101405161036052610360516103405161032051610300516102e0516006580161076c565b6103c0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103c0516102c0526101e0516102c051116110ea57600080fd5b6102c0516102e05260a03661030037600061022051111561142c576002546004808202821582848304141761111e57600080fd5b80905090509050600c808204905090506103a0526003546103c0526103e060006004818352015b6102c0516101606103e0516004811061115d57600080fd5b6020020151808202821582848304141761117657600080fd5b809050905090506101e051808061118c57600080fd5b820490509050610400526000610420526102406103e051600481106111b057600080fd5b602002015161044052610440516104005111156111ec576104005161044051808210156111dc57600080fd5b808203905090506104205261120d565b61044051610400518082101561120157600080fd5b80820390509050610420525b6103a05161042051808202821582848304141761122957600080fd5b809050905090506402540be400808204905090506103006103e0516004811061125157600080fd5b6020020152610440516103006103e0516004811061126e57600080fd5b60200201516103c051808202821582848304141761128b57600080fd5b809050905090506402540be40080820490509050808210156112ac57600080fd5b808203905090506103e051600481106112c457600080fd5b600160c052602060c02001556102406103e051600481106112e457600080fd5b6020020180516103006103e051600481106112fe57600080fd5b60200201518082101561131057600080fd5b808203905090508152505b8151600101808352811415611145575b50506101406103e0525b6103e0515160206103e051016103e0526103e06103e051101561135757611335565b6102405161040052610260516104205261028051610440526102a05161046052610140516104805261048051610460516104405161042051610400516006580161076c565b6104e0526103c06103e0525b6103e0515260206103e051036103e0526101406103e0511015156113cb576113a8565b6104e0516102e052610220516102e0516101e051808210156113ec57600080fd5b80820390509050808202821582848304141761140757600080fd5b809050905090506101e051808061141d57600080fd5b82049050905061038052611461565b600160c052602060c0206102405181556102605160018201556102805160028201556102a0516003820155506102c051610380525b60843561038051101515156114b5576308c379a06103a05260206103c05260146103e0527f536c697070616765207363726577656420796f75000000000000000000000000610400526103e05060646103bcfd5b6103a060006004818352015b600060046103a051600481106114d657600080fd5b6020020135111561165f5760006004610420527f23b872dd000000000000000000000000000000000000000000000000000000006104405261042060048060208461048001018260208501600060045af1505080518201915050336020826104800101526020810190503060208261048001015260208101905060046103a0516004811061156357600080fd5b6020020135602082610480010152602081019050806104805261048090508051602001806105408284600060045af161159b57600080fd5b505060206106206105405161056060006103a051600481106115bc57600080fd5b600060c052602060c02001545af16115d357600080fd5b60203d808211156115e457806115e6565b815b90509050610600526106008051602001806103c08284600060045af161160b57600080fd5b505060006103c051111561165e576103c080602001516000825180602090131561163457600080fd5b809190121561164257600080fd5b806020036101000a8204905090509050151561165d57600080fd5b5b5b5b81516001018083528114156114c1575b5050602061044060446340c10f196103a052336103c052610380516103e0526103bc6000610200515af16116a357600080fd5b601f3d116116b057600080fd5b600050610440506004356103a0526024356103c0526044356103e0526064356104005261030051610420526103205161044052610340516104605261036051610480526102c0516104a052610220516103805181818301101561171257600080fd5b808201905090506104c052337f3f1915775e0c9a38a57a7bb7f1f9005f486fb904e1f84aa215364d567319a58d6101406103a0a261038051600052600062ffffff5560206000f350600062ffffff55005b600015611c25575b610220526101405261016052610180526101a0526101c0526101e0526102005261016051610140511861179d57600080fd5b60006101605112156117ae57600080fd5b600461016051126117be57600080fd5b60006101405112156117cf57600080fd5b600461014051126117df57600080fd5b6101405161016051610180516101a0516101c0516101e05161020051610220516102405160065801610026565b610260526102405261022052610200526101e0526101c0526101a05261018052610160526101405261026051610240526101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101a051610280526101c0516102a0526101e0516102c052610200516102e0526102405161030052610300516102e0516102c0516102a051610280516006580161045c565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605261024051600480820282158284830414176118f757600080fd5b8090509050905061028052610260516102a0526060366102c03761032060006004818352015b6101405161032051141561193857610180516102e05261196e565b61016051610320511815611968576101a0610320516004811061195a57600080fd5b60200201516102e05261196d565b6119ea565b5b6102c080516102e05181818301101561198657600080fd5b808201905090508152506102a0516102605180820282158284830414176119ac57600080fd5b809050905090506102e051600480820282158284830414176119cd57600080fd5b8090509050905080806119df57600080fd5b8204905090506102a0525b815160010180835281141561191d575b50506102a051610260518082028215828483041417611a1857600080fd5b8090509050905060648082028215828483041417611a3557600080fd5b809050905090506102805160048082028215828483041417611a5657600080fd5b809050905090508080611a6857600080fd5b8204905090506102a0526102c0516102605160648082028215828483041417611a9057600080fd5b80905090509050610280518080611aa657600080fd5b820490509050818183011015611abb57600080fd5b80820190509050610320526102605161034052610360600060ff818352015b610340516103005261034051610340518082028215828483041417611afe57600080fd5b809050905090506102a051818183011015611b1857600080fd5b808201905090506002610340518082028215828483041417611b3957600080fd5b8090509050905061032051818183011015611b5357600080fd5b808201905090506102605180821015611b6b57600080fd5b808203905090508080611b7d57600080fd5b8204905090506103405261030051610340511115611bd2576001610340516103005180821015611bac57600080fd5b80820390509050111515611bcd576103405160005250506000516102205156505b611c0b565b6001610300516103405180821015611be957600080fd5b80820390509050111515611c0a576103405160005250506000516102205156505b5b5b8151600101808352811415611ada575b505060006000fd005b635e0d443f6000511415611f255760043580806000811215611c4357195b607f1c15611c5057600080fd5b90505060243580806000811215611c6357195b607f1c15611c7057600080fd5b9050506101405161016051610180516101a05160065801610226565b6101c0526101e05261020052610220526101a0526101805261016052610140526101c080516101405280602001516101605280604001516101805280606001516101a05250670de0b6b3a76400006101c052670de0b6b3a76400006101e052670de0b6b3a764000061020052670de0b6b3a76400006102205261014060043560048110611d1857600080fd5b60200201516044356101c060043560048110611d3357600080fd5b60200201518082028215828483041417611d4c57600080fd5b80905090509050670de0b6b3a764000080820490509050818183011015611d7257600080fd5b80820190509050610240526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051600435610280526024356102a052610240516102c052610140516102e052610160516103005261018051610320526101a051610340526103405161032051610300516102e0516102c0516102a051610280516006580161176b565b6103a052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102605261014060243560048110611e4757600080fd5b60200201516102605180821015611e5d57600080fd5b80820390509050600180821015611e7357600080fd5b8082039050905061028052600254610280518082028215828483041417611e9957600080fd5b809050905090506402540be400808204905090506102a052610280516102a05180821015611ec657600080fd5b80820390509050670de0b6b3a76400008082028215828483041417611eea57600080fd5b809050905090506101c060243560048110611f0457600080fd5b60200201518080611f1457600080fd5b82049050905060005260206000f350005b633df0212460005114156127c85762ffffff5415611f4257600080fd5b600162ffffff5560043580806000811215611f5957195b607f1c15611f6657600080fd5b90505060243580806000811215611f7957195b607f1c15611f8657600080fd5b905050600f5415611f9657600080fd5b60018060c052602060c020546101405260018160c052602060c02001546101605260028160c052602060c02001546101805260038160c052602060c02001546101a052506101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a0516102805161026051610240516006580161033b565b6103005261032052610340526103605261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101c05280602001516101e05280604001516102005280606001516102205250670de0b6b3a764000061024052670de0b6b3a764000061026052670de0b6b3a764000061028052670de0b6b3a76400006102a0526101c0600435600481106120cf57600080fd5b6020020151604435610240600435600481106120ea57600080fd5b6020020151808202821582848304141761210357600080fd5b80905090509050670de0b6b3a76400008082049050905081818301101561212957600080fd5b808201905090506102c0526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160043561030052602435610320526102c051610340526101c051610360526101e05161038052610200516103a052610220516103c0526103c0516103a05161038051610360516103405161032051610300516006580161176b565b610420526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610420516102e0526101c06024356004811061221e57600080fd5b60200201516102e0518082101561223457600080fd5b8082039050905060018082101561224a57600080fd5b808203905090506103005261030051600254808202821582848304141761227057600080fd5b809050905090506402540be400808204905090506103205261030051610320518082101561229d57600080fd5b80820390509050670de0b6b3a764000080820282158284830414176122c157600080fd5b80905090509050610240602435600481106122db57600080fd5b602002015180806122eb57600080fd5b82049050905061030052606435610300511015151561236e576308c379a061034052602061036052602e610380527f45786368616e676520726573756c74656420696e20666577657220636f696e736103a0527f207468616e2065787065637465640000000000000000000000000000000000006103c05261038050608461035cfd5b61032051600354808202821582848304141761238957600080fd5b809050905090506402540be400808204905090506103405261034051670de0b6b3a764000080820282158284830414176123c257600080fd5b80905090509050610240602435600481106123dc57600080fd5b602002015180806123ec57600080fd5b820490509050610340526101406004356004811061240957600080fd5b602002015160443581818301101561242057600080fd5b808201905090506004356004811061243757600080fd5b600160c052602060c02001556101406024356004811061245657600080fd5b6020020151610300518082101561246c57600080fd5b80820390509050610340518082101561248457600080fd5b808203905090506024356004811061249b57600080fd5b600160c052602060c0200155600060046103c0527f23b872dd000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905030602082610420010152602081019050604435602082610420010152602081019050806104205261042090508051602001806104e08284600060045af161254c57600080fd5b505060206105c06104e05161050060006004356004811061256c57600080fd5b600060c052602060c02001545af161258357600080fd5b60203d808211156125945780612596565b815b905090506105a0526105a08051602001806103608284600060045af16125bb57600080fd5b5050600061036051111561260e576103608060200151600082518060209013156125e457600080fd5b80919012156125f257600080fd5b806020036101000a8204905090509050151561260d57600080fd5b5b600060046103c0527fa9059cbb000000000000000000000000000000000000000000000000000000006103e0526103c060048060208461042001018260208501600060045af15050805182019150503360208261042001015260208101905061030051602082610420010152602081019050806104205261042090508051602001806104c08284600060045af16126a457600080fd5b505060206105806104c0516104e06000602435600481106126c457600080fd5b600060c052602060c02001545af16126db57600080fd5b60203d808211156126ec57806126ee565b815b90509050610560526105608051602001806103608284600060045af161271357600080fd5b505060006103605111156127665761036080602001516000825180602090131561273c57600080fd5b809190121561274a57600080fd5b806020036101000a8204905090509050151561276557600080fd5b5b6004356103c0526044356103e052602435610400526103005161042052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd9714060806103c0a261030051600052600062ffffff5560206000f350600062ffffff55005b637d49d8756000511415612bb55762ffffff54156127e557600080fd5b600162ffffff556005546101405260206101e060046318160ddd6101805261019c610140515afa61281557600080fd5b601f3d1161282257600080fd5b6000506101e051610160526080366101803761020060006004818352015b610200516004811061285157600080fd5b600160c052602060c02001546102205261022051600435808202821582848304141761287c57600080fd5b8090509050905061016051808061289257600080fd5b82049050905061024052602461020051600481106128af57600080fd5b6020020135610240511015151561292a576308c379a06102605260206102805260306102a0527f5769746864726177616c20726573756c74656420696e20666577657220636f696102c0527f6e73207468616e206578706563746564000000000000000000000000000000006102e0526102a050608461027cfd5b61022051610240518082101561293f57600080fd5b80820390509050610200516004811061295757600080fd5b600160c052602060c020015561024051610180610200516004811061297b57600080fd5b6020020152600060046102c0527fa9059cbb000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150503360208261032001015260208101905061024051602082610320010152602081019050806103205261032090508051602001806103c08284600060045af1612a1657600080fd5b505060206104806103c0516103e060006102005160048110612a3757600080fd5b600060c052602060c02001545af1612a4e57600080fd5b60203d80821115612a5f5780612a61565b815b90509050610460526104608051602001806102608284600060045af1612a8657600080fd5b50506000610260511115612ad957610260806020015160008251806020901315612aaf57600080fd5b8091901215612abd57600080fd5b806020036101000a82049050905090501515612ad857600080fd5b5b5b8151600101808352811415612840575b505060206102a060446379cc67906102005233610220526004356102405261021c6000610140515af1612b1c57600080fd5b601f3d11612b2957600080fd5b6000506102a05061018051610200526101a051610220526101c051610240526101e05161026052608036610280376101605160043580821015612b6b57600080fd5b8082039050905061030052337f9878ca375e106f2a43c3b599fc624568131c4c9a4ba66a14563715763be9d59d610120610200a2600062ffffff556080610180f3600062ffffff55005b6318a7bd7660005114156134be5762ffffff5415612bd257600080fd5b600162ffffff55600f5415612be657600080fd5b6101405160065801610026565b6101605261014052610160516101405260018060c052602060c020546101605260018160c052602060c02001546101805260028160c052602060c02001546101a05260038160c052602060c02001546101c052506101405161016051610180516101a0516101c0516101e051610160516102005261018051610220526101a051610240526101c05161026052610140516102805261028051610260516102405161022051610200516006580161076c565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e052610160516102005261018051610220526101a051610240526101c0516102605261028060006004818352015b6102006102805160048110612d0857600080fd5b60200201805160046102805160048110612d2157600080fd5b602002013580821015612d3357600080fd5b808203905090508152505b8151600101808352811415612cf4575b50506101405161016051610180516101a0516101c0516101e0516102005161022051610240516102605161028051610200516102a052610220516102c052610240516102e0526102605161030052610140516103205261032051610300516102e0516102c0516102a0516006580161076c565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516102805260025460048082028215828483041417612e1257600080fd5b80905090509050600c808204905090506102a0526003546102c0526080366102e03761036060006004818352015b6102006103605160048110612e5457600080fd5b602002015161038052610280516101606103605160048110612e7557600080fd5b60200201518082028215828483041417612e8e57600080fd5b809050905090506101e0518080612ea457600080fd5b8204905090506103a05260006103c052610380516103a0511115612ee7576103a0516103805180821015612ed757600080fd5b808203905090506103c052612f08565b610380516103a05180821015612efc57600080fd5b808203905090506103c0525b6102a0516103c0518082028215828483041417612f2457600080fd5b809050905090506402540be400808204905090506102e06103605160048110612f4c57600080fd5b6020020152610380516102e06103605160048110612f6957600080fd5b60200201516102c0518082028215828483041417612f8657600080fd5b809050905090506402540be4008082049050905080821015612fa757600080fd5b808203905090506103605160048110612fbf57600080fd5b600160c052602060c0200155610380516102e06103605160048110612fe357600080fd5b602002015180821015612ff557600080fd5b80820390509050610200610360516004811061301057600080fd5b60200201525b8151600101808352811415612e40575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e051610300516103205161034051610360516102005161038052610220516103a052610240516103c052610260516103e0526101405161040052610400516103e0516103c0516103a051610380516006580161076c565b61046052610360526103405261032052610300526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610460516103605260055461038052602061042060046318160ddd6103c0526103dc610380515afa61313257600080fd5b601f3d1161313f57600080fd5b600050610420516103a0526101e051610360518082101561315f57600080fd5b808203905090506103a051808202821582848304141761317e57600080fd5b809050905090506101e051808061319457600080fd5b8204905090506103c05260006103c051186131ae57600080fd5b6103c0805160018181830110156131c457600080fd5b808201905090508152506084356103c05111151515613222576308c379a06103e0526020610400526014610420527f536c697070616765207363726577656420796f75000000000000000000000000610440526104205060646103fcfd5b602061048060446379cc67906103e05233610400526103c051610420526103fc6000610380515af161325357600080fd5b601f3d1161326057600080fd5b600050610480506103e060006004818352015b600060046103e0516004811061328857600080fd5b602002013518156134015760006004610460527fa9059cbb00000000000000000000000000000000000000000000000000000000610480526104606004806020846104c001018260208501600060045af1505080518201915050336020826104c001015260208101905060046103e0516004811061330557600080fd5b60200201356020826104c0010152602081019050806104c0526104c090508051602001806105608284600060045af161333d57600080fd5b505060206106206105605161058060006103e0516004811061335e57600080fd5b600060c052602060c02001545af161337557600080fd5b60203d808211156133865780613388565b815b90509050610600526106008051602001806104008284600060045af16133ad57600080fd5b50506000610400511115613400576104008060200151600082518060209013156133d657600080fd5b80919012156133e457600080fd5b806020036101000a820490509050905015156133ff57600080fd5b5b5b5b8151600101808352811415613273575b50506004356103e0526024356104005260443561042052606435610440526102e051610460526103005161048052610320516104a052610340516104c052610280516104e0526103a0516103c0518082101561346d57600080fd5b8082039050905061050052337fb964b72f73f5ef5bf0fdc559b2fab9a7b12a39e47817a547f1f0aee47febd6026101406103e0a26103c051600052600062ffffff5560206000f350600062ffffff55005b600015613833575b610220526101405261016052610180526101a0526101c0526101e0526102005260006101605112156134f757600080fd5b6004610160511261350757600080fd5b610140516004808202821582848304141761352157600080fd5b80905090509050610240526102005161026052606036610280376102e060006004818352015b610160516102e0511815613577576101806102e0516004811061356957600080fd5b60200201516102a05261357c565b6135f8565b61028080516102a05181818301101561359457600080fd5b80820190509050815250610260516102005180820282158284830414176135ba57600080fd5b809050905090506102a051600480820282158284830414176135db57600080fd5b8090509050905080806135ed57600080fd5b820490509050610260525b8151600101808352811415613547575b50506102605161020051808202821582848304141761362657600080fd5b809050905090506064808202821582848304141761364357600080fd5b80905090509050610240516004808202821582848304141761366457600080fd5b80905090509050808061367657600080fd5b8204905090506102605261028051610200516064808202821582848304141761369e57600080fd5b809050905090506102405180806136b457600080fd5b8204905090508181830110156136c957600080fd5b808201905090506102e0526102005161030052610320600060ff818352015b610300516102c0526103005161030051808202821582848304141761370c57600080fd5b809050905090506102605181818301101561372657600080fd5b80820190509050600261030051808202821582848304141761374757600080fd5b809050905090506102e05181818301101561376157600080fd5b80820190509050610200518082101561377957600080fd5b80820390509050808061378b57600080fd5b820490509050610300526102c0516103005111156137e0576001610300516102c051808210156137ba57600080fd5b808203905090501115156137db576103005160005250506000516102205156505b613819565b60016102c05161030051808210156137f757600080fd5b80820390509050111515613818576103005160005250506000516102205156505b5b5b81516001018083528114156136e8575b505060006000fd005b600015613eee575b6101805261014052610160526101405161016051610180516101a05160065801610026565b6101c0526101a0526101805261016052610140526101c0516101a0526101405161016051610180516101a0516101c0516101e051610200516102205160065801610226565b6102405261026052610280526102a05261022052610200526101e0526101c0526101a05261018052610160526101405261024080516101c05280602001516101e052806040015161020052806060015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610240516101c051610260526101e05161028052610200516102a052610220516102c0526101a0516102e0526102e0516102c0516102a05161028051610260516006580161045c565b610340526102405261022052610200526101e0526101c0526101a052610180526101605261014052610340516102405260206102e060046318160ddd6102805261029c6005545afa6139b457600080fd5b601f3d116139c157600080fd5b6000506102e0516102605261024051610140516102405180820282158284830414176139ec57600080fd5b80905090509050610260518080613a0257600080fd5b82049050905080821015613a1557600080fd5b80820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526101c051610300526101e0516103205261020051610340526102205161036052610280516103805261038051610360516103405161032051610300516102e0516102c051600658016134c6565b6103e0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102a0526101c0516102c0526101e0516102e0526102005161030052610220516103205260025460048082028215828483041417613b2257600080fd5b80905090509050600c808204905090506103405261036060006004818352015b60006103805261016051610360511415613bc4576101c06103605160048110613b6a57600080fd5b6020020151610280518082028215828483041417613b8757600080fd5b80905090509050610240518080613b9d57600080fd5b8204905090506102a05180821015613bb457600080fd5b8082039050905061038052613c43565b6101c06103605160048110613bd857600080fd5b60200201516101c06103605160048110613bf157600080fd5b6020020151610280518082028215828483041417613c0e57600080fd5b80905090509050610240518080613c2457600080fd5b82049050905080821015613c3757600080fd5b80820390509050610380525b6102c06103605160048110613c5757600080fd5b60200201805161034051610380518082028215828483041417613c7957600080fd5b809050905090506402540be4008082049050905080821015613c9a57600080fd5b808203905090508152505b8151600101808352811415613b42575b50506102c06101605160048110613ccb57600080fd5b6020020151610140610380525b61038051516020610380510161038052610380610380511015613cfa57613cd8565b6101a0516103a052610160516103c0526102c0516103e0526102e05161040052610300516104205261032051610440526102805161046052610460516104405161042051610400516103e0516103c0516103a051600658016134c6565b6104c052610360610380525b6103805152602061038051036103805261014061038051101515613d8657613d63565b6104c05180821015613d9757600080fd5b808203905090506103605260016103805260016103a05260016103c05260016103e05261036051600180821015613dcd57600080fd5b808203905090506103806101605160048110613de857600080fd5b60200201518080613df857600080fd5b820490509050610360526101c06101605160048110613e1657600080fd5b60200201516102a05180821015613e2c57600080fd5b808203905090506103806101605160048110613e4757600080fd5b60200201518080613e5757600080fd5b8204905090506104005261042080808061036051815250506020810190508080610400516103605180821015613e8c57600080fd5b80820390509050815250506020810190508080610260518152505060609050905060c05260c051610480525b600061048051111515613eca57613ee6565b6020610480510361042001516020610480510361048052613eb8565b610180515650005b63cc2b27d76000511415613f865760243580806000811215613f0c57195b607f1c15613f1957600080fd5b905050600435610140526024356101605261016051610140516006580161383b565b6101c0526101e052610200526101c08080808051610220525050602081019050808080516102405250506020810190508080805161026052505050506102205160005260206000f350005b631a4d01d2600051141561434c5762ffffff5415613fa357600080fd5b600162ffffff5560243580806000811215613fba57195b607f1c15613fc757600080fd5b905050600f5415613fd757600080fd5b606036610140376101405161016051610180516004356101a0526024356101c0526101c0516101a0516006580161383b565b6102205261024052610260526101805261016052610140526102208080808051610280525050602081019050808080516102a0525050602081019050808080516102c052505050506102808051610140528060200151610160528060400151610180525060443561014051101515156140c1576308c379a06101a05260206101c05260186101e0527f4e6f7420656e6f75676820636f696e732072656d6f7665640000000000000000610200526101e05060646101bcfd5b602435600481106140d157600080fd5b600160c052602060c020018054610140516101605160035480820282158284830414176140fd57600080fd5b809050905090506402540be4008082049050905081818301101561412057600080fd5b808201905090508082101561413457600080fd5b80820390509050815550602061024060446379cc67906101a052336101c0526004356101e0526101bc60006005545af161416d57600080fd5b601f3d1161417a57600080fd5b6000506102405060006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061014051602082610260010152602081019050806102605261026090508051602001806103008284600060045af161421757600080fd5b505060206103c06103005161032060006024356004811061423757600080fd5b600060c052602060c02001545af161424e57600080fd5b60203d8082111561425f5780614261565b815b905090506103a0526103a08051602001806101a08284600060045af161428657600080fd5b505060006101a05111156142d9576101a08060200151600082518060209013156142af57600080fd5b80919012156142bd57600080fd5b806020036101000a820490509050905015156142d857600080fd5b5b60043561020052610140516102205261018051600435808210156142fc57600080fd5b8082039050905061024052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610200a261014051600052600062ffffff5560206000f350600062ffffff55005b633c157e6460005114156144f057600454331461436857600080fd5b6008546201518081818301101561437e57600080fd5b8082019050905042101561439157600080fd5b42620151808181830110156143a557600080fd5b8082019050905060243510156143ba57600080fd5b6101405160065801610026565b61016052610140526101605161014052600435606480820282158284830414176143f057600080fd5b80905090509050610160526000600435111561441357620f424060043510614416565b60005b61441f57600080fd5b61014051610160511015614462576101405161016051600a808202821582848304141761444b57600080fd5b80905090509050101561445d57600080fd5b614493565b61014051600a808202821582848304141761447c57600080fd5b8090509050905061016051111561449257600080fd5b5b6101405160065561016051600755426008556024356009556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a6588600051141561457557600454331461450c57600080fd5b6101405160065801610026565b6101605261014052610160516101405261014051600655610140516007554260085542600955610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b635b5a1467600051141561463357600454331461459157600080fd5b600a541561459e57600080fd5b64012a05f20060043511156145b257600080fd5b6402540be40060243511156145c657600080fd5b426203f4808181830110156145da57600080fd5b808201905090506101405261014051600a55600435600c55602435600d556004356101605260243561018052610140517f351fc5da2fbf480f2225debf3664a4bc90fa9923743aad58b4603f648e931fe06040610160a2005b634f12fe9760005114156146c757600454331461464f57600080fd5b600a5442101561465e57600080fd5b6000600a541861466d57600080fd5b6000600a55600c5461014052600d546101605261014051600255610160516003556101405161018052610160516101a0527fbe12859b636aed607d5230b2cc2711f68d70e51060e6cca1f575ef5d2fcc95d16040610180a1005b63226840fb60005114156146ea5760045433146146e357600080fd5b6000600a55005b636b441a40600051141561477e5760043560a01c1561470857600080fd5b600454331461471657600080fd5b600b541561472357600080fd5b426203f48081818301101561473757600080fd5b808201905090506101405261014051600b55600435600e55600435610140517f181aa3aa17d4cbf99265dd4443eba009433d3cde79d60164fde1d1a192beb93560006000a3005b636a1c05ae60005114156147f757600454331461479a57600080fd5b600b544210156147a957600080fd5b6000600b54186147b857600080fd5b6000600b55600e546101405261014051600455610140517f71614071b88dee5e0b2ae578a9dd7b2ebbe9ae832ba419dc0242cd065a290b6c60006000a2005b6386fbf193600051141561481a57600454331461481357600080fd5b6000600b55005b63e2e7d26460005114156148b65760206101c060246370a0823161014052306101605261015c6004356004811061485057600080fd5b600060c052602060c02001545afa61486757600080fd5b601f3d1161487457600080fd5b6000506101c0516004356004811061488b57600080fd5b600160c052602060c0200154808210156148a457600080fd5b8082039050905060005260206000f350005b6330c540856000511415614ad15760045433146148d257600080fd5b61014060006004818352015b61014051600481106148ef57600080fd5b600060c052602060c020015461016052602061022060246370a082316101a052306101c0526101bc610160515afa61492657600080fd5b601f3d1161493357600080fd5b60005061022051610140516004811061494b57600080fd5b600160c052602060c02001548082101561496457600080fd5b80820390509050610180526000610180511115614abc5760006004610200527fa9059cbb000000000000000000000000000000000000000000000000000000006102205261020060048060208461026001018260208501600060045af15050805182019150503360208261026001015260208101905061018051602082610260010152602081019050806102605261026090508051602001806103008284600060045af1614a1157600080fd5b505060206103c0610300516103206000610160515af1614a3057600080fd5b60203d80821115614a415780614a43565b815b905090506103a0526103a08051602001806101a08284600060045af1614a6857600080fd5b505060006101a0511115614abb576101a0806020015160008251806020901315614a9157600080fd5b8091901215614a9f57600080fd5b806020036101000a82049050905090501515614aba57600080fd5b5b5b5b81516001018083528114156148de575b5050005b63524c39016000511415614b7f576004543314614aed57600080fd5b61014060006004818352015b60206101e060246370a0823161016052306101805261017c6101405160048110614b2257600080fd5b600060c052602060c02001545afa614b3957600080fd5b601f3d11614b4657600080fd5b6000506101e0516101405160048110614b5e57600080fd5b600160c052602060c02001555b8151600101808352811415614af9575b5050005b63e36988536000511415614bb0576004543314614b9b57600080fd5b4260105411614ba957600080fd5b6001600f55005b633046f9726000511415614bd3576004543314614bcc57600080fd5b6000600f55005b63c66106576000511415614c085760043560048110614bf157600080fd5b600060c052602060c020015460005260206000f350005b634903b0d16000511415614c3d5760043560048110614c2657600080fd5b600160c052602060c020015460005260206000f350005b63ddca3f436000511415614c595760025460005260206000f350005b63fee3f7f96000511415614c755760035460005260206000f350005b638da5cb5b6000511415614c915760045460005260206000f350005b6382c630666000511415614cad5760055460005260206000f350005b635409491a6000511415614cc95760065460005260206000f350005b63b4b577ad6000511415614ce55760075460005260206000f350005b632081066c6000511415614d015760085460005260206000f350005b63140522886000511415614d1d5760095460005260206000f350005b63405e28f86000511415614d3957600a5460005260206000f350005b63e0a0b5866000511415614d5557600b5460005260206000f350005b6358680d0b6000511415614d7157600c5460005260206000f350005b63e38244626000511415614d8d57600d5460005260206000f350005b631ec0cdc16000511415614da957600e5460005260206000f350005b5b60006000fd
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000f9589b4da15ffe6825df987e9651f7a4db8a296e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2000000000000000000000000a3d87fffce63b53e0d54faa1cc983b7eb0b74a9c00000000000000000000000006325440d014e39736583c165c2963ba99faf14e000000000000000000000000aa17a236f2badc98ddc0cf999abb47d47fc0a6cf000000000000000000000000da75443f636e0949a1979088da5430f8eb6f1177000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000003d09000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _owner (address): 0xf9589b4Da15fFE6825Df987E9651F7A4dB8a296E
Arg [1] : _coins (address[4]): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2,0xA3D87FffcE63B53E0d54fAa1cc983B7eB0b74A9c,0x06325440D014e39736583c165C2963BA99fAf14E,0xaA17A236F2bAdc98DDc0Cf999AbB47D47Fc0A6Cf
Arg [2] : _pool_token (address): 0xDA75443f636e0949a1979088da5430F8EB6f1177
Arg [3] : _A (uint256): 10
Arg [4] : _fee (uint256): 4000000
Arg [5] : _admin_fee (uint256): 0
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 000000000000000000000000f9589b4da15ffe6825df987e9651f7a4db8a296e
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Arg [2] : 000000000000000000000000a3d87fffce63b53e0d54faa1cc983b7eb0b74a9c
Arg [3] : 00000000000000000000000006325440d014e39736583c165c2963ba99faf14e
Arg [4] : 000000000000000000000000aa17a236f2badc98ddc0cf999abb47d47fc0a6cf
Arg [5] : 000000000000000000000000da75443f636e0949a1979088da5430f8eb6f1177
Arg [6] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [7] : 00000000000000000000000000000000000000000000000000000000003d0900
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $2,446.3 | 0.1359 | $332.36 |
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.