Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Vyper_contract
Compiler Version
vyper:0.2.15
Contract Source Code (Vyper language format)
# @version 0.2.15 """ @title StableSwap @author Curve.Fi @license Copyright (c) Curve.Fi, 2020-2021 - all rights reserved @notice 3pool metapool implementation contract @dev ERC20 support for return True/revert, return True/False, return None Support for positive-rebasing and fee-on-transfer tokens """ interface ERC20: def approve(_spender: address, _amount: uint256): nonpayable def balanceOf(_owner: address) -> uint256: view interface Curve: def coins(i: uint256) -> address: view def get_virtual_price() -> uint256: view def calc_token_amount(amounts: uint256[BASE_N_COINS], deposit: bool) -> uint256: view def calc_withdraw_one_coin(_token_amount: uint256, i: int128) -> uint256: view def fee() -> uint256: view def get_dy(i: int128, j: int128, dx: uint256) -> uint256: view def exchange(i: int128, j: int128, dx: uint256, min_dy: uint256): nonpayable def add_liquidity(amounts: uint256[BASE_N_COINS], min_mint_amount: uint256): nonpayable def remove_liquidity_one_coin(_token_amount: uint256, i: int128, min_amount: uint256): nonpayable interface Factory: def convert_metapool_fees() -> bool: nonpayable def get_fee_receiver(_pool: address) -> address: view def admin() -> address: view event Transfer: sender: indexed(address) receiver: indexed(address) value: uint256 event Approval: owner: indexed(address) spender: indexed(address) value: uint256 event TokenExchange: buyer: indexed(address) sold_id: int128 tokens_sold: uint256 bought_id: int128 tokens_bought: uint256 event TokenExchangeUnderlying: 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 RampA: old_A: uint256 new_A: uint256 initial_time: uint256 future_time: uint256 event StopRampA: A: uint256 t: uint256 BASE_POOL: constant(address) = 0xbEbc44782C7dB0a1A60Cb6fe97d0b483032FF1C7 BASE_COINS: constant(address[3]) = [ 0x6B175474E89094C44Da98b954EedeAC495271d0F, # DAI 0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48, # USDC 0xdAC17F958D2ee523a2206206994597C13D831ec7, # USDT ] N_COINS: constant(int128) = 2 MAX_COIN: constant(int128) = N_COINS - 1 BASE_N_COINS: constant(int128) = 3 PRECISION: constant(uint256) = 10 ** 18 FEE_DENOMINATOR: constant(uint256) = 10 ** 10 ADMIN_FEE: constant(uint256) = 5000000000 A_PRECISION: constant(uint256) = 100 MAX_A: constant(uint256) = 10 ** 6 MAX_A_CHANGE: constant(uint256) = 10 MIN_RAMP_TIME: constant(uint256) = 86400 factory: address coins: public(address[N_COINS]) admin_balances: public(uint256[N_COINS]) fee: public(uint256) # fee * 1e10 initial_A: public(uint256) future_A: public(uint256) initial_A_time: public(uint256) future_A_time: public(uint256) rate_multiplier: uint256 name: public(String[64]) symbol: public(String[32]) balanceOf: public(HashMap[address, uint256]) allowance: public(HashMap[address, HashMap[address, uint256]]) totalSupply: public(uint256) @external def __init__(): # we do this to prevent the implementation contract from being used as a pool self.fee = 31337 @external def initialize( _name: String[32], _symbol: String[10], _coin: address, _rate_multiplier: uint256, _A: uint256, _fee: uint256 ): """ @notice Contract initializer @param _name Name of the new pool @param _symbol Token symbol @param _coin Addresses of ERC20 conracts of coins @param _rate_multiplier Rate multiplier for `_coin` (10 ** (36 - decimals)) @param _A Amplification coefficient multiplied by n ** (n - 1) @param _fee Fee to charge for exchanges """ # check if fee was already set to prevent initializing contract twice assert self.fee == 0 A: uint256 = _A * A_PRECISION self.coins = [_coin, 0x6c3F90f043a72FA612cbac8115EE7e52BDe6E490] self.rate_multiplier = _rate_multiplier self.initial_A = A self.future_A = A self.fee = _fee self.factory = msg.sender self.name = concat("Curve.fi Factory USD Metapool: ", _name) self.symbol = concat(_symbol, "3CRV-f") for coin in BASE_COINS: ERC20(coin).approve(BASE_POOL, MAX_UINT256) # fire a transfer event so block explorers identify the contract as an ERC20 log Transfer(ZERO_ADDRESS, self, 0) ### ERC20 Functionality ### @view @external def decimals() -> uint256: """ @notice Get the number of decimals for this token @dev Implemented as a view method to reduce gas costs @return uint256 decimal places """ return 18 @internal def _transfer(_from: address, _to: address, _value: uint256): # # NOTE: vyper does not allow underflows # # so the following subtraction would revert on insufficient balance self.balanceOf[_from] -= _value self.balanceOf[_to] += _value log Transfer(_from, _to, _value) @external def transfer(_to : address, _value : uint256) -> bool: """ @dev Transfer token for a specified address @param _to The address to transfer to. @param _value The amount to be transferred. """ self._transfer(msg.sender, _to, _value) return True @external def transferFrom(_from : address, _to : address, _value : uint256) -> bool: """ @dev Transfer tokens from one address to another. @param _from address The address which you want to send tokens from @param _to address The address which you want to transfer to @param _value uint256 the amount of tokens to be transferred """ self._transfer(_from, _to, _value) _allowance: uint256 = self.allowance[_from][msg.sender] if _allowance != MAX_UINT256: self.allowance[_from][msg.sender] = _allowance - _value return True @external def approve(_spender : address, _value : uint256) -> bool: """ @notice Approve the passed address to transfer the specified amount of tokens on behalf of msg.sender @dev Beware that changing an allowance via this method brings the risk that someone may use both the old and new allowance by unfortunate transaction ordering: https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 @param _spender The address which will transfer the funds @param _value The amount of tokens that may be transferred @return bool success """ self.allowance[msg.sender][_spender] = _value log Approval(msg.sender, _spender, _value) return True ### StableSwap Functionality ### @view @internal def _balances() -> uint256[N_COINS]: result: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): result[i] = ERC20(self.coins[i]).balanceOf(self) - self.admin_balances[i] return result @view @external def balances(i: uint256) -> uint256: """ @notice Get the current balance of a coin within the pool, less the accrued admin fees @param i Index value for the coin to query balance of @return Token balance """ return self._balances()[i] @view @external def get_balances() -> uint256[N_COINS]: return self._balances() @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 admin_fee() -> uint256: return ADMIN_FEE @view @external def A() -> uint256: return self._A() / A_PRECISION @view @external def A_precise() -> uint256: return self._A() @pure @internal def _xp_mem(_rates: uint256[N_COINS], _balances: uint256[N_COINS]) -> uint256[N_COINS]: result: uint256[N_COINS] = empty(uint256[N_COINS]) for i in range(N_COINS): result[i] = _rates[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(_rates: uint256[N_COINS], _balances: uint256[N_COINS], _amp: uint256) -> uint256: xp: uint256[N_COINS] = self._xp_mem(_rates, _balances) return self.get_D(xp, _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 """ amp: uint256 = self._A() balances: uint256[N_COINS] = self._balances() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, balances) D: uint256 = self.get_D(xp, amp) # 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 return D * PRECISION / self.totalSupply @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() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] D0: uint256 = self.get_D_mem(rates, balances, amp) for i in range(N_COINS): amount: uint256 = _amounts[i] if _is_deposit: balances[i] += amount else: balances[i] -= amount D1: uint256 = self.get_D_mem(rates, balances, amp) diff: uint256 = 0 if _is_deposit: diff = D1 - D0 else: diff = D0 - D1 return diff * self.totalSupply / D0 @external @nonreentrant('lock') def add_liquidity( _amounts: uint256[N_COINS], _min_mint_amount: uint256, _receiver: address = msg.sender ) -> 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 @param _receiver Address that owns the minted LP tokens @return Amount of LP tokens received by depositing """ amp: uint256 = self._A() old_balances: uint256[N_COINS] = self._balances() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] # Initial invariant D0: uint256 = self.get_D_mem(rates, old_balances, amp) new_balances: uint256[N_COINS] = old_balances total_supply: uint256 = self.totalSupply for i in range(N_COINS): amount: uint256 = _amounts[i] if amount == 0: assert total_supply > 0 else: coin: address = self.coins[i] initial: uint256 = ERC20(coin).balanceOf(self) response: Bytes[32] = raw_call( coin, concat( method_id("transferFrom(address,address,uint256)"), convert(msg.sender, bytes32), convert(self, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) new_balances[i] += ERC20(coin).balanceOf(self) - initial # Invariant after change D1: uint256 = self.get_D_mem(rates, new_balances, amp) assert D1 > D0 # We need to recalculate the invariant accounting for fees # to calculate fair user's share fees: uint256[N_COINS] = empty(uint256[N_COINS]) mint_amount: uint256 = 0 if total_supply > 0: # Only account for fees if we are not the first to deposit base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) 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] = base_fee * difference / FEE_DENOMINATOR self.admin_balances[i] += fees[i] * ADMIN_FEE / FEE_DENOMINATOR new_balances[i] -= fees[i] D2: uint256 = self.get_D_mem(rates, new_balances, amp) mint_amount = total_supply * (D2 - D0) / D0 else: mint_amount = D1 # Take the dust if there was any assert mint_amount >= _min_mint_amount # Mint pool tokens total_supply += mint_amount self.balanceOf[_receiver] += mint_amount self.totalSupply = total_supply log Transfer(ZERO_ADDRESS, _receiver, mint_amount) log AddLiquidity(msg.sender, _amounts, fees, D1, total_supply) return mint_amount @view @internal def get_y(i: int128, j: int128, x: uint256, xp: uint256[N_COINS]) -> uint256: # 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 amp: uint256 = self._A() D: uint256 = self.get_D(xp, amp) S_: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 c: uint256 = D Ann: uint256 = amp * N_COINS 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: """ @notice Calculate the current output dy given input dx @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 @return Amount of `j` predicted """ rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, self._balances()) 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] @view @external def get_dy_underlying(i: int128, j: int128, dx: uint256) -> uint256: """ @notice Calculate the current output dy given input dx on underlying @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 @return Amount of `j` predicted """ rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, self._balances()) x: uint256 = 0 base_i: int128 = 0 base_j: int128 = 0 meta_i: int128 = 0 meta_j: int128 = 0 if i != 0: base_i = i - MAX_COIN meta_i = 1 if j != 0: base_j = j - MAX_COIN meta_j = 1 if i == 0: x = xp[i] + dx * (rates[0] / 10**18) else: if j == 0: # i is from BasePool # At first, get the amount of pool tokens base_inputs: uint256[BASE_N_COINS] = empty(uint256[BASE_N_COINS]) base_inputs[base_i] = dx # Token amount transformed to underlying "dollars" x = Curve(BASE_POOL).calc_token_amount(base_inputs, True) * rates[1] / PRECISION # Accounting for deposit/withdraw fees approximately x -= x * Curve(BASE_POOL).fee() / (2 * FEE_DENOMINATOR) # Adding number of pool tokens x += xp[MAX_COIN] else: # If both are from the base pool return Curve(BASE_POOL).get_dy(base_i, base_j, dx) # This pool is involved only when in-pool assets are used y: uint256 = self.get_y(meta_i, meta_j, x, xp) dy: uint256 = xp[meta_j] - y - 1 dy = (dy - self.fee * dy / FEE_DENOMINATOR) # If output is going via the metapool if j == 0: dy /= (rates[0] / 10**18) else: # j is from BasePool # The fee is already accounted for dy = Curve(BASE_POOL).calc_withdraw_one_coin(dy * PRECISION / rates[1], base_j) return dy @external @nonreentrant('lock') def exchange( i: int128, j: int128, _dx: uint256, _min_dy: uint256, _receiver: address = msg.sender, ) -> 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 @param _receiver Address that receives `j` @return Actual amount of `j` received """ old_balances: uint256[N_COINS] = self._balances() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, old_balances) coin: address = self.coins[i] dx_w_fee: uint256 = ERC20(coin).balanceOf(self) response: Bytes[32] = raw_call( coin, 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) dx_w_fee = ERC20(coin).balanceOf(self) - dx_w_fee x: uint256 = xp[i] + dx_w_fee * rates[i] / PRECISION dy: uint256 = xp[j] - self.get_y(i, j, x, xp) - 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 self.admin_balances[j] += (dy_fee * ADMIN_FEE / FEE_DENOMINATOR) * PRECISION / rates[j] response = raw_call( self.coins[j], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(dy, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) log TokenExchange(msg.sender, i, dx_w_fee, j, dy) return dy @external @nonreentrant('lock') def exchange_underlying( i: int128, j: int128, _dx: uint256, _min_dy: uint256, _receiver: address = msg.sender, ) -> uint256: """ @notice Perform an exchange between two underlying coins @param i Index value for the underlying coin to send @param j Index valie of the underlying coin to receive @param _dx Amount of `i` being exchanged @param _min_dy Minimum amount of `j` to receive @param _receiver Address that receives `j` @return Actual amount of `j` received """ old_balances: uint256[N_COINS] = self._balances() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, old_balances) base_coins: address[3] = BASE_COINS dy: uint256 = 0 base_i: int128 = 0 base_j: int128 = 0 meta_i: int128 = 0 meta_j: int128 = 0 x: uint256 = 0 input_coin: address = ZERO_ADDRESS output_coin: address = ZERO_ADDRESS if i == 0: input_coin = self.coins[0] else: base_i = i - MAX_COIN meta_i = 1 input_coin = base_coins[base_i] if j == 0: output_coin = self.coins[0] else: base_j = j - MAX_COIN meta_j = 1 output_coin = base_coins[base_j] dx_w_fee: uint256 = ERC20(input_coin).balanceOf(self) response: Bytes[32] = raw_call( input_coin, 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) dx_w_fee = ERC20(input_coin).balanceOf(self) - dx_w_fee if i == 0 or j == 0: if i == 0: x = xp[i] + dx_w_fee * rates[i] / PRECISION else: # i is from BasePool # At first, get the amount of pool tokens base_inputs: uint256[BASE_N_COINS] = empty(uint256[BASE_N_COINS]) base_inputs[base_i] = dx_w_fee coin_i: address = self.coins[MAX_COIN] # Deposit and measure delta x = ERC20(coin_i).balanceOf(self) Curve(BASE_POOL).add_liquidity(base_inputs, 0) # Need to convert pool token to "virtual" units using rates # dx is also different now dx_w_fee = ERC20(coin_i).balanceOf(self) - x x = dx_w_fee * rates[MAX_COIN] / PRECISION # Adding number of pool tokens x += xp[MAX_COIN] y: uint256 = self.get_y(meta_i, meta_j, x, xp) # Either a real coin or token dy = xp[meta_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 # Works for both pool coins and real coins dy = (dy - dy_fee) * PRECISION / rates[meta_j] dy_admin_fee: uint256 = dy_fee * ADMIN_FEE / FEE_DENOMINATOR dy_admin_fee = dy_admin_fee * PRECISION / rates[meta_j] self.admin_balances[meta_j] += dy_admin_fee # Withdraw from the base pool if needed if j > 0: out_amount: uint256 = ERC20(output_coin).balanceOf(self) Curve(BASE_POOL).remove_liquidity_one_coin(dy, base_j, 0) dy = ERC20(output_coin).balanceOf(self) - out_amount assert dy >= _min_dy else: # If both are from the base pool dy = ERC20(output_coin).balanceOf(self) Curve(BASE_POOL).exchange(base_i, base_j, dx_w_fee, _min_dy) dy = ERC20(output_coin).balanceOf(self) - dy response = raw_call( output_coin, concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(dy, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) log TokenExchangeUnderlying(msg.sender, i, _dx, j, dy) return dy @external @nonreentrant('lock') def remove_liquidity( _burn_amount: uint256, _min_amounts: uint256[N_COINS], _receiver: address = msg.sender ) -> uint256[N_COINS]: """ @notice Withdraw coins from the pool @dev Withdrawal amounts are based on current deposit ratios @param _burn_amount Quantity of LP tokens to burn in the withdrawal @param _min_amounts Minimum amounts of underlying coins to receive @param _receiver Address that receives the withdrawn coins @return List of amounts of coins that were withdrawn """ total_supply: uint256 = self.totalSupply amounts: uint256[N_COINS] = empty(uint256[N_COINS]) balances: uint256[N_COINS] = self._balances() for i in range(N_COINS): value: uint256 = balances[i] * _burn_amount / total_supply assert value >= _min_amounts[i] amounts[i] = value response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(value, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) total_supply -= _burn_amount self.balanceOf[msg.sender] -= _burn_amount self.totalSupply = total_supply log Transfer(msg.sender, ZERO_ADDRESS, _burn_amount) log RemoveLiquidity(msg.sender, amounts, empty(uint256[N_COINS]), total_supply) return amounts @external @nonreentrant('lock') def remove_liquidity_imbalance( _amounts: uint256[N_COINS], _max_burn_amount: uint256, _receiver: address = msg.sender ) -> 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 @param _receiver Address that receives the withdrawn coins @return Actual amount of the LP token burned in the withdrawal """ amp: uint256 = self._A() old_balances: uint256[N_COINS] = self._balances() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] D0: uint256 = self.get_D_mem(rates, old_balances, amp) new_balances: uint256[N_COINS] = old_balances for i in range(N_COINS): amount: uint256 = _amounts[i] if amount != 0: new_balances[i] -= amount response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) D1: uint256 = self.get_D_mem(rates, new_balances, amp) fees: uint256[N_COINS] = empty(uint256[N_COINS]) base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) 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] = base_fee * difference / FEE_DENOMINATOR self.admin_balances[i] += fees[i] * ADMIN_FEE / FEE_DENOMINATOR new_balances[i] -= fees[i] D2: uint256 = self.get_D_mem(rates, new_balances, amp) total_supply: uint256 = self.totalSupply burn_amount: uint256 = ((D0 - D2) * total_supply / D0) + 1 assert burn_amount > 1 # dev: zero tokens burned assert burn_amount <= _max_burn_amount total_supply -= burn_amount self.totalSupply = total_supply self.balanceOf[msg.sender] -= burn_amount log Transfer(msg.sender, ZERO_ADDRESS, burn_amount) log RemoveLiquidityImbalance(msg.sender, _amounts, fees, D1, total_supply) return burn_amount @view @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 + x1 * (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 S_: uint256 = 0 _x: uint256 = 0 y_prev: uint256 = 0 c: uint256 = D Ann: uint256 = A * N_COINS 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(_burn_amount: uint256, i: int128) -> uint256[2]: # First, need to calculate # * Get current D # * Solve Eqn against y_i for D - _token_amount amp: uint256 = self._A() rates: uint256[N_COINS] = [self.rate_multiplier, Curve(BASE_POOL).get_virtual_price()] xp: uint256[N_COINS] = self._xp_mem(rates, self._balances()) D0: uint256 = self.get_D(xp, amp) total_supply: uint256 = self.totalSupply D1: uint256 = D0 - _burn_amount * D0 / total_supply new_y: uint256 = self.get_y_D(amp, i, xp, D1) base_fee: uint256 = self.fee * N_COINS / (4 * (N_COINS - 1)) xp_reduced: uint256[N_COINS] = empty(uint256[N_COINS]) for j in range(N_COINS): dx_expected: uint256 = 0 xp_j: uint256 = xp[j] if j == i: dx_expected = xp_j * D1 / D0 - new_y else: dx_expected = xp_j - xp_j * D1 / D0 xp_reduced[j] = xp_j - base_fee * dx_expected / FEE_DENOMINATOR dy: uint256 = xp_reduced[i] - self.get_y_D(amp, i, xp_reduced, D1) dy_0: uint256 = (xp[i] - new_y) * PRECISION / rates[i] # w/o fees dy = (dy - 1) * PRECISION / rates[i] # Withdraw less to account for rounding errors return [dy, dy_0 - dy] @view @external def calc_withdraw_one_coin(_burn_amount: uint256, i: int128) -> uint256: """ @notice Calculate the amount received when withdrawing a single coin @param _burn_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(_burn_amount, i)[0] @external @nonreentrant('lock') def remove_liquidity_one_coin( _burn_amount: uint256, i: int128, _min_received: uint256, _receiver: address = msg.sender, ) -> uint256: """ @notice Withdraw a single coin from the pool @param _burn_amount Amount of LP tokens to burn in the withdrawal @param i Index value of the coin to withdraw @param _min_received Minimum amount of coin to receive @param _receiver Address that receives the withdrawn coins @return Amount of coin received """ dy: uint256[2] = self._calc_withdraw_one_coin(_burn_amount, i) assert dy[0] >= _min_received self.admin_balances[i] += dy[1] * ADMIN_FEE / FEE_DENOMINATOR total_supply: uint256 = self.totalSupply - _burn_amount self.totalSupply = total_supply self.balanceOf[msg.sender] -= _burn_amount log Transfer(msg.sender, ZERO_ADDRESS, _burn_amount) response: Bytes[32] = raw_call( self.coins[i], concat( method_id("transfer(address,uint256)"), convert(_receiver, bytes32), convert(dy[0], bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) log RemoveLiquidityOne(msg.sender, _burn_amount, dy[0], total_supply) return dy[0] @external def ramp_A(_future_A: uint256, _future_time: uint256): assert msg.sender == Factory(self.factory).admin() # 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 == Factory(self.factory).admin() # 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 @nonreentrant('lock') def withdraw_admin_fees(): # transfer coin 0 to Factory and call `convert_fees` to swap it for coin 1 balances: uint256[N_COINS] = self._balances() factory: address = self.factory amount: uint256 = self.admin_balances[0] if amount > 0: self.admin_balances[0] = 0 coin: address = self.coins[0] response: Bytes[32] = raw_call( coin, concat( method_id("transfer(address,uint256)"), convert(factory, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool) Factory(factory).convert_metapool_fees() # transfer coin 1 to the receiver amount = self.admin_balances[1] if amount > 0: self.admin_balances[1] = 0 coin: address = self.coins[1] receiver: address = Factory(factory).get_fee_receiver(self) response: Bytes[32] = raw_call( coin, concat( method_id("transfer(address,uint256)"), convert(receiver, bytes32), convert(amount, bytes32), ), max_outsize=32, ) if len(response) > 0: assert convert(response, bool)
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"name":"Transfer","inputs":[{"name":"sender","type":"address","indexed":true},{"name":"receiver","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"Approval","inputs":[{"name":"owner","type":"address","indexed":true},{"name":"spender","type":"address","indexed":true},{"name":"value","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"TokenExchange","inputs":[{"name":"buyer","type":"address","indexed":true},{"name":"sold_id","type":"int128","indexed":false},{"name":"tokens_sold","type":"uint256","indexed":false},{"name":"bought_id","type":"int128","indexed":false},{"name":"tokens_bought","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"TokenExchangeUnderlying","inputs":[{"name":"buyer","type":"address","indexed":true},{"name":"sold_id","type":"int128","indexed":false},{"name":"tokens_sold","type":"uint256","indexed":false},{"name":"bought_id","type":"int128","indexed":false},{"name":"tokens_bought","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"AddLiquidity","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[2]","indexed":false},{"name":"fees","type":"uint256[2]","indexed":false},{"name":"invariant","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidity","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[2]","indexed":false},{"name":"fees","type":"uint256[2]","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityOne","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amount","type":"uint256","indexed":false},{"name":"coin_amount","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RemoveLiquidityImbalance","inputs":[{"name":"provider","type":"address","indexed":true},{"name":"token_amounts","type":"uint256[2]","indexed":false},{"name":"fees","type":"uint256[2]","indexed":false},{"name":"invariant","type":"uint256","indexed":false},{"name":"token_supply","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"RampA","inputs":[{"name":"old_A","type":"uint256","indexed":false},{"name":"new_A","type":"uint256","indexed":false},{"name":"initial_time","type":"uint256","indexed":false},{"name":"future_time","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"name":"StopRampA","inputs":[{"name":"A","type":"uint256","indexed":false},{"name":"t","type":"uint256","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"initialize","inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_coin","type":"address"},{"name":"_rate_multiplier","type":"uint256"},{"name":"_A","type":"uint256"},{"name":"_fee","type":"uint256"}],"outputs":[],"gas":450772},{"stateMutability":"view","type":"function","name":"decimals","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":318},{"stateMutability":"nonpayable","type":"function","name":"transfer","inputs":[{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":77977},{"stateMutability":"nonpayable","type":"function","name":"transferFrom","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":115912},{"stateMutability":"nonpayable","type":"function","name":"approve","inputs":[{"name":"_spender","type":"address"},{"name":"_value","type":"uint256"}],"outputs":[{"name":"","type":"bool"}],"gas":37851},{"stateMutability":"view","type":"function","name":"balances","inputs":[{"name":"i","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":15163},{"stateMutability":"view","type":"function","name":"get_balances","inputs":[],"outputs":[{"name":"","type":"uint256[2]"}],"gas":15139},{"stateMutability":"view","type":"function","name":"admin_fee","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":498},{"stateMutability":"view","type":"function","name":"A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":10824},{"stateMutability":"view","type":"function","name":"A_precise","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":10786},{"stateMutability":"view","type":"function","name":"get_virtual_price","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":1034111},{"stateMutability":"view","type":"function","name":"calc_token_amount","inputs":[{"name":"_amounts","type":"uint256[2]"},{"name":"_is_deposit","type":"bool"}],"outputs":[{"name":"","type":"uint256"}],"gas":4040975},{"stateMutability":"nonpayable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[2]"},{"name":"_min_mint_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"add_liquidity","inputs":[{"name":"_amounts","type":"uint256[2]"},{"name":"_min_mint_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_dy","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"dx","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":2477501},{"stateMutability":"view","type":"function","name":"get_dy_underlying","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"dx","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":2486046},{"stateMutability":"nonpayable","type":"function","name":"exchange","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"exchange","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"exchange_underlying","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"exchange_underlying","inputs":[{"name":"i","type":"int128"},{"name":"j","type":"int128"},{"name":"_dx","type":"uint256"},{"name":"_min_dy","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[2]"}],"outputs":[{"name":"","type":"uint256[2]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"_min_amounts","type":"uint256[2]"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256[2]"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_imbalance","inputs":[{"name":"_amounts","type":"uint256[2]"},{"name":"_max_burn_amount","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_imbalance","inputs":[{"name":"_amounts","type":"uint256[2]"},{"name":"_max_burn_amount","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"calc_withdraw_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"}],"outputs":[{"name":"","type":"uint256"}],"gas":1190},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"},{"name":"_min_received","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"remove_liquidity_one_coin","inputs":[{"name":"_burn_amount","type":"uint256"},{"name":"i","type":"int128"},{"name":"_min_received","type":"uint256"},{"name":"_receiver","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"nonpayable","type":"function","name":"ramp_A","inputs":[{"name":"_future_A","type":"uint256"},{"name":"_future_time","type":"uint256"}],"outputs":[],"gas":162221},{"stateMutability":"nonpayable","type":"function","name":"stop_ramp_A","inputs":[],"outputs":[],"gas":157685},{"stateMutability":"nonpayable","type":"function","name":"withdraw_admin_fees","inputs":[],"outputs":[],"gas":147578},{"stateMutability":"view","type":"function","name":"coins","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}],"gas":3153},{"stateMutability":"view","type":"function","name":"admin_balances","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"uint256"}],"gas":3183},{"stateMutability":"view","type":"function","name":"fee","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3168},{"stateMutability":"view","type":"function","name":"initial_A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3198},{"stateMutability":"view","type":"function","name":"future_A","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3228},{"stateMutability":"view","type":"function","name":"initial_A_time","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3258},{"stateMutability":"view","type":"function","name":"future_A_time","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3288},{"stateMutability":"view","type":"function","name":"name","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":13548},{"stateMutability":"view","type":"function","name":"symbol","inputs":[],"outputs":[{"name":"","type":"string"}],"gas":11301},{"stateMutability":"view","type":"function","name":"balanceOf","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3593},{"stateMutability":"view","type":"function","name":"allowance","inputs":[{"name":"arg0","type":"address"},{"name":"arg1","type":"address"}],"outputs":[{"name":"","type":"uint256"}],"gas":3838},{"stateMutability":"view","type":"function","name":"totalSupply","inputs":[],"outputs":[{"name":"","type":"uint256"}],"gas":3438}]
Contract Creation Code
617a69600c55615ae856600436101561000d576145f0565b600035601c5260005134615ad9576398094be08114156103735760406004356004016101403760206004356004013511615ad957602a6024356004016101a037600a6024356004013511615ad95760443560a01c615ad957600c54615ad9576084356064808202821582848304141715615ad957809050905090506102005260086044358155736c3f90f043a72fa612cbac8115ee7e52bde6e49060018201555060643560115561020051600d5561020051600e5560a435600c55336007556000601f610220527f43757276652e666920466163746f727920555344204d657461706f6f6c3a200061024052610220601f8060208461028001018260208501600060045af150508051820191505061014060208060208461028001018260208501600060045af150508051820191505080610280526102809050806012602082510161012060006003818352015b8261012051602002111561016e57610190565b61012051602002850151610120518501555b815160010180835281141561015b575b50505050505060006101a0600a8060208461028001018260208501600060045af15050805182019150506006610220527f334352562d6600000000000000000000000000000000000000000000000000006102405261022060068060208461028001018260208501600060045af150508051820191505080610280526102809050806016602082510161012060006002818352015b826101205160200211156102385761025a565b61012051602002850151610120518501555b8151600101808352811415610225575b505050505050736b175474e89094c44da98b954eedeac495271d0f6102605273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486102805273dac17f958d2ee523a2206206994597c13d831ec76102a05261024060006003818352015b60206102405102610260015161022052610220513b15615ad95760006000604463095ea7b36102c05273bebc44782c7db0a1a60cb6fe97d0b483032ff1c76102e0527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610300526102dc6000610220515af115615ad9575b81516001018083528114156102b7575b50506000610220523060007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610220a3005b63313ce56781141561038a57601260005260206000f35b63a9059cbb8114156103d65760043560a01c615ad95733610140526004356101605260243561018052610180516101605161014051600658016145f6565b600050600160005260206000f35b6323b872dd8114156104ad5760043560a01c615ad95760243560a01c615ad957600435610140526024356101605260443561018052610180516101605161014051600658016145f6565b600050601a60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101405118156104a25761014051604435808210615ad95780820390509050601a60043560e05260c052604060c0203360e05260c052604060c020555b600160005260206000f35b63095ea7b38114156105205760043560a01c615ad957602435601a3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b634903b0d181141561055a5760065801614695565b61014052610160526101406004356002811015615ad957602002015160005260206000f35b6314f0597981141561057e57604060065801614695565b6101405261016052610140f35b63fee3f7f98114156105995764012a05f20060005260206000f35b63f446c1d08114156105c85760065801614772565b610140526101405160648082049050905060005260206000f35b6376a2f0f08114156105ee5760065801614772565b610140526101405160005260206000f35b63bb7b8b808114156107e7576101405160065801614772565b6101605261014052610160516101405261014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e052806020015161020052506101405161016051610180516101a0516101c0516101e05161020051610220516101e0516102405261020051610260526101405161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205261022051670de0b6b3a7640000808202821582848304141715615ad95780905090509050601b54808015615ad95782049050905060005260206000f35b63ed8e84f3811415610acf5760443560011c615ad9576101405160065801614772565b6101605261014052610160516101405261014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e0516101a051610200526101c05161022052610160516102405261018051610260526101405161028052610280516102605161024051610220516102005160065801614c4d565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006002818352015b6004610200516002811015615ad9576020020135610220526044351561098757610160610200516002811015615ad957602002018051610220518181830110615ad957808201905090508152506109b3565b610160610200516002811015615ad95760200201805161022051808210615ad957808203905090508152505b5b8151600101808352811415610935575b50506101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c0516102405261016051610260526101805161028052610140516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260006102205260443515610a7c57610200516101e051808210615ad9578082039050905061022052610a97565b6101e05161020051808210615ad95780820390509050610220525b61022051601b54808202821582848304141715615ad957809050905090506101e051808015615ad95782049050905060005260206000f35b630b4c7e4d811415610ae5573361014052610b10565b630c3e4b54811415610b0b5760643560a01c615ad9576020606461014037600050610b10565b611341565b600054615ad9576001600055610140516101605160065801614772565b61018052610160526101405261018051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c080516101805280602001516101a052506020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516101c051610220526101e0516102405261018051610260526101a05161028052610160516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005261018051610220526101a05161024052601b546102605261028060006002818352015b6004610280516002811015615ad95760200201356102a0526102a051610cb4576000610260511115615ad957610ea4565b6001610280516002811015615ad95702600801546102c052602061038060246370a0823161030052306103205261031c6102c0515afa15615ad957601f3d1115615ad957600050610380516102e05260006004610360527f23b872dd00000000000000000000000000000000000000000000000000000000610380526103606004806020846103c001018260208501600060045af1505080518201915050336020826103c0010152602081019050306020826103c00101526020810190506102a0516020826103c0010152602081019050806103c0526103c090508051602001806104808284600060045af115615ad95750506020610560610480516104a060006102c0515af115615ad95760203d80821115610dd15780610dd3565b815b90509050610540526105408051602001806103008284600060045af115615ad95750506000610300511115610e35576103008060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b610220610280516002811015615ad95760200201805160206103e060246370a0823161036052306103805261037c6102c0515afa15615ad957601f3d1115615ad9576000506103e0516102e051808210615ad957808203905090508181830110615ad957808201905090508152505b5b8151600101808352811415610c83575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101c0516102a0526101e0516102c052610220516102e0526102405161030052610160516103205261032051610300516102e0516102c0516102a05160065801614c4d565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516102805261020051610280511115615ad9576060366102a037600061026051111561124857600c546002808202821582848304141715615ad957809050905090506004808204905090506103005261032060006002818352015b61028051610180610320516002811015615ad9576020020151808202821582848304141715615ad9578090509050905061020051808015615ad95782049050905061034052600061036052610220610320516002811015615ad95760200201516103805261038051610340511115611047576103405161038051808210615ad9578082039050905061036052611062565b6103805161034051808210615ad95780820390509050610360525b6103005161036051808202821582848304141715615ad957809050905090506402540be400808204905090506102a0610320516002811015615ad95760200201526001610320516002811015615ad95702600a0180546102a0610320516002811015615ad957602002015164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad95780820190509050815550610220610320516002811015615ad9576020020180516102a0610320516002811015615ad9576020020151808210615ad957808203905090508152505b8151600101808352811415610fb6575b5050610140610340525b6103405151602061034051016103405261034061034051101561118357611161565b6101c051610360526101e05161038052610220516103a052610240516103c052610160516103e0526103e0516103c0516103a051610380516103605160065801614c4d565b61044052610320610340525b6103405152602061034051036103405261014061034051106111f5576111d4565b6104405161032052610260516103205161020051808210615ad95780820390509050808202821582848304141715615ad9578090509050905061020051808015615ad9578204905090506102e052611251565b610280516102e0525b6044356102e05110615ad95761026080516102e0518181830110615ad9578082019050905081525060196101405160e05260c052604060c02080546102e0518181830110615ad9578082019050905081555061026051601b556102e051610300526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610300a360406004610300376102a051610340526102c051610360526102805161038052610260516103a052337f26f55a85081d24974e85c6c00045d0f0453991e95873f52bff0d21af4079a76860c0610300a26102e051600052600060005560206000f35b635e0d443f811415611653576004358080600081121561135d57195b607f1c615ad9579050506024358080600081121561137757195b607f1c615ad95790505060206101e0600463bb7b8b806101805261019c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506101e051610200526011546101405261020051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c0805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610140516102405261016051610260526102005161028052610220516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101805280602001516101a052506101806004356002811015615ad95760200201516044356101406004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad957808201905090506101c0526101405161016051610180516101a0516101c0516101e05160406004610200376101c0516102405261018051610260526101a05161028052610280516102605161024051610220516102005160065801614d7a565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526101806024356002811015615ad95760200201516101e051808210615ad957808203905090506001808210615ad9578082039050905061020052600c5461020051808202821582848304141715615ad957809050905090506402540be40080820490509050610220526102005161022051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101406024356002811015615ad9576020020151808015615ad95782049050905060005260206000f35b6307211ef7811415611c2a576004358080600081121561166f57195b607f1c615ad9579050506024358080600081121561168957195b607f1c615ad95790505060206101e0600463bb7b8b806101805261019c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506101e051610200526011546101405261020051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c0805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610140516102405261016051610260526102005161028052610220516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101805280602001516101a0525060a0366101c037600060043518156117fc576004356001808203808060008112156117e457195b607f1c615ad9579050905090506101e0526001610220525b600060243518156118345760243560018082038080600081121561181c57195b607f1c615ad957905090509050610200526001610240525b600435611896576101806004356002811015615ad957602002015160443561014051670de0b6b3a764000080820490509050808202821582848304141715615ad957809050905090508181830110615ad957808201905090506101c052611a46565b6024356119e657606036610260376044356102606101e0516003811015615ad957602002015260206103a06084633883e1196102c052610260516102e05261028051610300526102a051610320526001610340526102dc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506103a05161016051808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090506101c0526101c080516101c0516020610320600463ddca3f436102c0526102dc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061032051808202821582848304141715615ad957809050905090506404a817c80080820490509050808210615ad957808203905090508152506101c080516101a0518181830110615ad95780820190509050815250611a45565b60206103206064635e0d443f610260526101e05161028052610200516102a0526044356102c05261027c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506103205160005260206000f35b5b6101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516102205161028052610240516102a0526101c0516102c052610180516102e0526101a05161030052610300516102e0516102c0516102a0516102805160065801614d7a565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610180610240516002811015615ad957602002015161026051808210615ad957808203905090506001808210615ad957808203905090506102805261028051600c5461028051808202821582848304141715615ad957809050905090506402540be40080820490509050808210615ad9578082039050905061028052602435611b9857610280805161014051670de0b6b3a764000080820490509050808015615ad957820490509050815250611c1d565b6020610340604463cc2b27d76102a05261028051670de0b6b3a7640000808202821582848304141715615ad9578090509050905061016051808015615ad9578204905090506102c052610200516102e0526102bc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061034051610280525b6102805160005260206000f35b633df02124811415611c40573361014052611c6b565b63ddc1f59d811415611c665760843560a01c615ad9576020608461014037600050611c6b565b612397565b600154615ad957600160015560043580806000811215611c8757195b607f1c615ad95790505060243580806000811215611ca157195b607f1c615ad95790505061014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e0528060200151610200525060016004356002811015615ad95702600801546102205260206102e060246370a0823161026052306102805261027c610220515afa15615ad957601f3d1115615ad9576000506102e05161024052600060046102c0527f23b872dd000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150503360208261032001015260208101905030602082610320010152602081019050604435602082610320010152602081019050806103205261032090508051602001806103e08284600060045af115615ad957505060206104c06103e0516104006000610220515af115615ad95760203d80821115611ee05780611ee2565b815b905090506104a0526104a08051602001806102608284600060045af115615ad95750506000610260511115611f44576102608060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b602061034060246370a082316102c052306102e0526102dc610220515afa15615ad957601f3d1115615ad9576000506103405161024051808210615ad95780820390509050610240526101e06004356002811015615ad9576020020151610240516101a06004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad957808201905090506102c0526101e06024356002811015615ad95760200201516101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160406004610300376102c051610340526101e051610360526102005161038052610380516103605161034051610320516103005160065801614d7a565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e051808210615ad957808203905090506001808210615ad957808203905090506102e0526102e051600c54808202821582848304141715615ad957809050905090506402540be40080820490509050610300526102e05161030051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a06024356002811015615ad9576020020151808015615ad9578204905090506102e0526064356102e05110615ad95760016024356002811015615ad95702600a0180546103005164012a05f200808202821582848304141715615ad957809050905090506402540be40080820490509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a06024356002811015615ad9576020020151808015615ad9578204905090508181830110615ad9578082019050905081555060006004610320527fa9059cbb000000000000000000000000000000000000000000000000000000006103405261032060048060208461038001018260208501600060045af1505080518201915050610140516020826103800101526020810190506102e051602082610380010152602081019050806103805261038090508051602001806104208284600060045af115615ad957505060206104e061042051610440600060016024356002811015615ad95702600801545af115615ad95760203d808211156122db57806122dd565b815b905090506104c0526104c08051602001806102608284600060045af115615ad9575050600061026051111561233f576102608060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b600435610320526102405161034052602435610360526102e05161038052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd971406080610320a26102e051600052600060015560206000f35b63a6417ed68114156123ad5733610140526123d8565b6344ee19868114156123d35760843560a01c615ad95760206084610140376000506123d8565b612f4b565b600254615ad9576001600255600435808060008112156123f457195b607f1c615ad9579050506024358080600081121561240e57195b607f1c615ad95790505061014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e05280602001516102005250736b175474e89094c44da98b954eedeac495271d0f6102205273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486102405273dac17f958d2ee523a2206206994597c13d831ec761026052610100366102803760043561259857600854610340526125de565b6004356001808203808060008112156125ad57195b607f1c615ad9579050905090506102a05260016102e0526102206102a0516003811015615ad9576020020151610340525b6024356125f15760085461036052612637565b60243560018082038080600081121561260657195b607f1c615ad9579050905090506102c0526001610300526102206102c0516003811015615ad9576020020151610360525b602061042060246370a082316103a052306103c0526103bc610340515afa15615ad957601f3d1115615ad957600050610420516103805260006004610400527f23b872dd000000000000000000000000000000000000000000000000000000006104205261040060048060208461046001018260208501600060045af15050805182019150503360208261046001015260208101905030602082610460010152602081019050604435602082610460010152602081019050806104605261046090508051602001806105208284600060045af115615ad95750506020610600610520516105406000610340515af115615ad95760203d8082111561273b578061273d565b815b905090506105e0526105e08051602001806103a08284600060045af115615ad957505060006103a051111561279f576103a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b602061048060246370a0823161040052306104205261041c610340515afa15615ad957601f3d1115615ad9576000506104805161038051808210615ad95780820390509050610380526004356127f65760016127fb565b602435155b5b15612ce457600435612874576101e06004356002811015615ad9576020020151610380516101a06004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad95780820190509050610320526129d4565b60603661040037610380516104006102a0516003811015615ad957602002015260095461046052602061050060246370a0823161048052306104a05261049c610460515afa15615ad957601f3d1115615ad957600050610500516103205273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006084634515cef361048052610400516104a052610420516104c052610440516104e05260006105005261049c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061050060246370a0823161048052306104a05261049c610460515afa15615ad957601f3d1115615ad9576000506105005161032051808210615ad9578082039050905061038052610380516101c051808202821582848304141715615ad95780905090509050670de0b6b3a764000080820490509050610320526103208051610200518181830110615ad957808201905090508152505b610140610420525b610420515160206104205101610420526104206104205110156129fe576129dc565b6102e05161044052610300516104605261032051610480526101e0516104a052610200516104c0526104c0516104a05161048051610460516104405160065801614d7a565b61052052610400610420525b610420515260206104205103610420526101406104205110612a7057612a4f565b61052051610400526101e0610300516002811015615ad957602002015161040051808210615ad957808203905090506001808210615ad957808203905090506102805261028051600c54808202821582848304141715615ad957809050905090506402540be40080820490509050610420526102805161042051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a0610300516002811015615ad9576020020151808015615ad957820490509050610280526104205164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090506104405261044051670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a0610300516002811015615ad9576020020151808015615ad957820490509050610440526001610300516002811015615ad95702600a018054610440518181830110615ad9578082019050905081555060006024351315612cd357602061050060246370a0823161048052306104a05261049c610360515afa15615ad957601f3d1115615ad957600050610500516104605273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006064631a4d01d261048052610280516104a0526102c0516104c05260006104e05261049c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061050060246370a0823161048052306104a05261049c610360515afa15615ad957601f3d1115615ad9576000506105005161046051808210615ad95780820390509050610280525b6064356102805110615ad957612dcf565b602061048060246370a0823161040052306104205261041c610360515afa15615ad957601f3d1115615ad957600050610480516102805273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006084633df02124610400526102a051610420526102c0516104405261038051610460526064356104805261041c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061048060246370a0823161040052306104205261041c610360515afa15615ad957601f3d1115615ad9576000506104805161028051808210615ad95780820390509050610280525b60006004610400527fa9059cbb000000000000000000000000000000000000000000000000000000006104205261040060048060208461046001018260208501600060045af15050805182019150506101405160208261046001015260208101905061028051602082610460010152602081019050806104605261046090508051602001806105008284600060045af115615ad957505060206105c0610500516105206000610360515af115615ad95760203d80821115612e905780612e92565b815b905090506105a0526105a08051602001806103a08284600060045af115615ad957505060006103a0511115612ef4576103a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b6004356104005260443561042052602435610440526102805161046052337fd013ca23e77a65003c2c659c5442c00c805371b7fc1ebd4c206c41d1536bd90b6080610400a261028051600052600060025560206000f35b635b36389c811415612f61573361014052612f8c565b633eb1719f811415612f875760643560a01c615ad9576020606461014037600050612f8c565b613290565b600354615ad9576001600355601b5461016052604036610180376101405161016051610180516101a0516101c0516101e05160065801614695565b61020052610220526101e0526101c0526101a05261018052610160526101405261020080516101c05280602001516101e0525061020060006002818352015b6101c0610200516002811015615ad9576020020151600435808202821582848304141715615ad9578090509050905061016051808015615ad957820490509050610220526024610200516002811015615ad95760200201356102205110615ad95761022051610180610200516002811015615ad9576020020152600060046102a0527fa9059cbb000000000000000000000000000000000000000000000000000000006102c0526102a060048060208461030001018260208501600060045af15050805182019150506101405160208261030001015260208101905061022051602082610300010152602081019050806103005261030090508051602001806103a08284600060045af115615ad957505060206104606103a0516103c060006001610200516002811015615ad95702600801545af115615ad95760203d808211156131515780613153565b815b90509050610440526104408051602001806102408284600060045af115615ad957505060006102405111156131b5576102408060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b8151600101808352811415613006575b50506101608051600435808210615ad9578082039050905081525060193360e05260c052604060c0208054600435808210615ad9578082039050905081555061016051601b55600435610200526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610200a361018051610200526101a05161022052604036610240376101605161028052337f7c363854ccf79623411f8995b362bce5eddff18c927edc6f5dbbb5e05819a82c60a0610200a260006003556040610180f35b63e31032738114156132a65733610140526132d1565b6352d2cfdd8114156132cc5760643560a01c615ad95760206064610140376000506132d1565b613a67565b600454615ad9576001600455610140516101605160065801614772565b61018052610160526101405261018051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c080516101805280602001516101a052506020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516101c051610220526101e0516102405261018051610260526101a05161028052610160516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005261018051610220526101a0516102405261026060006002818352015b6004610260516002811015615ad95760200201356102805260006102805118156135c257610220610260516002811015615ad95760200201805161028051808210615ad9578082039050905081525060006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150506101405160208261036001015260208101905061028051602082610360010152602081019050806103605261036090508051602001806104008284600060045af115615ad957505060206104c06104005161042060006001610260516002811015615ad95702600801545af115615ad95760203d8082111561355d578061355f565b815b905090506104a0526104a08051602001806102a08284600060045af115615ad957505060006102a05111156135c1576102a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b5b815160010180835281141561343d575b50506101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101c051610280526101e0516102a052610220516102c052610240516102e0526101605161030052610300516102e0516102c0516102a0516102805160065801614c4d565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605260403661028037600c546002808202821582848304141715615ad957809050905090506004808204905090506102c0526102e060006002818352015b610260516101806102e0516002811015615ad9576020020151808202821582848304141715615ad9578090509050905061020051808015615ad957820490509050610300526000610320526102206102e0516002811015615ad95760200201516103405261034051610300511115613743576103005161034051808210615ad957808203905090506103205261375e565b6103405161030051808210615ad95780820390509050610320525b6102c05161032051808202821582848304141715615ad957809050905090506402540be400808204905090506102806102e0516002811015615ad957602002015260016102e0516002811015615ad95702600a0180546102806102e0516002811015615ad957602002015164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad957808201905090508155506102206102e0516002811015615ad9576020020180516102806102e0516002811015615ad9576020020151808210615ad957808203905090508152505b81516001018083528114156136b2575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516101c051610300526101e05161032052610220516103405261024051610360526101605161038052610380516103605161034051610320516103005160065801614c4d565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102e052601b5461030052610200516102e051808210615ad9578082039050905061030051808202821582848304141715615ad9578090509050905061020051808015615ad95782049050905060018181830110615ad95780820190509050610320526001610320511115615ad9576044356103205111615ad957610300805161032051808210615ad9578082039050905081525061030051601b5560193360e05260c052604060c020805461032051808210615ad9578082039050905081555061032051610340526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610340a3604060046103403761028051610380526102a0516103a052610260516103c052610300516103e052337f2b5508378d7e19e0d5fa338419034731416c4f5b219a10379956f764317fd47e60c0610340a261032051600052600060045560206000f35b63cc2b27d7811415613ac15760243580806000811215613a8357195b607f1c615ad9579050506004356101405260243561016052610160516101405160065801615465565b6101c0526101e0526101c05160005260206000f35b631a4d01d2811415613ad7573361014052613b02565b63081579a5811415613afd5760643560a01c615ad9576020606461014037600050613b02565b613dd4565b600554615ad957600160055560243580806000811215613b1e57195b607f1c615ad9579050506101405161016051610180516004356101a0526024356101c0526101c0516101a05160065801615465565b6102205261024052610180526101605261014052610220805161016052806020015161018052506044356101605110615ad95760016024356002811015615ad95702600a0180546101805164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad95780820190509050815550601b54600435808210615ad957808203905090506101a0526101a051601b5560193360e05260c052604060c0208054600435808210615ad957808203905090508155506004356101c0526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a360006004610220527fa9059cbb000000000000000000000000000000000000000000000000000000006102405261022060048060208461028001018260208501600060045af15050805182019150506101405160208261028001015260208101905061016051602082610280010152602081019050806102805261028090508051602001806103208284600060045af115615ad957505060206103e061032051610340600060016024356002811015615ad95702600801545af115615ad95760203d80821115613d1f5780613d21565b815b905090506103c0526103c08051602001806101c08284600060045af115615ad957505060006101c0511115613d83576101c08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b6004356102205261016051610240526101a05161026052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610220a261016051600052600060055560206000f35b633c157e64811415613f685760206101a0600463f851a4406101405261015c6007545afa15615ad957601f3d1115615ad9576000506101a051331415615ad957600f54620151808181830110615ad957808201905090504210615ad95742620151808181830110615ad9578082019050905060243510615ad9576101405160065801614772565b610160526101405261016051610140526004356064808202821582848304141715615ad957809050905090506101605260006004351115613ea357620f424060043510613ea6565b60005b15615ad95761014051610160511015613ee4576101405161016051600a808202821582848304141715615ad9578090509050905010615ad957613f0b565b61014051600a808202821582848304141715615ad957809050905090506101605111615ad9575b61014051600d5561016051600e5542600f556024356010556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a65888114156140115760206101a0600463f851a4406101405261015c6007545afa15615ad957601f3d1115615ad9576000506101a051331415615ad9576101405160065801614772565b6101605261014052610160516101405261014051600d5561014051600e5542600f5542601055610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b6330c5408581141561435c57600654615ad9576001600655610140516101605160065801614695565b610180526101a05261016052610140526101808051610140528060200151610160525060075461018052600a546101a05260006101a05111156141d9576000600a556008546101c05260006004610240527fa9059cbb00000000000000000000000000000000000000000000000000000000610260526102406004806020846102a001018260208501600060045af1505080518201915050610180516020826102a00101526020810190506101a0516020826102a0010152602081019050806102a0526102a090508051602001806103408284600060045af115615ad957505060206104006103405161036060006101c0515af115615ad95760203d808211156141445780614146565b815b905090506103e0526103e08051602001806101e08284600060045af115615ad957505060006101e05111156141a8576101e08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b60206102a0600463bcc981d26102405261025c6000610180515af115615ad957601f3d1115615ad9576000506102a0505b600b546101a05260006101a0511115614355576000600b556009546101c0526020610280602463154aa8f561020052306102205261021c610180515afa15615ad957601f3d1115615ad957600050610280516101e05260006004610260527fa9059cbb00000000000000000000000000000000000000000000000000000000610280526102606004806020846102c001018260208501600060045af15050805182019150506101e0516020826102c00101526020810190506101a0516020826102c0010152602081019050806102c0526102c090508051602001806103608284600060045af115615ad957505060206104206103605161038060006101c0515af115615ad95760203d808211156142f057806142f2565b815b90509050610400526104008051602001806102008284600060045af115615ad95750506000610200511115614354576102008060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b6000600655005b63c66106578114156143845760016004356002811015615ad957026008015460005260206000f35b63e2e7d2648114156143ac5760016004356002811015615ad95702600a015460005260206000f35b63ddca3f438114156143c457600c5460005260206000f35b635409491a8114156143dc57600d5460005260206000f35b63b4b577ad8114156143f457600e5460005260206000f35b632081066c81141561440c57600f5460005260206000f35b63140522888114156144245760105460005260206000f35b6306fdde038114156144c157601280610180602082540161012060006003818352015b8261012051602002111561445a5761447c565b61012051850154610120516020028501525b8151600101808352811415614447575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561455e57601680610180602082540161012060006002818352015b826101205160200211156144f757614519565b61012051850154610120516020028501525b81516001018083528114156144e4575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6370a0823181141561458e5760043560a01c615ad957601960043560e05260c052604060c0205460005260206000f35b63dd62ed3e8114156145d65760043560a01c615ad95760243560a01c615ad957601a60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6318160ddd8114156145ee57601b5460005260206000f35b505b60006000fd5b6101a05261014052610160526101805260196101405160e05260c052604060c020805461018051808210615ad9578082039050905081555060196101605160e05260c052604060c0208054610180518181830110615ad95780820190509050815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b61014052604036610160376101a060006002818352015b602061024060246370a082316101c052306101e0526101dc60016101a0516002811015615ad95702600801545afa15615ad957601f3d1115615ad9576000506102405160016101a0516002811015615ad95702600a0154808210615ad957808203905090506101606101a0516002811015615ad95760200201525b81516001018083528114156146ac575b505060406101a0525b60006101a051116147505761476c565b60206101a05103610160015160206101a051036101a052614740565b61014051565b6101405260105461016052600e5461018052610160514210156148b857600d546101a052600f546101c0526101a051610180511115614832576101a051610180516101a051808210615ad95780820390509050426101c051808210615ad95780820390509050808202821582848304141715615ad95780905090509050610160516101c051808210615ad95780820390509050808015615ad9578204905090508181830110615ad9578082019050905060005260005161014051566148b3565b6101a0516101a05161018051808210615ad95780820390509050426101c051808210615ad95780820390509050808202821582848304141715615ad95780905090509050610160516101c051808210615ad95780820390509050808015615ad957820490509050808210615ad9578082039050905060005260005161014051565b6148c8565b6101805160005260005161014051565b005b6101c0526101405261016052610180526101a0526040366101e03761022060006002818352015b610140610220516002811015615ad9576020020151610180610220516002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090506101e0610220516002811015615ad95760200201525b81516001018083528114156148f1575b50506040610220525b600061022051116149815761499d565b602061022051036101e001516020610220510361022052614971565b6101c051565b6101a0526101405261016052610180526040366101c03761022060006002818352015b602061022051026101400151610200526101c08051610200518181830110615ad957808201905090508152505b81516001018083528114156149c6575b50506101c051614a1b5760006000526000516101a051565b6101c05161020052610180516002808202821582848304141715615ad9578090509050905061022052610240600060ff818352015b61020051610260526102a060006002818352015b60206102a051026101400151610280526102605161020051808202821582848304141715615ad95780905090509050610280516002808202821582848304141715615ad95780905090509050808015615ad957820490509050610260525b8151600101808352811415614a64575b5050610200516101e052610220516101c051808202821582848304141715615ad95780905090509050606480820490509050610260516002808202821582848304141715615ad957809050905090508181830110615ad9578082019050905061020051808202821582848304141715615ad95780905090509050610220516064808210615ad9578082039050905061020051808202821582848304141715615ad95780905090509050606480820490509050600361026051808202821582848304141715615ad957809050905090508181830110615ad95780820190509050808015615ad957820490509050610200526101e051610200511115614c04576001610200516101e051808210615ad9578082039050905011614bff576102005160005250506000516101a051565b614c34565b60016101e05161020051808210615ad9578082039050905011614c33576102005160005250506000516101a051565b5b5b8151600101808352811415614a50575b505060006000fd5b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a052610180526101605261014052610300805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610200516102405261022051610260526101c05161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516000526000516101e051565b6101e0526101405261016052610180526101a0526101c05261016051610140511815615ad95760006101605112615ad9576002610160511215615ad95760006101405112615ad9576002610140511215615ad9576101405161016051610180516101a0516101c0516101e0516102005160065801614772565b61022052610200526101e0526101c0526101a05261018052610160526101405261022051610200526101405161016051610180516101a0516101c0516101e05161020051610220516101a051610240526101c051610260526102005161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205260603661024037610220516102a052610200516002808202821582848304141715615ad957809050905090506102c0526102e060006002818352015b610140516102e0511415614eeb576101805161026052614f1d565b610160516102e0511815614f17576101a06102e0516002811015615ad957602002015161026052614f1c565b614f87565b5b6102408051610260518181830110615ad957808201905090508152506102a05161022051808202821582848304141715615ad95780905090509050610260516002808202821582848304141715615ad95780905090509050808015615ad9578204905090506102a0525b8151600101808352811415614ed0575b50506102a05161022051808202821582848304141715615ad957809050905090506064808202821582848304141715615ad957809050905090506102c0516002808202821582848304141715615ad95780905090509050808015615ad9578204905090506102a05261024051610220516064808202821582848304141715615ad957809050905090506102c051808015615ad9578204905090508181830110615ad957808201905090506102e0526102205161030052610320600060ff818352015b61030051610280526103005161030051808202821582848304141715615ad957809050905090506102a0518181830110615ad95780820190509050600261030051808202821582848304141715615ad957809050905090506102e0518181830110615ad9578082019050905061022051808210615ad95780820390509050808015615ad957820490509050610300526102805161030051111561512a5760016103005161028051808210615ad9578082039050905011615125576103005160005250506000516101e051565b61515a565b60016102805161030051808210615ad9578082039050905011615159576103005160005250506000516101e051565b5b5b8151600101808352811415615059575b505060006000fd5b6101e0526101405261016052610180526101a0526101c05260006101605112615ad9576002610160511215615ad957606036610200376101c05161026052610140516002808202821582848304141715615ad95780905090509050610280526102a060006002818352015b610160516102a051181561520a576101806102a0516002811015615ad95760200201516102205261520f565b615279565b6102008051610220518181830110615ad95780820190509050815250610260516101c051808202821582848304141715615ad95780905090509050610220516002808202821582848304141715615ad95780905090509050808015615ad957820490509050610260525b81516001018083528114156151de575b5050610260516101c051808202821582848304141715615ad957809050905090506064808202821582848304141715615ad95780905090509050610280516002808202821582848304141715615ad95780905090509050808015615ad95782049050905061026052610200516101c0516064808202821582848304141715615ad9578090509050905061028051808015615ad9578204905090508181830110615ad957808201905090506102a0526101c0516102c0526102e0600060ff818352015b6102c051610240526102c0516102c051808202821582848304141715615ad95780905090509050610260518181830110615ad9578082019050905060026102c051808202821582848304141715615ad957809050905090506102a0518181830110615ad957808201905090506101c051808210615ad95780820390509050808015615ad9578204905090506102c052610240516102c051111561541c5760016102c05161024051808210615ad9578082039050905011615417576102c05160005250506000516101e051565b61544c565b6001610240516102c051808210615ad957808203905090501161544b576102c05160005250506000516101e051565b5b5b815160010180835281141561534b575b505060006000fd5b6101805261014052610160526101405161016051610180516101a05160065801614772565b6101c0526101a0526101805261016052610140526101c0516101a0526020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516102205160065801614695565b610240526102605261022052610200526101e0526101c0526101a05261018052610160526101405261024080516102805280602001516102a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101c0516102c0526101e0516102e05261028051610300526102a0516103205261032051610300516102e0516102c051600658016148ca565b610380526103a0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380805161020052806020015161022052506101405161016051610180516101a0516101c0516101e051610200516102205161024051610200516102605261022051610280526101a0516102a0526102a0516102805161026051600658016149a3565b610300526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103005161024052601b5461026052610240516101405161024051808202821582848304141715615ad9578090509050905061026051808015615ad957820490509050808210615ad95780820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526102005161030052610220516103205261028051610340526103405161032051610300516102e0516102c05160065801615173565b6103a0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102a052600c546002808202821582848304141715615ad957809050905090506004808204905090506102c0526040366102e03761032060006002818352015b600061034052610200610320516002811015615ad95760200201516103605261016051610320511415615843576103605161028051808202821582848304141715615ad9578090509050905061024051808015615ad9578204905090506102a051808210615ad957808203905090506103405261588a565b610360516103605161028051808202821582848304141715615ad9578090509050905061024051808015615ad957820490509050808210615ad95780820390509050610340525b610360516102c05161034051808202821582848304141715615ad957809050905090506402540be40080820490509050808210615ad957808203905090506102e0610320516002811015615ad95760200201525b81516001018083528114156157cb575b50506102e0610160516002811015615ad9576020020151610140610340525b6103405151602061034051016103405261034061034051101561592f5761590d565b6101a0516103605261016051610380526102e0516103a052610300516103c052610280516103e0526103e0516103c0516103a051610380516103605160065801615173565b61044052610320610340525b6103405152602061034051036103405261014061034051106159a157615980565b61044051808210615ad9578082039050905061032052610200610160516002811015615ad95760200201516102a051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101c0610160516002811015615ad9576020020151808015615ad95782049050905061034052610320516001808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101c0610160516002811015615ad9576020020151808015615ad9578204905090506103205261032051610380526103405161032051808210615ad957808203905090506103a0526040610360525b60006103605111615ab757615ad3565b6020610360510361038001516020610360510361036052615aa7565b61018051565b600080fd5b61000a615ae80361000a60003961000a615ae8036000f3
Deployed Bytecode
0x600436101561000d576145f0565b600035601c5260005134615ad9576398094be08114156103735760406004356004016101403760206004356004013511615ad957602a6024356004016101a037600a6024356004013511615ad95760443560a01c615ad957600c54615ad9576084356064808202821582848304141715615ad957809050905090506102005260086044358155736c3f90f043a72fa612cbac8115ee7e52bde6e49060018201555060643560115561020051600d5561020051600e5560a435600c55336007556000601f610220527f43757276652e666920466163746f727920555344204d657461706f6f6c3a200061024052610220601f8060208461028001018260208501600060045af150508051820191505061014060208060208461028001018260208501600060045af150508051820191505080610280526102809050806012602082510161012060006003818352015b8261012051602002111561016e57610190565b61012051602002850151610120518501555b815160010180835281141561015b575b50505050505060006101a0600a8060208461028001018260208501600060045af15050805182019150506006610220527f334352562d6600000000000000000000000000000000000000000000000000006102405261022060068060208461028001018260208501600060045af150508051820191505080610280526102809050806016602082510161012060006002818352015b826101205160200211156102385761025a565b61012051602002850151610120518501555b8151600101808352811415610225575b505050505050736b175474e89094c44da98b954eedeac495271d0f6102605273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486102805273dac17f958d2ee523a2206206994597c13d831ec76102a05261024060006003818352015b60206102405102610260015161022052610220513b15615ad95760006000604463095ea7b36102c05273bebc44782c7db0a1a60cb6fe97d0b483032ff1c76102e0527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610300526102dc6000610220515af115615ad9575b81516001018083528114156102b7575b50506000610220523060007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610220a3005b63313ce56781141561038a57601260005260206000f35b63a9059cbb8114156103d65760043560a01c615ad95733610140526004356101605260243561018052610180516101605161014051600658016145f6565b600050600160005260206000f35b6323b872dd8114156104ad5760043560a01c615ad95760243560a01c615ad957600435610140526024356101605260443561018052610180516101605161014051600658016145f6565b600050601a60043560e05260c052604060c0203360e05260c052604060c02054610140527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101405118156104a25761014051604435808210615ad95780820390509050601a60043560e05260c052604060c0203360e05260c052604060c020555b600160005260206000f35b63095ea7b38114156105205760043560a01c615ad957602435601a3360e05260c052604060c02060043560e05260c052604060c0205560243561014052600435337f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9256020610140a3600160005260206000f35b634903b0d181141561055a5760065801614695565b61014052610160526101406004356002811015615ad957602002015160005260206000f35b6314f0597981141561057e57604060065801614695565b6101405261016052610140f35b63fee3f7f98114156105995764012a05f20060005260206000f35b63f446c1d08114156105c85760065801614772565b610140526101405160648082049050905060005260206000f35b6376a2f0f08114156105ee5760065801614772565b610140526101405160005260206000f35b63bb7b8b808114156107e7576101405160065801614772565b6101605261014052610160516101405261014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e052806020015161020052506101405161016051610180516101a0516101c0516101e05161020051610220516101e0516102405261020051610260526101405161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205261022051670de0b6b3a7640000808202821582848304141715615ad95780905090509050601b54808015615ad95782049050905060005260206000f35b63ed8e84f3811415610acf5760443560011c615ad9576101405160065801614772565b6101605261014052610160516101405261014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e0516101a051610200526101c05161022052610160516102405261018051610260526101405161028052610280516102605161024051610220516102005160065801614c4d565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e05261020060006002818352015b6004610200516002811015615ad9576020020135610220526044351561098757610160610200516002811015615ad957602002018051610220518181830110615ad957808201905090508152506109b3565b610160610200516002811015615ad95760200201805161022051808210615ad957808203905090508152505b5b8151600101808352811415610935575b50506101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c0516102405261016051610260526101805161028052610140516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005260006102205260443515610a7c57610200516101e051808210615ad9578082039050905061022052610a97565b6101e05161020051808210615ad95780820390509050610220525b61022051601b54808202821582848304141715615ad957809050905090506101e051808015615ad95782049050905060005260206000f35b630b4c7e4d811415610ae5573361014052610b10565b630c3e4b54811415610b0b5760643560a01c615ad9576020606461014037600050610b10565b611341565b600054615ad9576001600055610140516101605160065801614772565b61018052610160526101405261018051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c080516101805280602001516101a052506020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516101c051610220526101e0516102405261018051610260526101a05161028052610160516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005261018051610220526101a05161024052601b546102605261028060006002818352015b6004610280516002811015615ad95760200201356102a0526102a051610cb4576000610260511115615ad957610ea4565b6001610280516002811015615ad95702600801546102c052602061038060246370a0823161030052306103205261031c6102c0515afa15615ad957601f3d1115615ad957600050610380516102e05260006004610360527f23b872dd00000000000000000000000000000000000000000000000000000000610380526103606004806020846103c001018260208501600060045af1505080518201915050336020826103c0010152602081019050306020826103c00101526020810190506102a0516020826103c0010152602081019050806103c0526103c090508051602001806104808284600060045af115615ad95750506020610560610480516104a060006102c0515af115615ad95760203d80821115610dd15780610dd3565b815b90509050610540526105408051602001806103008284600060045af115615ad95750506000610300511115610e35576103008060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b610220610280516002811015615ad95760200201805160206103e060246370a0823161036052306103805261037c6102c0515afa15615ad957601f3d1115615ad9576000506103e0516102e051808210615ad957808203905090508181830110615ad957808201905090508152505b5b8151600101808352811415610c83575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516101c0516102a0526101e0516102c052610220516102e0526102405161030052610160516103205261032051610300516102e0516102c0516102a05160065801614c4d565b6103805261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380516102805261020051610280511115615ad9576060366102a037600061026051111561124857600c546002808202821582848304141715615ad957809050905090506004808204905090506103005261032060006002818352015b61028051610180610320516002811015615ad9576020020151808202821582848304141715615ad9578090509050905061020051808015615ad95782049050905061034052600061036052610220610320516002811015615ad95760200201516103805261038051610340511115611047576103405161038051808210615ad9578082039050905061036052611062565b6103805161034051808210615ad95780820390509050610360525b6103005161036051808202821582848304141715615ad957809050905090506402540be400808204905090506102a0610320516002811015615ad95760200201526001610320516002811015615ad95702600a0180546102a0610320516002811015615ad957602002015164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad95780820190509050815550610220610320516002811015615ad9576020020180516102a0610320516002811015615ad9576020020151808210615ad957808203905090508152505b8151600101808352811415610fb6575b5050610140610340525b6103405151602061034051016103405261034061034051101561118357611161565b6101c051610360526101e05161038052610220516103a052610240516103c052610160516103e0526103e0516103c0516103a051610380516103605160065801614c4d565b61044052610320610340525b6103405152602061034051036103405261014061034051106111f5576111d4565b6104405161032052610260516103205161020051808210615ad95780820390509050808202821582848304141715615ad9578090509050905061020051808015615ad9578204905090506102e052611251565b610280516102e0525b6044356102e05110615ad95761026080516102e0518181830110615ad9578082019050905081525060196101405160e05260c052604060c02080546102e0518181830110615ad9578082019050905081555061026051601b556102e051610300526101405160007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610300a360406004610300376102a051610340526102c051610360526102805161038052610260516103a052337f26f55a85081d24974e85c6c00045d0f0453991e95873f52bff0d21af4079a76860c0610300a26102e051600052600060005560206000f35b635e0d443f811415611653576004358080600081121561135d57195b607f1c615ad9579050506024358080600081121561137757195b607f1c615ad95790505060206101e0600463bb7b8b806101805261019c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506101e051610200526011546101405261020051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c0805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610140516102405261016051610260526102005161028052610220516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101805280602001516101a052506101806004356002811015615ad95760200201516044356101406004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad957808201905090506101c0526101405161016051610180516101a0516101c0516101e05160406004610200376101c0516102405261018051610260526101a05161028052610280516102605161024051610220516102005160065801614d7a565b6102e0526101e0526101c0526101a0526101805261016052610140526102e0516101e0526101806024356002811015615ad95760200201516101e051808210615ad957808203905090506001808210615ad9578082039050905061020052600c5461020051808202821582848304141715615ad957809050905090506402540be40080820490509050610220526102005161022051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101406024356002811015615ad9576020020151808015615ad95782049050905060005260206000f35b6307211ef7811415611c2a576004358080600081121561166f57195b607f1c615ad9579050506024358080600081121561168957195b607f1c615ad95790505060206101e0600463bb7b8b806101805261019c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506101e051610200526011546101405261020051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c0805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610140516102405261016051610260526102005161028052610220516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a05261018052610160526101405261030080516101805280602001516101a0525060a0366101c037600060043518156117fc576004356001808203808060008112156117e457195b607f1c615ad9579050905090506101e0526001610220525b600060243518156118345760243560018082038080600081121561181c57195b607f1c615ad957905090509050610200526001610240525b600435611896576101806004356002811015615ad957602002015160443561014051670de0b6b3a764000080820490509050808202821582848304141715615ad957809050905090508181830110615ad957808201905090506101c052611a46565b6024356119e657606036610260376044356102606101e0516003811015615ad957602002015260206103a06084633883e1196102c052610260516102e05261028051610300526102a051610320526001610340526102dc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506103a05161016051808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090506101c0526101c080516101c0516020610320600463ddca3f436102c0526102dc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061032051808202821582848304141715615ad957809050905090506404a817c80080820490509050808210615ad957808203905090508152506101c080516101a0518181830110615ad95780820190509050815250611a45565b60206103206064635e0d443f610260526101e05161028052610200516102a0526044356102c05261027c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad9576000506103205160005260206000f35b5b6101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516102205161028052610240516102a0526101c0516102c052610180516102e0526101a05161030052610300516102e0516102c0516102a0516102805160065801614d7a565b61036052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103605161026052610180610240516002811015615ad957602002015161026051808210615ad957808203905090506001808210615ad957808203905090506102805261028051600c5461028051808202821582848304141715615ad957809050905090506402540be40080820490509050808210615ad9578082039050905061028052602435611b9857610280805161014051670de0b6b3a764000080820490509050808015615ad957820490509050815250611c1d565b6020610340604463cc2b27d76102a05261028051670de0b6b3a7640000808202821582848304141715615ad9578090509050905061016051808015615ad9578204905090506102c052610200516102e0526102bc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061034051610280525b6102805160005260206000f35b633df02124811415611c40573361014052611c6b565b63ddc1f59d811415611c665760843560a01c615ad9576020608461014037600050611c6b565b612397565b600154615ad957600160015560043580806000811215611c8757195b607f1c615ad95790505060243580806000811215611ca157195b607f1c615ad95790505061014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e0528060200151610200525060016004356002811015615ad95702600801546102205260206102e060246370a0823161026052306102805261027c610220515afa15615ad957601f3d1115615ad9576000506102e05161024052600060046102c0527f23b872dd000000000000000000000000000000000000000000000000000000006102e0526102c060048060208461032001018260208501600060045af15050805182019150503360208261032001015260208101905030602082610320010152602081019050604435602082610320010152602081019050806103205261032090508051602001806103e08284600060045af115615ad957505060206104c06103e0516104006000610220515af115615ad95760203d80821115611ee05780611ee2565b815b905090506104a0526104a08051602001806102608284600060045af115615ad95750506000610260511115611f44576102608060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b602061034060246370a082316102c052306102e0526102dc610220515afa15615ad957601f3d1115615ad9576000506103405161024051808210615ad95780820390509050610240526101e06004356002811015615ad9576020020151610240516101a06004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad957808201905090506102c0526101e06024356002811015615ad95760200201516101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e05160406004610300376102c051610340526101e051610360526102005161038052610380516103605161034051610320516103005160065801614d7a565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e051808210615ad957808203905090506001808210615ad957808203905090506102e0526102e051600c54808202821582848304141715615ad957809050905090506402540be40080820490509050610300526102e05161030051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a06024356002811015615ad9576020020151808015615ad9578204905090506102e0526064356102e05110615ad95760016024356002811015615ad95702600a0180546103005164012a05f200808202821582848304141715615ad957809050905090506402540be40080820490509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a06024356002811015615ad9576020020151808015615ad9578204905090508181830110615ad9578082019050905081555060006004610320527fa9059cbb000000000000000000000000000000000000000000000000000000006103405261032060048060208461038001018260208501600060045af1505080518201915050610140516020826103800101526020810190506102e051602082610380010152602081019050806103805261038090508051602001806104208284600060045af115615ad957505060206104e061042051610440600060016024356002811015615ad95702600801545af115615ad95760203d808211156122db57806122dd565b815b905090506104c0526104c08051602001806102608284600060045af115615ad9575050600061026051111561233f576102608060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b600435610320526102405161034052602435610360526102e05161038052337f8b3e96f2b889fa771c53c981b40daf005f63f637f1869f707052d15a3dd971406080610320a26102e051600052600060015560206000f35b63a6417ed68114156123ad5733610140526123d8565b6344ee19868114156123d35760843560a01c615ad95760206084610140376000506123d8565b612f4b565b600254615ad9576001600255600435808060008112156123f457195b607f1c615ad9579050506024358080600081121561240e57195b607f1c615ad95790505061014051610160516101805160065801614695565b6101a0526101c0526101805261016052610140526101a0805161016052806020015161018052506020610240600463bb7b8b806101e0526101fc73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061024051610260526011546101a052610260516101c0526101405161016051610180516101a0516101c0516101e051610200516101a051610220526101c051610240526101605161026052610180516102805261028051610260516102405161022051600658016148ca565b6102e05261030052610200526101e0526101c0526101a0526101805261016052610140526102e080516101e05280602001516102005250736b175474e89094c44da98b954eedeac495271d0f6102205273a0b86991c6218b36c1d19d4a2e9eb0ce3606eb486102405273dac17f958d2ee523a2206206994597c13d831ec761026052610100366102803760043561259857600854610340526125de565b6004356001808203808060008112156125ad57195b607f1c615ad9579050905090506102a05260016102e0526102206102a0516003811015615ad9576020020151610340525b6024356125f15760085461036052612637565b60243560018082038080600081121561260657195b607f1c615ad9579050905090506102c0526001610300526102206102c0516003811015615ad9576020020151610360525b602061042060246370a082316103a052306103c0526103bc610340515afa15615ad957601f3d1115615ad957600050610420516103805260006004610400527f23b872dd000000000000000000000000000000000000000000000000000000006104205261040060048060208461046001018260208501600060045af15050805182019150503360208261046001015260208101905030602082610460010152602081019050604435602082610460010152602081019050806104605261046090508051602001806105208284600060045af115615ad95750506020610600610520516105406000610340515af115615ad95760203d8082111561273b578061273d565b815b905090506105e0526105e08051602001806103a08284600060045af115615ad957505060006103a051111561279f576103a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b602061048060246370a0823161040052306104205261041c610340515afa15615ad957601f3d1115615ad9576000506104805161038051808210615ad95780820390509050610380526004356127f65760016127fb565b602435155b5b15612ce457600435612874576101e06004356002811015615ad9576020020151610380516101a06004356002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090508181830110615ad95780820190509050610320526129d4565b60603661040037610380516104006102a0516003811015615ad957602002015260095461046052602061050060246370a0823161048052306104a05261049c610460515afa15615ad957601f3d1115615ad957600050610500516103205273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006084634515cef361048052610400516104a052610420516104c052610440516104e05260006105005261049c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061050060246370a0823161048052306104a05261049c610460515afa15615ad957601f3d1115615ad9576000506105005161032051808210615ad9578082039050905061038052610380516101c051808202821582848304141715615ad95780905090509050670de0b6b3a764000080820490509050610320526103208051610200518181830110615ad957808201905090508152505b610140610420525b610420515160206104205101610420526104206104205110156129fe576129dc565b6102e05161044052610300516104605261032051610480526101e0516104a052610200516104c0526104c0516104a05161048051610460516104405160065801614d7a565b61052052610400610420525b610420515260206104205103610420526101406104205110612a7057612a4f565b61052051610400526101e0610300516002811015615ad957602002015161040051808210615ad957808203905090506001808210615ad957808203905090506102805261028051600c54808202821582848304141715615ad957809050905090506402540be40080820490509050610420526102805161042051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a0610300516002811015615ad9576020020151808015615ad957820490509050610280526104205164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090506104405261044051670de0b6b3a7640000808202821582848304141715615ad957809050905090506101a0610300516002811015615ad9576020020151808015615ad957820490509050610440526001610300516002811015615ad95702600a018054610440518181830110615ad9578082019050905081555060006024351315612cd357602061050060246370a0823161048052306104a05261049c610360515afa15615ad957601f3d1115615ad957600050610500516104605273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006064631a4d01d261048052610280516104a0526102c0516104c05260006104e05261049c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061050060246370a0823161048052306104a05261049c610360515afa15615ad957601f3d1115615ad9576000506105005161046051808210615ad95780820390509050610280525b6064356102805110615ad957612dcf565b602061048060246370a0823161040052306104205261041c610360515afa15615ad957601f3d1115615ad957600050610480516102805273bebc44782c7db0a1a60cb6fe97d0b483032ff1c73b15615ad957600060006084633df02124610400526102a051610420526102c0516104405261038051610460526064356104805261041c600073bebc44782c7db0a1a60cb6fe97d0b483032ff1c75af115615ad957602061048060246370a0823161040052306104205261041c610360515afa15615ad957601f3d1115615ad9576000506104805161028051808210615ad95780820390509050610280525b60006004610400527fa9059cbb000000000000000000000000000000000000000000000000000000006104205261040060048060208461046001018260208501600060045af15050805182019150506101405160208261046001015260208101905061028051602082610460010152602081019050806104605261046090508051602001806105008284600060045af115615ad957505060206105c0610500516105206000610360515af115615ad95760203d80821115612e905780612e92565b815b905090506105a0526105a08051602001806103a08284600060045af115615ad957505060006103a0511115612ef4576103a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b6004356104005260443561042052602435610440526102805161046052337fd013ca23e77a65003c2c659c5442c00c805371b7fc1ebd4c206c41d1536bd90b6080610400a261028051600052600060025560206000f35b635b36389c811415612f61573361014052612f8c565b633eb1719f811415612f875760643560a01c615ad9576020606461014037600050612f8c565b613290565b600354615ad9576001600355601b5461016052604036610180376101405161016051610180516101a0516101c0516101e05160065801614695565b61020052610220526101e0526101c0526101a05261018052610160526101405261020080516101c05280602001516101e0525061020060006002818352015b6101c0610200516002811015615ad9576020020151600435808202821582848304141715615ad9578090509050905061016051808015615ad957820490509050610220526024610200516002811015615ad95760200201356102205110615ad95761022051610180610200516002811015615ad9576020020152600060046102a0527fa9059cbb000000000000000000000000000000000000000000000000000000006102c0526102a060048060208461030001018260208501600060045af15050805182019150506101405160208261030001015260208101905061022051602082610300010152602081019050806103005261030090508051602001806103a08284600060045af115615ad957505060206104606103a0516103c060006001610200516002811015615ad95702600801545af115615ad95760203d808211156131515780613153565b815b90509050610440526104408051602001806102408284600060045af115615ad957505060006102405111156131b5576102408060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b8151600101808352811415613006575b50506101608051600435808210615ad9578082039050905081525060193360e05260c052604060c0208054600435808210615ad9578082039050905081555061016051601b55600435610200526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610200a361018051610200526101a05161022052604036610240376101605161028052337f7c363854ccf79623411f8995b362bce5eddff18c927edc6f5dbbb5e05819a82c60a0610200a260006003556040610180f35b63e31032738114156132a65733610140526132d1565b6352d2cfdd8114156132cc5760643560a01c615ad95760206064610140376000506132d1565b613a67565b600454615ad9576001600455610140516101605160065801614772565b61018052610160526101405261018051610160526101405161016051610180516101a05160065801614695565b6101c0526101e0526101a0526101805261016052610140526101c080516101805280602001516101a052506020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516101c051610220526101e0516102405261018051610260526101a05161028052610160516102a0526102a0516102805161026051610240516102205160065801614c4d565b61030052610200526101e0526101c0526101a052610180526101605261014052610300516102005261018051610220526101a0516102405261026060006002818352015b6004610260516002811015615ad95760200201356102805260006102805118156135c257610220610260516002811015615ad95760200201805161028051808210615ad9578082039050905081525060006004610300527fa9059cbb000000000000000000000000000000000000000000000000000000006103205261030060048060208461036001018260208501600060045af15050805182019150506101405160208261036001015260208101905061028051602082610360010152602081019050806103605261036090508051602001806104008284600060045af115615ad957505060206104c06104005161042060006001610260516002811015615ad95702600801545af115615ad95760203d8082111561355d578061355f565b815b905090506104a0526104a08051602001806102a08284600060045af115615ad957505060006102a05111156135c1576102a08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b5b815160010180835281141561343d575b50506101405161016051610180516101a0516101c0516101e051610200516102205161024051610260516101c051610280526101e0516102a052610220516102c052610240516102e0526101605161030052610300516102e0516102c0516102a0516102805160065801614c4d565b61036052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610360516102605260403661028037600c546002808202821582848304141715615ad957809050905090506004808204905090506102c0526102e060006002818352015b610260516101806102e0516002811015615ad9576020020151808202821582848304141715615ad9578090509050905061020051808015615ad957820490509050610300526000610320526102206102e0516002811015615ad95760200201516103405261034051610300511115613743576103005161034051808210615ad957808203905090506103205261375e565b6103405161030051808210615ad95780820390509050610320525b6102c05161032051808202821582848304141715615ad957809050905090506402540be400808204905090506102806102e0516002811015615ad957602002015260016102e0516002811015615ad95702600a0180546102806102e0516002811015615ad957602002015164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad957808201905090508155506102206102e0516002811015615ad9576020020180516102806102e0516002811015615ad9576020020151808210615ad957808203905090508152505b81516001018083528114156136b2575b50506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516102c0516102e0516101c051610300526101e05161032052610220516103405261024051610360526101605161038052610380516103605161034051610320516103005160065801614c4d565b6103e0526102e0526102c0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103e0516102e052601b5461030052610200516102e051808210615ad9578082039050905061030051808202821582848304141715615ad9578090509050905061020051808015615ad95782049050905060018181830110615ad95780820190509050610320526001610320511115615ad9576044356103205111615ad957610300805161032051808210615ad9578082039050905081525061030051601b5560193360e05260c052604060c020805461032051808210615ad9578082039050905081555061032051610340526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef6020610340a3604060046103403761028051610380526102a0516103a052610260516103c052610300516103e052337f2b5508378d7e19e0d5fa338419034731416c4f5b219a10379956f764317fd47e60c0610340a261032051600052600060045560206000f35b63cc2b27d7811415613ac15760243580806000811215613a8357195b607f1c615ad9579050506004356101405260243561016052610160516101405160065801615465565b6101c0526101e0526101c05160005260206000f35b631a4d01d2811415613ad7573361014052613b02565b63081579a5811415613afd5760643560a01c615ad9576020606461014037600050613b02565b613dd4565b600554615ad957600160055560243580806000811215613b1e57195b607f1c615ad9579050506101405161016051610180516004356101a0526024356101c0526101c0516101a05160065801615465565b6102205261024052610180526101605261014052610220805161016052806020015161018052506044356101605110615ad95760016024356002811015615ad95702600a0180546101805164012a05f200808202821582848304141715615ad957809050905090506402540be400808204905090508181830110615ad95780820190509050815550601b54600435808210615ad957808203905090506101a0526101a051601b5560193360e05260c052604060c0208054600435808210615ad957808203905090508155506004356101c0526000337fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a360006004610220527fa9059cbb000000000000000000000000000000000000000000000000000000006102405261022060048060208461028001018260208501600060045af15050805182019150506101405160208261028001015260208101905061016051602082610280010152602081019050806102805261028090508051602001806103208284600060045af115615ad957505060206103e061032051610340600060016024356002811015615ad95702600801545af115615ad95760203d80821115613d1f5780613d21565b815b905090506103c0526103c08051602001806101c08284600060045af115615ad957505060006101c0511115613d83576101c08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b6004356102205261016051610240526101a05161026052337f5ad056f2e28a8cec232015406b843668c1e36cda598127ec3b8c59b8c72773a06060610220a261016051600052600060055560206000f35b633c157e64811415613f685760206101a0600463f851a4406101405261015c6007545afa15615ad957601f3d1115615ad9576000506101a051331415615ad957600f54620151808181830110615ad957808201905090504210615ad95742620151808181830110615ad9578082019050905060243510615ad9576101405160065801614772565b610160526101405261016051610140526004356064808202821582848304141715615ad957809050905090506101605260006004351115613ea357620f424060043510613ea6565b60005b15615ad95761014051610160511015613ee4576101405161016051600a808202821582848304141715615ad9578090509050905010615ad957613f0b565b61014051600a808202821582848304141715615ad957809050905090506101605111615ad9575b61014051600d5561016051600e5542600f556024356010556101405161018052610160516101a052426101c0526024356101e0527fa2b71ec6df949300b59aab36b55e189697b750119dd349fcfa8c0f779e83c2546080610180a1005b63551a65888114156140115760206101a0600463f851a4406101405261015c6007545afa15615ad957601f3d1115615ad9576000506101a051331415615ad9576101405160065801614772565b6101605261014052610160516101405261014051600d5561014051600e5542600f5542601055610140516101605242610180527f46e22fb3709ad289f62ce63d469248536dbc78d82b84a3d7e74ad606dc2019386040610160a1005b6330c5408581141561435c57600654615ad9576001600655610140516101605160065801614695565b610180526101a05261016052610140526101808051610140528060200151610160525060075461018052600a546101a05260006101a05111156141d9576000600a556008546101c05260006004610240527fa9059cbb00000000000000000000000000000000000000000000000000000000610260526102406004806020846102a001018260208501600060045af1505080518201915050610180516020826102a00101526020810190506101a0516020826102a0010152602081019050806102a0526102a090508051602001806103408284600060045af115615ad957505060206104006103405161036060006101c0515af115615ad95760203d808211156141445780614146565b815b905090506103e0526103e08051602001806101e08284600060045af115615ad957505060006101e05111156141a8576101e08060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b60206102a0600463bcc981d26102405261025c6000610180515af115615ad957601f3d1115615ad9576000506102a0505b600b546101a05260006101a0511115614355576000600b556009546101c0526020610280602463154aa8f561020052306102205261021c610180515afa15615ad957601f3d1115615ad957600050610280516101e05260006004610260527fa9059cbb00000000000000000000000000000000000000000000000000000000610280526102606004806020846102c001018260208501600060045af15050805182019150506101e0516020826102c00101526020810190506101a0516020826102c0010152602081019050806102c0526102c090508051602001806103608284600060045af115615ad957505060206104206103605161038060006101c0515af115615ad95760203d808211156142f057806142f2565b815b90509050610400526104008051602001806102008284600060045af115615ad95750506000610200511115614354576102008060200151600082518060209013615ad95780919012615ad957806020036101000a820490509050905015615ad9575b5b6000600655005b63c66106578114156143845760016004356002811015615ad957026008015460005260206000f35b63e2e7d2648114156143ac5760016004356002811015615ad95702600a015460005260206000f35b63ddca3f438114156143c457600c5460005260206000f35b635409491a8114156143dc57600d5460005260206000f35b63b4b577ad8114156143f457600e5460005260206000f35b632081066c81141561440c57600f5460005260206000f35b63140522888114156144245760105460005260206000f35b6306fdde038114156144c157601280610180602082540161012060006003818352015b8261012051602002111561445a5761447c565b61012051850154610120516020028501525b8151600101808352811415614447575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6395d89b4181141561455e57601680610180602082540161012060006002818352015b826101205160200211156144f757614519565b61012051850154610120516020028501525b81516001018083528114156144e4575b50505050505061018051806101a001818260206001820306601f82010390500336823750506020610160526040610180510160206001820306601f8201039050610160f35b6370a0823181141561458e5760043560a01c615ad957601960043560e05260c052604060c0205460005260206000f35b63dd62ed3e8114156145d65760043560a01c615ad95760243560a01c615ad957601a60043560e05260c052604060c02060243560e05260c052604060c0205460005260206000f35b6318160ddd8114156145ee57601b5460005260206000f35b505b60006000fd5b6101a05261014052610160526101805260196101405160e05260c052604060c020805461018051808210615ad9578082039050905081555060196101605160e05260c052604060c0208054610180518181830110615ad95780820190509050815550610180516101c05261016051610140517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60206101c0a36101a051565b61014052604036610160376101a060006002818352015b602061024060246370a082316101c052306101e0526101dc60016101a0516002811015615ad95702600801545afa15615ad957601f3d1115615ad9576000506102405160016101a0516002811015615ad95702600a0154808210615ad957808203905090506101606101a0516002811015615ad95760200201525b81516001018083528114156146ac575b505060406101a0525b60006101a051116147505761476c565b60206101a05103610160015160206101a051036101a052614740565b61014051565b6101405260105461016052600e5461018052610160514210156148b857600d546101a052600f546101c0526101a051610180511115614832576101a051610180516101a051808210615ad95780820390509050426101c051808210615ad95780820390509050808202821582848304141715615ad95780905090509050610160516101c051808210615ad95780820390509050808015615ad9578204905090508181830110615ad9578082019050905060005260005161014051566148b3565b6101a0516101a05161018051808210615ad95780820390509050426101c051808210615ad95780820390509050808202821582848304141715615ad95780905090509050610160516101c051808210615ad95780820390509050808015615ad957820490509050808210615ad9578082039050905060005260005161014051565b6148c8565b6101805160005260005161014051565b005b6101c0526101405261016052610180526101a0526040366101e03761022060006002818352015b610140610220516002811015615ad9576020020151610180610220516002811015615ad9576020020151808202821582848304141715615ad95780905090509050670de0b6b3a7640000808204905090506101e0610220516002811015615ad95760200201525b81516001018083528114156148f1575b50506040610220525b600061022051116149815761499d565b602061022051036101e001516020610220510361022052614971565b6101c051565b6101a0526101405261016052610180526040366101c03761022060006002818352015b602061022051026101400151610200526101c08051610200518181830110615ad957808201905090508152505b81516001018083528114156149c6575b50506101c051614a1b5760006000526000516101a051565b6101c05161020052610180516002808202821582848304141715615ad9578090509050905061022052610240600060ff818352015b61020051610260526102a060006002818352015b60206102a051026101400151610280526102605161020051808202821582848304141715615ad95780905090509050610280516002808202821582848304141715615ad95780905090509050808015615ad957820490509050610260525b8151600101808352811415614a64575b5050610200516101e052610220516101c051808202821582848304141715615ad95780905090509050606480820490509050610260516002808202821582848304141715615ad957809050905090508181830110615ad9578082019050905061020051808202821582848304141715615ad95780905090509050610220516064808210615ad9578082039050905061020051808202821582848304141715615ad95780905090509050606480820490509050600361026051808202821582848304141715615ad957809050905090508181830110615ad95780820190509050808015615ad957820490509050610200526101e051610200511115614c04576001610200516101e051808210615ad9578082039050905011614bff576102005160005250506000516101a051565b614c34565b60016101e05161020051808210615ad9578082039050905011614c33576102005160005250506000516101a051565b5b5b8151600101808352811415614a50575b505060006000fd5b6101e0526101405261016052610180526101a0526101c0526101405161016051610180516101a0516101c0516101e05161020051610220516101405161024052610160516102605261018051610280526101a0516102a0526102a051610280516102605161024051600658016148ca565b610300526103205261022052610200526101e0526101c0526101a052610180526101605261014052610300805161020052806020015161022052506101405161016051610180516101a0516101c0516101e0516102005161022051610200516102405261022051610260526101c05161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516000526000516101e051565b6101e0526101405261016052610180526101a0526101c05261016051610140511815615ad95760006101605112615ad9576002610160511215615ad95760006101405112615ad9576002610140511215615ad9576101405161016051610180516101a0516101c0516101e0516102005160065801614772565b61022052610200526101e0526101c0526101a05261018052610160526101405261022051610200526101405161016051610180516101a0516101c0516101e05161020051610220516101a051610240526101c051610260526102005161028052610280516102605161024051600658016149a3565b6102e05261022052610200526101e0526101c0526101a0526101805261016052610140526102e0516102205260603661024037610220516102a052610200516002808202821582848304141715615ad957809050905090506102c0526102e060006002818352015b610140516102e0511415614eeb576101805161026052614f1d565b610160516102e0511815614f17576101a06102e0516002811015615ad957602002015161026052614f1c565b614f87565b5b6102408051610260518181830110615ad957808201905090508152506102a05161022051808202821582848304141715615ad95780905090509050610260516002808202821582848304141715615ad95780905090509050808015615ad9578204905090506102a0525b8151600101808352811415614ed0575b50506102a05161022051808202821582848304141715615ad957809050905090506064808202821582848304141715615ad957809050905090506102c0516002808202821582848304141715615ad95780905090509050808015615ad9578204905090506102a05261024051610220516064808202821582848304141715615ad957809050905090506102c051808015615ad9578204905090508181830110615ad957808201905090506102e0526102205161030052610320600060ff818352015b61030051610280526103005161030051808202821582848304141715615ad957809050905090506102a0518181830110615ad95780820190509050600261030051808202821582848304141715615ad957809050905090506102e0518181830110615ad9578082019050905061022051808210615ad95780820390509050808015615ad957820490509050610300526102805161030051111561512a5760016103005161028051808210615ad9578082039050905011615125576103005160005250506000516101e051565b61515a565b60016102805161030051808210615ad9578082039050905011615159576103005160005250506000516101e051565b5b5b8151600101808352811415615059575b505060006000fd5b6101e0526101405261016052610180526101a0526101c05260006101605112615ad9576002610160511215615ad957606036610200376101c05161026052610140516002808202821582848304141715615ad95780905090509050610280526102a060006002818352015b610160516102a051181561520a576101806102a0516002811015615ad95760200201516102205261520f565b615279565b6102008051610220518181830110615ad95780820190509050815250610260516101c051808202821582848304141715615ad95780905090509050610220516002808202821582848304141715615ad95780905090509050808015615ad957820490509050610260525b81516001018083528114156151de575b5050610260516101c051808202821582848304141715615ad957809050905090506064808202821582848304141715615ad95780905090509050610280516002808202821582848304141715615ad95780905090509050808015615ad95782049050905061026052610200516101c0516064808202821582848304141715615ad9578090509050905061028051808015615ad9578204905090508181830110615ad957808201905090506102a0526101c0516102c0526102e0600060ff818352015b6102c051610240526102c0516102c051808202821582848304141715615ad95780905090509050610260518181830110615ad9578082019050905060026102c051808202821582848304141715615ad957809050905090506102a0518181830110615ad957808201905090506101c051808210615ad95780820390509050808015615ad9578204905090506102c052610240516102c051111561541c5760016102c05161024051808210615ad9578082039050905011615417576102c05160005250506000516101e051565b61544c565b6001610240516102c051808210615ad957808203905090501161544b576102c05160005250506000516101e051565b5b5b815160010180835281141561534b575b505060006000fd5b6101805261014052610160526101405161016051610180516101a05160065801614772565b6101c0526101a0526101805261016052610140526101c0516101a0526020610260600463bb7b8b806102005261021c73bebc44782c7db0a1a60cb6fe97d0b483032ff1c75afa15615ad957601f3d1115615ad95760005061026051610280526011546101c052610280516101e0526101405161016051610180516101a0516101c0516101e051610200516102205160065801614695565b610240526102605261022052610200526101e0526101c0526101a05261018052610160526101405261024080516102805280602001516102a052506101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101c0516102c0526101e0516102e05261028051610300526102a0516103205261032051610300516102e0516102c051600658016148ca565b610380526103a0526102a05261028052610260526102405261022052610200526101e0526101c0526101a052610180526101605261014052610380805161020052806020015161022052506101405161016051610180516101a0516101c0516101e051610200516102205161024051610200516102605261022051610280526101a0516102a0526102a0516102805161026051600658016149a3565b610300526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103005161024052601b5461026052610240516101405161024051808202821582848304141715615ad9578090509050905061026051808015615ad957820490509050808210615ad95780820390509050610280526101405161016051610180516101a0516101c0516101e05161020051610220516102405161026051610280516102a0516101a0516102c052610160516102e0526102005161030052610220516103205261028051610340526103405161032051610300516102e0516102c05160065801615173565b6103a0526102a05261028052610260526102405261022052610200526101e0526101c0526101a0526101805261016052610140526103a0516102a052600c546002808202821582848304141715615ad957809050905090506004808204905090506102c0526040366102e03761032060006002818352015b600061034052610200610320516002811015615ad95760200201516103605261016051610320511415615843576103605161028051808202821582848304141715615ad9578090509050905061024051808015615ad9578204905090506102a051808210615ad957808203905090506103405261588a565b610360516103605161028051808202821582848304141715615ad9578090509050905061024051808015615ad957820490509050808210615ad95780820390509050610340525b610360516102c05161034051808202821582848304141715615ad957809050905090506402540be40080820490509050808210615ad957808203905090506102e0610320516002811015615ad95760200201525b81516001018083528114156157cb575b50506102e0610160516002811015615ad9576020020151610140610340525b6103405151602061034051016103405261034061034051101561592f5761590d565b6101a0516103605261016051610380526102e0516103a052610300516103c052610280516103e0526103e0516103c0516103a051610380516103605160065801615173565b61044052610320610340525b6103405152602061034051036103405261014061034051106159a157615980565b61044051808210615ad9578082039050905061032052610200610160516002811015615ad95760200201516102a051808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101c0610160516002811015615ad9576020020151808015615ad95782049050905061034052610320516001808210615ad95780820390509050670de0b6b3a7640000808202821582848304141715615ad957809050905090506101c0610160516002811015615ad9576020020151808015615ad9578204905090506103205261032051610380526103405161032051808210615ad957808203905090506103a0526040610360525b60006103605111615ab757615ad3565b6020610360510361038001516020610360510361036052615aa7565b61018051565b600080fd
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 35 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
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.