S Price: $0.711541 (-8.77%)

Contract

0x7C2085419BE6a04f4ad88ea91bC9F5C6E6C463D8

Overview

S Balance

Sonic LogoSonic LogoSonic Logo0 S

S Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Deploy_plain_poo...33280772025-01-11 1:09:267 days ago1736557766IN
0x7C208541...6E6C463D8
0 S0.033809436
Deploy_plain_poo...32313312025-01-10 10:04:227 days ago1736503462IN
0x7C208541...6E6C463D8
0 S0.031121185.51
Set_owner19890192024-12-30 12:16:0718 days ago1735560967IN
0x7C208541...6E6C463D8
0 S0.00002671
Set_metapool_imp...19889052024-12-30 12:15:0318 days ago1735560903IN
0x7C208541...6E6C463D8
0 S0.000053421.1607209
Set_pool_impleme...19889032024-12-30 12:15:0118 days ago1735560901IN
0x7C208541...6E6C463D8
0 S0.000052961.15067284
Set_math_impleme...19888992024-12-30 12:15:0018 days ago1735560900IN
0x7C208541...6E6C463D8
0 S0.000053611.17
Set_views_implem...19888942024-12-30 12:14:5818 days ago1735560898IN
0x7C208541...6E6C463D8
0 S0.000045851

Latest 2 internal transactions

Parent Transaction Hash Block From To
33280772025-01-11 1:09:267 days ago1736557766
0x7C208541...6E6C463D8
 Contract Creation0 S
32313312025-01-10 10:04:227 days ago1736503462
0x7C208541...6E6C463D8
 Contract Creation0 S
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
CurveStableSwapFactory

Compiler Version
vyper:0.3.10

Optimization Enabled:
N/A

Other Settings:
default evmVersion, None license

Contract Source Code (Vyper language format)

# pragma version 0.3.10
# pragma evm-version shanghai

"""
@title CurveStableSwapFactory
@custom:version 1.0.0
@author Curve.Fi
@license Copyright (c) Curve.Fi, 2023-2024 - all rights reserved
@notice Permissionless pool deployer and registry
"""
# ------------------------------- Version ---------------------------------

version: public(constant(String[8])) = "1.0.0"

# ------------------------------- Interfaces ---------------------------------

struct PoolArray:
    base_pool: address
    implementation: address
    liquidity_gauge: address
    coins: DynArray[address, MAX_COINS]
    decimals: DynArray[uint256, MAX_COINS]
    n_coins: uint256
    asset_types: DynArray[uint8, MAX_COINS]

struct BasePoolArray:
    lp_token: address
    coins: DynArray[address, MAX_COINS]
    decimals: uint256
    n_coins: uint256
    asset_types: DynArray[uint8, MAX_COINS]


interface AddressProvider:
    def admin() -> address: view

interface ERC20:
    def balanceOf(_addr: address) -> uint256: view
    def decimals() -> uint256: view
    def totalSupply() -> uint256: view

interface CurvePool:
    def A() -> uint256: view
    def fee() -> uint256: view
    def admin_fee() -> uint256: view
    def balances(i: uint256) -> uint256: view
    def admin_balances(i: uint256) -> uint256: view
    def get_virtual_price() -> uint256: view
    def coins(i: uint256) -> address: view

interface CurveFactoryMetapool:
    def coins(i :uint256) -> address: view
    def decimals() -> uint256: view


event BasePoolAdded:
    base_pool: address

event PlainPoolDeployed:
    pool: address
    coins: DynArray[address, MAX_COINS]
    A: uint256
    fee: uint256
    deployer: address

event MetaPoolDeployed:
    pool: address
    coin: address
    base_pool: address
    A: uint256
    fee: uint256
    deployer: address

event LiquidityGaugeDeployed:
    pool: address
    gauge: address

MAX_COINS: constant(uint256) = 8

MAX_FEE: constant(uint256) = 5 * 10 ** 9
FEE_DENOMINATOR: constant(uint256) = 10 ** 10

admin: public(address)
future_admin: public(address)

asset_types: public(HashMap[uint8, String[20]])

pool_list: public(address[4294967296])   # master list of pools
pool_count: public(uint256)              # actual length of pool_list
pool_data: HashMap[address, PoolArray]

base_pool_list: public(address[4294967296])   # list of base pools
base_pool_count: public(uint256)              # number of base pools
base_pool_data: public(HashMap[address, BasePoolArray])

# asset -> is used in a metapool?
base_pool_assets: public(HashMap[address, bool])

# index -> implementation address
pool_implementations: public(HashMap[uint256, address])
metapool_implementations: public(HashMap[uint256, address])
math_implementation: public(address)
gauge_implementation: public(address)
views_implementation: public(address)

# fee receiver for all pools
fee_receiver: public(address)

# mapping of coins -> pools for trading
# a mapping key is generated for each pair of addresses via
# `bitwise_xor(convert(a, uint256), convert(b, uint256))`
markets: HashMap[uint256, address[4294967296]]
market_counts: HashMap[uint256, uint256]

deployer: immutable(address)

@external
def __init__(_fee_receiver: address, _owner: address):

    self.fee_receiver = _fee_receiver
    self.admin = msg.sender
    deployer = msg.sender

    self.asset_types[0] = "Standard"
    self.asset_types[1] = "Oracle"
    self.asset_types[2] = "Rebasing"
    self.asset_types[3] = "ERC4626"


@external
def set_owner(_owner: address):
    
    assert msg.sender == deployer
    assert self.admin == deployer
    assert _owner != deployer

    self.admin = _owner


# <--- Factory Getters --->


@view
@external
def find_pool_for_coins(_from: address, _to: address, i: uint256 = 0) -> address:
    """
    @notice Find an available pool for exchanging two coins
    @param _from Address of coin to be sent
    @param _to Address of coin to be received
    @param i Index value. When multiple pools are available
            this value is used to return the n'th address.
    @return Pool address
    """
    key: uint256 = (convert(_from, uint256) ^ convert(_to, uint256))
    return self.markets[key][i]


# <--- Pool Getters --->

@view
@external
def get_base_pool(_pool: address) -> address:
    """
    @notice Get the base pool for a given factory metapool
    @param _pool Metapool address
    @return Address of base pool
    """
    return self.pool_data[_pool].base_pool


@view
@external
def get_n_coins(_pool: address) -> (uint256):
    """
    @notice Get the number of coins in a pool
    @param _pool Pool address
    @return Number of coins
    """
    return self.pool_data[_pool].n_coins


@view
@external
def get_meta_n_coins(_pool: address) -> (uint256, uint256):
    """
    @notice Get the number of coins in a metapool
    @param _pool Pool address
    @return Number of wrapped coins, number of underlying coins
    """
    base_pool: address = self.pool_data[_pool].base_pool
    return 2, self.base_pool_data[base_pool].n_coins + 1


@view
@external
def get_coins(_pool: address) -> DynArray[address, MAX_COINS]:
    """
    @notice Get the coins within a pool
    @param _pool Pool address
    @return List of coin addresses
    """
    return self.pool_data[_pool].coins


@view
@external
def get_underlying_coins(_pool: address) -> DynArray[address, MAX_COINS]:
    """
    @notice Get the underlying coins within a pool
    @dev Reverts if a pool does not exist or is not a metapool
    @param _pool Pool address
    @return List of coin addresses
    """
    coins: DynArray[address, MAX_COINS] = empty(DynArray[address, MAX_COINS])
    base_pool: address = self.pool_data[_pool].base_pool
    assert base_pool != empty(address)  # dev: pool is not metapool

    coins.append(self.pool_data[_pool].coins[0])
    base_pool_n_coins: uint256 = len(self.base_pool_data[base_pool].coins)
    for i in range(1, MAX_COINS):
        if i - 1 == base_pool_n_coins:
            break

        coins.append(self.base_pool_data[base_pool].coins[i - 1])

    return coins


@view
@external
def get_decimals(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get decimal places for each coin within a pool
    @param _pool Pool address
    @return uint256 list of decimals
    """
    return self.pool_data[_pool].decimals


@view
@external
def get_underlying_decimals(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get decimal places for each underlying coin within a pool
    @param _pool Pool address
    @return uint256 list of decimals
    """
    # decimals are tightly packed as a series of uint8 within a little-endian bytes32
    # the packed value is stored as uint256 to simplify unpacking via shift and modulo
    pool_decimals: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])
    pool_decimals = self.pool_data[_pool].decimals
    decimals: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])
    decimals.append(pool_decimals[0])
    base_pool: address = self.pool_data[_pool].base_pool
    packed_decimals: uint256 = self.base_pool_data[base_pool].decimals

    for i in range(MAX_COINS):
        unpacked: uint256 = (packed_decimals >> 8 * i) % 256
        if unpacked == 0:
            break

        decimals.append(unpacked)

    return decimals


@view
@external
def get_metapool_rates(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get rates for coins within a metapool
    @param _pool Pool address
    @return Rates for each coin, precision normalized to 10**18
    """
    rates: DynArray[uint256, MAX_COINS] = [10**18, 0]
    rates[1] = CurvePool(self.pool_data[_pool].base_pool).get_virtual_price()
    return rates


@view
@external
def get_balances(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get balances for each coin within a pool
    @dev For pools using lending, these are the wrapped coin balances
    @param _pool Pool address
    @return uint256 list of balances
    """
    balances: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])

    if self.pool_data[_pool].base_pool != empty(address):
        balances.append(CurvePool(_pool).balances(0))
        balances.append(CurvePool(_pool).balances(1))
        return balances

    n_coins: uint256 = self.pool_data[_pool].n_coins
    for i in range(MAX_COINS):

        if i == n_coins:
            break

        balances.append(CurvePool(_pool).balances(i))


    return balances


@view
@external
def get_underlying_balances(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get balances for each underlying coin within a metapool
    @param _pool Metapool address
    @return uint256 list of underlying balances
    """

    base_pool: address = self.pool_data[_pool].base_pool
    assert base_pool != empty(address)  # dev: pool is not a metapool

    underlying_balances: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])
    underlying_balances[0] = CurvePool(_pool).balances(0)

    base_total_supply: uint256 = ERC20(self.pool_data[_pool].coins[1]).totalSupply()
    if base_total_supply > 0:
        underlying_pct: uint256 = CurvePool(_pool).balances(1) * 10**36 / base_total_supply
        n_coins: uint256 = self.base_pool_data[base_pool].n_coins
        for i in range(MAX_COINS):
            if i == n_coins:
                break
            underlying_balances[i + 1] = CurvePool(base_pool).balances(i) * underlying_pct / 10**36

    return underlying_balances


@view
@external
def get_A(_pool: address) -> uint256:
    """
    @notice Get the amplfication co-efficient for a pool
    @param _pool Pool address
    @return uint256 A
    """
    return CurvePool(_pool).A()


@view
@external
def get_fees(_pool: address) -> (uint256, uint256):
    """
    @notice Get the fees for a pool
    @dev Fees are expressed as integers
    @return Pool fee and admin fee as uint256 with 1e10 precision
    """
    return CurvePool(_pool).fee(), CurvePool(_pool).admin_fee()


@view
@external
def get_admin_balances(_pool: address) -> DynArray[uint256, MAX_COINS]:
    """
    @notice Get the current admin balances (uncollected fees) for a pool
    @param _pool Pool address
    @return List of uint256 admin balances
    """
    n_coins: uint256 = self.pool_data[_pool].n_coins
    admin_balances: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])
    for i in range(MAX_COINS):
        if i == n_coins:
            break
        admin_balances.append(CurvePool(_pool).admin_balances(i))
    return admin_balances


@view
@external
def get_coin_indices(
    _pool: address,
    _from: address,
    _to: address
) -> (int128, int128, bool):
    """
    @notice Convert coin addresses to indices for use with pool methods
    @param _pool Pool address
    @param _from Coin address to be used as `i` within a pool
    @param _to Coin address to be used as `j` within a pool
    @return int128 `i`, int128 `j`, boolean indicating if `i` and `j` are underlying coins
    """
    coin: address = self.pool_data[_pool].coins[0]
    base_pool: address = self.pool_data[_pool].base_pool
    if coin in [_from, _to] and base_pool != empty(address):
        base_lp_token: address = self.pool_data[_pool].coins[1]
        if base_lp_token in [_from, _to]:
            # True and False convert to 1 and 0 - a bit of voodoo that
            # works because we only ever have 2 non-underlying coins if base pool is empty(address)
            return convert(_to == coin, int128), convert(_from == coin, int128), False

    found_market: bool = False
    i: uint256 = 0
    j: uint256 = 0
    for x in range(MAX_COINS):
        if base_pool == empty(address):
            if x >= MAX_COINS:
                raise "No available market"
            if x != 0:
                coin = self.pool_data[_pool].coins[x]
        else:
            if x != 0:
                coin = self.base_pool_data[base_pool].coins[x-1]
        if coin == empty(address):
            raise "No available market"
        if coin == _from:
            i = x
        elif coin == _to:
            j = x
        else:
            continue
        if found_market:
            # the second time we find a match, break out of the loop
            break
        # the first time we find a match, set `found_market` to True
        found_market = True

    return convert(i, int128), convert(j, int128), True


@view
@external
def get_gauge(_pool: address) -> address:
    """
    @notice Get the address of the liquidity gauge contract for a factory pool
    @dev Returns `empty(address)` if a gauge has not been deployed
    @param _pool Pool address
    @return Implementation contract address
    """
    return self.pool_data[_pool].liquidity_gauge


@view
@external
def get_implementation_address(_pool: address) -> address:
    """
    @notice Get the address of the implementation contract used for a factory pool
    @param _pool Pool address
    @return Implementation contract address
    """
    return self.pool_data[_pool].implementation


@view
@external
def is_meta(_pool: address) -> bool:
    """
    @notice Verify `_pool` is a metapool
    @param _pool Pool address
    @return True if `_pool` is a metapool
    """
    return self.pool_data[_pool].base_pool != empty(address)


@view
@external
def get_pool_asset_types(_pool: address) -> DynArray[uint8, MAX_COINS]:
    """
    @notice Query the asset type of `_pool`
    @param _pool Pool Address
    @return Dynarray of uint8 indicating the pool asset type
            Asset Types:
                0. Standard ERC20 token with no additional features
                1. Oracle - token with rate oracle (e.g. wrapped staked ETH)
                2. Rebasing - token with rebase (e.g. staked ETH)
                3. ERC4626 - e.g. sDAI
    """
    return self.pool_data[_pool].asset_types


# <--- Pool Deployers --->

@external
def deploy_plain_pool(
    _name: String[32],
    _symbol: String[10],
    _coins: DynArray[address, MAX_COINS],
    _A: uint256,
    _fee: uint256,
    _offpeg_fee_multiplier: uint256,
    _ma_exp_time: uint256,
    _implementation_idx: uint256,
    _asset_types: DynArray[uint8, MAX_COINS],
    _method_ids: DynArray[bytes4, MAX_COINS],
    _oracles: DynArray[address, MAX_COINS],
) -> address:
    """
    @notice Deploy a new plain pool
    @param _name Name of the new plain pool
    @param _symbol Symbol for the new plain pool - will be
                   concatenated with factory symbol
    @param _coins List of addresses of the coins being used in the pool.
    @param _A Amplification co-efficient - a lower value here means
              less tolerance for imbalance within the pool's assets.
              Suggested values include:
               * Uncollateralized algorithmic stablecoins: 5-10
               * Non-redeemable, collateralized assets: 100
               * Redeemable assets: 200-400
    @param _fee Trade fee, given as an integer with 1e10 precision. The
                maximum is 1% (100000000). 50% of the fee is distributed to veCRV holders.
    @param _ma_exp_time Averaging window of oracle. Set as time_in_seconds / ln(2)
                        Example: for 10 minute EMA, _ma_exp_time is 600 / ln(2) ~= 866
    @param _implementation_idx Index of the implementation to use
    @param _asset_types Asset types for pool, as an integer
    @param _method_ids Array of first four bytes of the Keccak-256 hash of the function signatures
                       of the oracle addresses that gives rate oracles.
                       Calculated as: keccak(text=event_signature.replace(" ", ""))[:4]
    @param _oracles Array of rate oracle addresses.
    @return Address of the deployed pool
    """
    assert len(_coins) >= 2  # dev: pool needs to have at least two coins!
    assert len(_coins) == len(_method_ids)  # dev: All coin arrays should be same length
    assert len(_coins) ==  len(_oracles)  # dev: All coin arrays should be same length
    assert len(_coins) ==  len(_asset_types)  # dev: All coin arrays should be same length
    assert _fee <= 100000000, "Invalid fee"
    assert _offpeg_fee_multiplier * _fee <= MAX_FEE * FEE_DENOMINATOR

    n_coins: uint256 = len(_coins)
    _rate_multipliers: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])
    decimals: DynArray[uint256, MAX_COINS] = empty(DynArray[uint256, MAX_COINS])

    for i in range(MAX_COINS):
        if i == n_coins:
            break

        coin: address = _coins[i]

        decimals.append(ERC20(coin).decimals())
        assert decimals[i] < 19, "Max 18 decimals for coins"

        _rate_multipliers.append(10 ** (36 - decimals[i]))

        for j in range(i, i + MAX_COINS):
            if (j + 1) == n_coins:
                break
            assert coin != _coins[j+1], "Duplicate coins"

    implementation: address = self.pool_implementations[_implementation_idx]
    assert implementation != empty(address), "Invalid implementation index"

    pool: address = create_from_blueprint(
        implementation,
        _name,                                          # _name: String[32]
        _symbol,                                        # _symbol: String[10]
        _A,                                             # _A: uint256
        _fee,                                           # _fee: uint256
        _offpeg_fee_multiplier,                         # _offpeg_fee_multiplier: uint256
        _ma_exp_time,                                   # _ma_exp_time: uint256
        _coins,                                         # _coins: DynArray[address, MAX_COINS]
        _rate_multipliers,                              # _rate_multipliers: DynArray[uint256, MAX_COINS]
        _asset_types,                                   # _asset_types: DynArray[uint8, MAX_COINS]
        _method_ids,                                    # _method_ids: DynArray[bytes4, MAX_COINS]
        _oracles,                                       # _oracles: DynArray[address, MAX_COINS]
        code_offset=3
    )

    length: uint256 = self.pool_count
    self.pool_list[length] = pool
    self.pool_count = length + 1
    self.pool_data[pool].decimals = decimals
    self.pool_data[pool].n_coins = n_coins
    self.pool_data[pool].base_pool = empty(address)
    self.pool_data[pool].implementation = implementation
    self.pool_data[pool].asset_types = _asset_types

    for i in range(MAX_COINS):
        if i == n_coins:
            break

        coin: address = _coins[i]
        self.pool_data[pool].coins.append(coin)

        for j in range(i, i + MAX_COINS):
            if (j + 1) == n_coins:
                break
            swappable_coin: address = _coins[j + 1]
            key: uint256 = (convert(coin, uint256) ^ convert(swappable_coin, uint256))
            length = self.market_counts[key]
            self.markets[key][length] = pool
            self.market_counts[key] = length + 1

    log PlainPoolDeployed(pool, _coins, _A, _fee, msg.sender)
    return pool


@external
def deploy_metapool(
    _base_pool: address,
    _name: String[32],
    _symbol: String[10],
    _coin: address,
    _A: uint256,
    _fee: uint256,
    _offpeg_fee_multiplier: uint256,
    _ma_exp_time: uint256,
    _implementation_idx: uint256,
    _asset_type: uint8,
    _method_id: bytes4,
    _oracle: address,
) -> address:
    """
    @notice Deploy a new metapool
    @param _base_pool Address of the base pool to use
                      within the metapool
    @param _name Name of the new metapool
    @param _symbol Symbol for the new metapool - will be
                   concatenated with the base pool symbol
    @param _coin Address of the coin being used in the metapool
    @param _A Amplification co-efficient - a higher value here means
              less tolerance for imbalance within the pool's assets.
              Suggested values include:
               * Uncollateralized algorithmic stablecoins: 5-10
               * Non-redeemable, collateralized assets: 100
               * Redeemable assets: 200-400
    @param _fee Trade fee, given as an integer with 1e10 precision. The
                the maximum is 1% (100000000).
                50% of the fee is distributed to veCRV holders.
    @param _ma_exp_time Averaging window of oracle. Set as time_in_seconds / ln(2)
                        Example: for 10 minute EMA, _ma_exp_time is 600 / ln(2) ~= 866
    @param _implementation_idx Index of the implementation to use
    @param _asset_type Asset type for token, as an integer
    @param _method_id  First four bytes of the Keccak-256 hash of the function signatures
                       of the oracle addresses that gives rate oracles.
                       Calculated as: keccak(text=event_signature.replace(" ", ""))[:4]
    @param _oracle Rate oracle address.
    @return Address of the deployed pool
    """
    assert not self.base_pool_assets[_coin], "Invalid asset: Cannot pair base pool asset with base pool's LP token"
    assert _fee <= 100000000, "Invalid fee"
    assert _offpeg_fee_multiplier * _fee <= MAX_FEE * FEE_DENOMINATOR

    base_pool_n_coins: uint256 = len(self.base_pool_data[_base_pool].coins)
    assert base_pool_n_coins != 0, "Base pool is not added"

    implementation: address = self.metapool_implementations[_implementation_idx]
    assert implementation != empty(address), "Invalid implementation index"

    # things break if a token has >18 decimals
    decimals: uint256 = ERC20(_coin).decimals()
    assert decimals < 19, "Max 18 decimals for coins"

    # combine _coins's _asset_type and basepool coins _asset_types:
    base_pool_asset_types: DynArray[uint8, MAX_COINS] = self.base_pool_data[_base_pool].asset_types
    asset_types: DynArray[uint8, MAX_COINS]  = [_asset_type, 0]

    for i in range(0, MAX_COINS):
        if i == base_pool_n_coins:
            break
        asset_types.append(base_pool_asset_types[i])

    _coins: DynArray[address, MAX_COINS] = [_coin, self.base_pool_data[_base_pool].lp_token]
    _rate_multipliers: DynArray[uint256, MAX_COINS] = [10 ** (36 - decimals), 10 ** 18]
    _method_ids: DynArray[bytes4, MAX_COINS] = [_method_id, empty(bytes4)]
    _oracles: DynArray[address, MAX_COINS] = [_oracle, empty(address)]

    pool: address = create_from_blueprint(
        implementation,
        _name,                                          # _name: String[32]
        _symbol,                                        # _symbol: String[10]
        _A,                                             # _A: uint256
        _fee,                                           # _fee: uint256
        _offpeg_fee_multiplier,                         # _offpeg_fee_multiplier: uint256
        _ma_exp_time,                                   # _ma_exp_time: uint256
        self.math_implementation,                       # _math_implementation: address
        _base_pool,                                     # _base_pool: address
        _coins,                                         # _coins: DynArray[address, MAX_COINS]
        self.base_pool_data[_base_pool].coins,          # base_coins: DynArray[address, MAX_COINS]
        _rate_multipliers,                              # _rate_multipliers: DynArray[uint256, MAX_COINS]
        asset_types,                                    # asset_types: DynArray[uint8, MAX_COINS]
        _method_ids,                                    # _method_ids: DynArray[bytes4, MAX_COINS]
        _oracles,                                       # _oracles: DynArray[address, MAX_COINS]
        code_offset=3
    )

    # add pool to pool_list
    length: uint256 = self.pool_count
    self.pool_list[length] = pool
    self.pool_count = length + 1

    base_lp_token: address = self.base_pool_data[_base_pool].lp_token

    self.pool_data[pool].decimals = [decimals, 18, 0, 0, 0, 0, 0, 0]
    self.pool_data[pool].n_coins = 2
    self.pool_data[pool].base_pool = _base_pool
    self.pool_data[pool].coins = [_coin, self.base_pool_data[_base_pool].lp_token]
    self.pool_data[pool].implementation = implementation

    is_finished: bool = False
    swappable_coin: address = empty(address)
    for i in range(MAX_COINS):
        if i < len(self.base_pool_data[_base_pool].coins):
            swappable_coin = self.base_pool_data[_base_pool].coins[i]
        else:
            is_finished = True
            swappable_coin = base_lp_token

        key: uint256 = (convert(_coin, uint256) ^ convert(swappable_coin, uint256))
        length = self.market_counts[key]
        self.markets[key][length] = pool
        self.market_counts[key] = length + 1

        if is_finished:
            break

    log MetaPoolDeployed(pool, _coin, _base_pool, _A, _fee, msg.sender)
    return pool


@external
def deploy_gauge(_pool: address) -> address:
    """
    @notice Deploy a liquidity gauge for a factory pool
    @param _pool Factory pool address to deploy a gauge for
    @return Address of the deployed gauge
    """
    assert self.pool_data[_pool].coins[0] != empty(address), "Unknown pool"
    assert self.pool_data[_pool].liquidity_gauge == empty(address), "Gauge already deployed"
    implementation: address = self.gauge_implementation
    assert implementation != empty(address), "Gauge implementation not set"

    gauge: address = create_from_blueprint(self.gauge_implementation, _pool, code_offset=3)
    self.pool_data[_pool].liquidity_gauge = gauge

    log LiquidityGaugeDeployed(_pool, gauge)
    return gauge


# <--- Admin / Guarded Functionality --->

@external
def add_base_pool(
    _base_pool: address,
    _base_lp_token: address,
    _asset_types: DynArray[uint8, MAX_COINS],
    _n_coins: uint256,
):
    """
    @notice Add a base pool to the registry, which may be used in factory metapools
    @dev 1. Only callable by admin
         2. Rebasing tokens are not allowed in the base pool.
         3. Do not add base pool which contains native tokens (e.g. ETH).
         4. As much as possible: use standard ERC20 tokens.
         Should you choose to deviate from these recommendations, audits are advised.
    @param _base_pool Pool address to add
    @param _asset_types Asset type for pool, as an integer
    """
    assert msg.sender == self.admin  # dev: admin-only function
    assert 2 not in _asset_types  # dev: rebasing tokens cannot be in base pool
    assert len(self.base_pool_data[_base_pool].coins) == 0  # dev: pool exists
    assert _n_coins < MAX_COINS  # dev: base pool can only have (MAX_COINS - 1) coins.

    # add pool to pool_list
    length: uint256 = self.base_pool_count
    self.base_pool_list[length] = _base_pool
    self.base_pool_count = length + 1
    self.base_pool_data[_base_pool].lp_token = _base_lp_token
    self.base_pool_data[_base_pool].n_coins = _n_coins
    self.base_pool_data[_base_pool].asset_types = _asset_types

    decimals: uint256 = 0
    coins: DynArray[address, MAX_COINS] = empty(DynArray[address, MAX_COINS])
    coin: address = empty(address)
    for i in range(MAX_COINS):
        if i == _n_coins:
            break
        coin = CurvePool(_base_pool).coins(i)
        assert coin != 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE  # dev: native token is not supported
        self.base_pool_data[_base_pool].coins.append(coin)
        self.base_pool_assets[coin] = True
        decimals += (ERC20(coin).decimals() << i*8)
    self.base_pool_data[_base_pool].decimals = decimals

    log BasePoolAdded(_base_pool)


@external
def set_pool_implementations(
    _implementation_index: uint256,
    _implementation: address,
):
    """
    @notice Set implementation contracts for pools
    @dev Only callable by admin
    @param _implementation_index Implementation index where implementation is stored
    @param _implementation Implementation address to use when deploying plain pools
    """
    assert msg.sender == self.admin  # dev: admin-only function
    self.pool_implementations[_implementation_index] = _implementation


@external
def set_metapool_implementations(
    _implementation_index: uint256,
    _implementation: address,
):
    """
    @notice Set implementation contracts for metapools
    @dev Only callable by admin
    @param _implementation_index Implementation index where implementation is stored
    @param _implementation Implementation address to use when deploying meta pools
    """
    assert msg.sender == self.admin  # dev: admin-only function
    self.metapool_implementations[_implementation_index] = _implementation


@external
def set_math_implementation(_math_implementation: address):
    """
    @notice Set implementation contracts for StableSwap Math
    @dev Only callable by admin
    @param _math_implementation Address of the math implementation contract
    """
    assert msg.sender == self.admin  # dev: admin-only function
    self.math_implementation = _math_implementation


@external
def set_gauge_implementation(_gauge_implementation: address):
    """
    @notice Set implementation contracts for liquidity gauge
    @dev Only callable by admin
    @param _gauge_implementation Address of the gauge blueprint implementation contract
    """
    assert msg.sender == self.admin  # dev: admin-only function
    self.gauge_implementation = _gauge_implementation


@external
def set_views_implementation(_views_implementation: address):
    """
    @notice Set implementation contracts for Views methods
    @dev Only callable by admin
    @param _views_implementation Implementation address of views contract
    """
    assert msg.sender == self.admin  # dev: admin-only function
    self.views_implementation = _views_implementation


@external
def commit_transfer_ownership(_addr: address):
    """
    @notice Transfer ownership of this contract to `addr`
    @param _addr Address of the new owner
    """
    assert msg.sender == self.admin  # dev: admin only
    self.future_admin = _addr


@external
def accept_transfer_ownership():
    """
    @notice Accept a pending ownership transfer
    @dev Only callable by the new owner
    """
    _admin: address = self.future_admin
    assert msg.sender == _admin  # dev: future admin only

    self.admin = _admin
    self.future_admin = empty(address)


@external
def set_fee_receiver(_pool: address, _fee_receiver: address):
    """
    @notice Set fee receiver for all pools
    @param _pool Address of  pool to set fee receiver for.
    @param _fee_receiver Address that fees are sent to
    """
    assert msg.sender == self.admin  # dev: admin only
    self.fee_receiver = _fee_receiver


@external
def add_asset_type(_id: uint8, _name: String[10]):
    """
    @notice Admin only method that adds a new asset type.
    @param _id asset type id.
    @param _name Name of the asset type.
    """
    assert msg.sender == self.admin  # dev: admin only
    self.asset_types[_id] = _name

Contract Security Audit

Contract ABI

[{"name":"BasePoolAdded","inputs":[{"name":"base_pool","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"PlainPoolDeployed","inputs":[{"name":"pool","type":"address","indexed":false},{"name":"coins","type":"address[]","indexed":false},{"name":"A","type":"uint256","indexed":false},{"name":"fee","type":"uint256","indexed":false},{"name":"deployer","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"MetaPoolDeployed","inputs":[{"name":"pool","type":"address","indexed":false},{"name":"coin","type":"address","indexed":false},{"name":"base_pool","type":"address","indexed":false},{"name":"A","type":"uint256","indexed":false},{"name":"fee","type":"uint256","indexed":false},{"name":"deployer","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"name":"LiquidityGaugeDeployed","inputs":[{"name":"pool","type":"address","indexed":false},{"name":"gauge","type":"address","indexed":false}],"anonymous":false,"type":"event"},{"stateMutability":"nonpayable","type":"constructor","inputs":[{"name":"_fee_receiver","type":"address"},{"name":"_owner","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_owner","inputs":[{"name":"_owner","type":"address"}],"outputs":[]},{"stateMutability":"view","type":"function","name":"find_pool_for_coins","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"find_pool_for_coins","inputs":[{"name":"_from","type":"address"},{"name":"_to","type":"address"},{"name":"i","type":"uint256"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"get_base_pool","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"get_n_coins","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_meta_n_coins","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_coins","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address[]"}]},{"stateMutability":"view","type":"function","name":"get_underlying_coins","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address[]"}]},{"stateMutability":"view","type":"function","name":"get_decimals","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_underlying_decimals","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_metapool_rates","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_balances","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_underlying_balances","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_A","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_fees","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256"},{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"get_admin_balances","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint256[]"}]},{"stateMutability":"view","type":"function","name":"get_coin_indices","inputs":[{"name":"_pool","type":"address"},{"name":"_from","type":"address"},{"name":"_to","type":"address"}],"outputs":[{"name":"","type":"int128"},{"name":"","type":"int128"},{"name":"","type":"bool"}]},{"stateMutability":"view","type":"function","name":"get_gauge","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"get_implementation_address","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"is_meta","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"view","type":"function","name":"get_pool_asset_types","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"uint8[]"}]},{"stateMutability":"nonpayable","type":"function","name":"deploy_plain_pool","inputs":[{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_coins","type":"address[]"},{"name":"_A","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_offpeg_fee_multiplier","type":"uint256"},{"name":"_ma_exp_time","type":"uint256"},{"name":"_implementation_idx","type":"uint256"},{"name":"_asset_types","type":"uint8[]"},{"name":"_method_ids","type":"bytes4[]"},{"name":"_oracles","type":"address[]"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"nonpayable","type":"function","name":"deploy_metapool","inputs":[{"name":"_base_pool","type":"address"},{"name":"_name","type":"string"},{"name":"_symbol","type":"string"},{"name":"_coin","type":"address"},{"name":"_A","type":"uint256"},{"name":"_fee","type":"uint256"},{"name":"_offpeg_fee_multiplier","type":"uint256"},{"name":"_ma_exp_time","type":"uint256"},{"name":"_implementation_idx","type":"uint256"},{"name":"_asset_type","type":"uint8"},{"name":"_method_id","type":"bytes4"},{"name":"_oracle","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"nonpayable","type":"function","name":"deploy_gauge","inputs":[{"name":"_pool","type":"address"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"nonpayable","type":"function","name":"add_base_pool","inputs":[{"name":"_base_pool","type":"address"},{"name":"_base_lp_token","type":"address"},{"name":"_asset_types","type":"uint8[]"},{"name":"_n_coins","type":"uint256"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_pool_implementations","inputs":[{"name":"_implementation_index","type":"uint256"},{"name":"_implementation","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_metapool_implementations","inputs":[{"name":"_implementation_index","type":"uint256"},{"name":"_implementation","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_math_implementation","inputs":[{"name":"_math_implementation","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_gauge_implementation","inputs":[{"name":"_gauge_implementation","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_views_implementation","inputs":[{"name":"_views_implementation","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"commit_transfer_ownership","inputs":[{"name":"_addr","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"accept_transfer_ownership","inputs":[],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"set_fee_receiver","inputs":[{"name":"_pool","type":"address"},{"name":"_fee_receiver","type":"address"}],"outputs":[]},{"stateMutability":"nonpayable","type":"function","name":"add_asset_type","inputs":[{"name":"_id","type":"uint8"},{"name":"_name","type":"string"}],"outputs":[]},{"stateMutability":"view","type":"function","name":"version","inputs":[],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"admin","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"future_admin","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"asset_types","inputs":[{"name":"arg0","type":"uint8"}],"outputs":[{"name":"","type":"string"}]},{"stateMutability":"view","type":"function","name":"pool_list","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"pool_count","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"base_pool_list","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"base_pool_count","inputs":[],"outputs":[{"name":"","type":"uint256"}]},{"stateMutability":"view","type":"function","name":"base_pool_data","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"tuple","components":[{"name":"lp_token","type":"address"},{"name":"coins","type":"address[]"},{"name":"decimals","type":"uint256"},{"name":"n_coins","type":"uint256"},{"name":"asset_types","type":"uint8[]"}]}]},{"stateMutability":"view","type":"function","name":"base_pool_assets","inputs":[{"name":"arg0","type":"address"}],"outputs":[{"name":"","type":"bool"}]},{"stateMutability":"view","type":"function","name":"pool_implementations","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"metapool_implementations","inputs":[{"name":"arg0","type":"uint256"}],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"math_implementation","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"gauge_implementation","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"views_implementation","inputs":[],"outputs":[{"name":"","type":"address"}]},{"stateMutability":"view","type":"function","name":"fee_receiver","inputs":[],"outputs":[{"name":"","type":"address"}]}]

61368c51503461019b5760206138415f395f518060a01c61019b5760405260206138615f395f518060a01c61019b5760605260405164020000000d55335f553361368c5260086080527f5374616e6461726400000000000000000000000000000000000000000000000060a0526080805160025f6020525f5260405f20556020810151600160025f6020525f5260405f2001555060066080527f4f7261636c65000000000000000000000000000000000000000000000000000060a05260808051600260016020525f5260405f205560208101516001600260016020525f5260405f2001555060086080527f5265626173696e6700000000000000000000000000000000000000000000000060a05260808051600260026020525f5260405f205560208101516001600260026020525f5260405f2001555060076080527f455243343632360000000000000000000000000000000000000000000000000060a05260808051600260036020525f5260405f205560208101516001600260036020525f5260405f2001555061368c61019f610000396136ac610000f35b5f80fd5f3560e01c60026030820660011b61362c01601e395f51565b6354fd4d50811861009657346136285760208060805260056040527f312e302e3000000000000000000000000000000000000000000000000000000060605260408160800181518152602082015160208201528051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506080f35b63f851a44081186100b15734613628575f5460405260206040f35b63ed874940811861362457602436103417613628576004358060a01c613628576040526020806060526402000000066040516020525f5260405f208160600160a082548252806020830152600183018183015f82548083528060051b5f826008811161362857801561013b57905b806001880101548160051b60208801015260010181811861011f575b505082016020019150509050905081019050600a8301546040830152600b8301546060830152806080830152600c83018183015f82548083528060051b5f82600881116136285780156101a657905b806001880101548160051b60208801015260010181811861018a575b50508201602001915050905090508101905090509050810190506060f3613624565b6317f7182a811861362457346136285760015460405260206040f3613624565b63f1f10172811861362457602436103417613628576004358060081c6136285760405260208060605260026040516020525f5260405f208160600181548152600182015460208201528051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506060f3613624565b633a1d5d8e8118613624576024361034176136285760043563ffffffff8111613628576003015460405260206040f3613624565b63956aae3a81186136245734613628576401000000035460405260206040f3613624565b6322fe567181186102ec576024361034176136285760043563ffffffff811161362857640100000005015460405260206040f35b63a13c8f81811861030c57346136285764020000000a5460405260206040f35b63940494f1811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206015810190505460605260206060f3613624565b63de5e4a3b81186103755734613628576402000000055460405260206040f35b63cab4d3db811861362457346136285764020000000d5460405260206040f3613624565b6310a002df81186103d857602436103417613628576004358060a01c613628576040526402000000076040516020525f5260405f205460605260206060f35b63a77576ef811861056a57602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f20546101805261018051156136285760605160078111613628576401000000046040516020525f5260405f20600381019050805415613628575f60018201019050548160051b608001526001810160605250640200000006610180516020525f5260405f20600181019050546101a052600160078101905b806101c0526101a0516101c05160018103818111613628579050186104ac5761050d565b6060516007811161362857640200000006610180516020525f5260405f206001810190506101c0516001810381811161362857905081548110156136285760018201019050548160051b608001526001810160605250600101818118610488575b50506020806101c052806101c0015f6060518083528060051b5f826008811161362857801561055557905b8060051b608001518160051b602088010152600101818118610538575b505082016020019150509050810190506101c0f35b63f6fa937f811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000c5500613624565b633273ff4781186105d657602436103417613628576402000000086004356020525f5260405f205460405260206040f35b634e988127811861362457606436103417613628576004358060081c61362857604052602435600401600a813511613628576020813501808260603750505f5433186136285760605160026040516020525f5260405f2055608051600160026040516020525f5260405f20015500613624565b63cfef1d6b811861067a57602436103417613628576402000000096004356020525f5260405f205460405260206040f35b634dc05cfb811861362457604436103417613628576024358060a01c613628576040525f543318613628576040516402000000086004356020525f5260405f205500613624565b638df24207811861362457346136285764020000000b5460405260206040f3613624565b63e31593d8811861070557346136285764020000000c5460405260206040f35b63c11e45b8811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f20601581019050546060525f6080525f6008905b806101a0526060516101a05118610763576107c4565b608051600781116136285760405163e2e7d2646101c0526101a0516101e05260206101c060246101dc845afa61079b573d5f5f3e3d5ffd5b60203d10613628576101c09050518160051b60a00152600181016080525060010181811861074d575b50506020806101a052806101a0015f6080518083528060051b5f826008811161362857801561080c57905b8060051b60a001518160051b6020880101526001018181186107ef575b505082016020019150509050810190506101a0f3613624565b637cb97b2b811861087f57602436103417613628576004358060a01c61362857604052602061368c5f395f51331861362857602061368c5f395f515f541861362857602061368c5f395f5160405114613628576040515f55005b636982eb0b811861362457606436103417613628576044356080525b6004358060a01c613628576040526024358060a01c613628576060526060516040511860a05264020000000e60a0516020525f5260405f2060805163ffffffff811161362857810190505460c052602060c0f3613624565b63a87df06c811861362457604436103417613628575f60805261089b56613624565b636f20d6dd811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260206060f3613624565b63eb73f37d81186109c557602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260026080526402000000066060516020525f5260405f20600b81019050546001810181811061362857905060a05260406080f35b6392e3cc2d8118610c0157602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f205415610b09576060516007811161362857604051634903b0d1610180525f6101a0526020610180602461019c845afa610a39573d5f5f3e3d5ffd5b60203d10613628576101809050518160051b6080015260018101606052506060516007811161362857604051634903b0d16101805260016101a0526020610180602461019c845afa610a8d573d5f5f3e3d5ffd5b60203d10613628576101809050518160051b6080015260018101606052506020806101805280610180015f6060518083528060051b5f8260088111613628578015610af157905b8060051b608001518160051b602088010152600101818118610ad4575b50508201602001915050905081019050610180610bff565b6401000000046040516020525f5260405f2060158101905054610180525f6008905b806101a052610180516101a05118610b4257610ba3565b6060516007811161362857604051634903b0d16101c0526101a0516101e05260206101c060246101dc845afa610b7a573d5f5f3e3d5ffd5b60203d10613628576101c09050518160051b608001526001810160605250600101818118610b2b575b50506020806101a052806101a0015f6060518083528060051b5f8260088111613628578015610beb57905b8060051b608001518160051b602088010152600101818118610bce575b505082016020019150509050810190506101a05bf35b63eb85226d811861362457606436103417613628576004358060a01c613628576040526024358060a01c613628576060526044358060a01c613628576080526401000000046040516020525f5260405f20600381019050805415613628575f600182010190505460a0526401000000046040516020525f5260405f205460c05260a0516060518118610c94576001610c9b565b6080518118155b9050610ca7575f610cad565b60c05115155b15610d28576401000000046040516020525f5260405f206003810190506002815410613628576001600182010190505461010052610100516060518118610cf5576001610cfc565b6080518118155b905015610d285760a051608051146101405260a05160605114610160525f610180526060610140610f20565b60603660e0375f6008905b806101405260c051610ded5760086101405110610daf576013610160527f4e6f20617661696c61626c65206d61726b6574000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6101405115610e34576401000000046040516020525f5260405f2060038101905061014051815481101561362857600182010190505460a052610e34565b6101405115610e345764020000000660c0516020525f5260405f206001810190506101405160018103818111613628579050815481101561362857600182010190505460a0525b60a051610ea0576013610160527f4e6f20617661696c61626c65206d61726b6574000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b60605160a05118610eb8576101405161010052610ed4565b60805160a05118610ee7576101405161012052610ed456610ee7565b60e05115610ee157610ef2565b600160e0525b600101818118610d33575b50506101005180607f1c61362857610140526101205180607f1c613628576101605260016101805260606101405bf3613624565b639ac90d3d811861362457602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20600381019050816060015f82548083528060051b5f8260088111613628578015610fa357905b806001880101548160051b602088010152600101818118610f87575b5050820160200191505090509050810190506060f3613624565b6352b51555811861362457602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20600c81019050816060015f82548083528060051b5f826008811161362857801561103a57905b806001880101548160051b60208801015260010181811861101e575b5050820160200191505090509050810190506060f3613624565b634cb088f1811861362457602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f20600c81019050805460208160051b015f81601f0160051c600981116136285780156110cb57905b808501548160051b606001526001018181186110b4575b50505050505f6101805261018051600781116136285760605115613628575f60051b608001518160051b6101a001526001810161018052506401000000046040516020525f5260405f20546102a0526402000000066102a0516020525f5260405f20600a81019050546102c0525f6008905b806102e0526102c0516102e0518060031b818160031c186136285790501c60ff8116905061030052610300516111725761119f565b610180516007811161362857610300518160051b6101a0015260018101610180525060010181811861113d575b50506020806102e052806102e0015f610180518083528060051b5f82600881116136285780156111e957905b8060051b6101a001518160051b6020880101526001018181186111cb575b505082016020019150509050810190506102e0f3613624565b6306d8f16081186112eb57602436103417613628576004358060a01c61362857604052670de0b6b3a76400006080525f60a05260026060526401000000046040516020525f5260405f205463bb7b8b80610180526020610180600461019c845afa61126f573d5f5f3e3d5ffd5b60203d106136285761018090505160026060511061362857600160051b608001526020806101805280610180015f6060518083528060051b5f82600881116136285780156112d657905b8060051b608001518160051b6020880101526001018181186112b9575b50508201602001915050905081019050610180f35b636b441a40811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405160015500613624565b6359f4f351811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260605115613628575f608052604051634903b0d16101a0525f6101c05260206101a060246101bc845afa611391573d5f5f3e3d5ffd5b60203d10613628576101a090505160805115613628575f60051b60a001526401000000046040516020525f5260405f20600381019050600281541061362857600160018201019050546318160ddd6101c05260206101c060046101dc845afa6113fc573d5f5f3e3d5ffd5b60203d10613628576101c09050516101a0526101a0511561156157604051634903b0d16101e05260016102005260206101e060246101fc845afa611442573d5f5f3e3d5ffd5b60203d10613628576101e09050516ec097ce7bc90715b34b9f10000000008102816ec097ce7bc90715b34b9f10000000008204186136285790506101a051801561362857808204905090506101c0526402000000066060516020525f5260405f20600b81019050546101e0525f6008905b80610200526101e05161020051186114ca5761155e565b606051634903b0d16102205261020051610240526020610220602461023c845afa6114f7573d5f5f3e3d5ffd5b60203d10613628576102209050516101c05180820281158383830414171561362857905090506ec097ce7bc90715b34b9f10000000008104905061020051600181018181106136285790506080518110156136285760051b60a001526001018181186114b3575b50505b6020806101c052806101c0015f6080518083528060051b5f82600881116136285780156115a757905b8060051b60a001518160051b60208801015260010181811861158a575b505082016020019150509050810190506101c0f3613624565b6355b30b19811861161557602436103417613628576004358060a01c61362857604052602060405163f446c1d0606052602060606004607c845afa611607573d5f5f3e3d5ffd5b60203d106136285760609050f35b631cb30399811861362457604436103417613628576024358060a01c613628576040525f543318613628576040516402000000096004356020525f5260405f205500613624565b637cdb72b0811861362457602436103417613628576004358060a01c6136285760405260405163ddca3f43606052602060606004607c845afa6116a1573d5f5f3e3d5ffd5b60203d1061362857606090505160e05260405163fee3f7f960a052602060a0600460bc845afa6116d3573d5f5f3e3d5ffd5b60203d106136285760a090505161010052604060e0f3613624565b63daf297b9811861173357602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206002810190505460605260206060f35b63e4d332a9811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f2054151560605260206060f3613624565b63510d98a481186117bd57602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206001810190505460605260206060f35b63a9a8ef4481186136245760a436103417613628576004358060a01c613628576040526024358060a01c6136285760605260443560040160088135116136285780355f816008811161362857801561183657905b8060051b6020850101358060081c613628578160051b60a00152600101818118611811575b50508060805250505f5433186136285760016101a0525f6080516008811161362857801561188457905b60028160051b60a0015118611879575f6101a052611884565b600101818118611860575b50506101a05115613628576402000000066040516020525f5260405f20600181019050546136285760076064351161362857640200000005546101a0526040516101a05163ffffffff81116136285764010000000501556101a05160018101818110613628579050640200000005556060516402000000066040516020525f5260405f20556064356402000000066040516020525f5260405f20600b810190505560805160208160051b016402000000066040516020525f5260405f20600c810190505f82601f0160051c6009811161362857801561197657905b8060051b608001518184015560010181811861195f575b50505050506040366101c0375f610300525f6008905b806103205260643561032051186119a257611ac4565b60405163c66106576103405261032051610360526020610340602461035c845afa6119cf573d5f5f3e3d5ffd5b60203d1061362857610340518060a01c61362857610380526103809050516103005273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6103005114613628576402000000066040516020525f5260405f2060018101905080546007811161362857610300518160018401015560018101825550506001640200000007610300516020525f5260405f20556101c0516103005163313ce567610340526020610340600461035c845afa611a84573d5f5f3e3d5ffd5b60203d1061362857610340905051610320518060031b818160031c186136285790501b80820182811061362857905090506101c05260010181811861198c575b50506101c0516402000000066040516020525f5260405f20600a81019050557fcc6afdfec79da6be08142ecee25cf14b665961e25d30d8eba45959be9547635f604051610320526020610320a100613624565b63a80f24648118611baa57602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20601681019050816060015f82548083528060051b5f8260088111613628578015611b9457905b806001880101548160051b602088010152600101818118611b78575b5050820160200191505090509050810190506060f35b63b07426f4811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000a5500613624565b635bcd3d838118613624576102243610341761362857600435600401602081351161362857602081350180826040375050602435600401600a8135116136285760208135018082608037505060443560040160088135116136285780355f8160088111613628578015611c7957905b8060051b6020850101358060a01c613628578160051b60e00152600101818118611c54575b50508060c05250506101043560040160088135116136285780355f8160088111613628578015611ccb57905b8060051b6020850101358060081c613628578160051b6102000152600101818118611ca5575b5050806101e05250506101243560040160088135116136285780355f8160088111613628578015611d1e57905b8060051b6020850101358060201b613628578160051b6103200152600101818118611cf8575b5050806103005250506101443560040160088135116136285780355f8160088111613628578015611d7157905b8060051b6020850101358060a01c613628578160051b6104400152600101818118611d4b575b505080610420525050600260c05110613628576103005160c05118613628576104205160c05118613628576101e05160c05118613628576305f5e1006084351115611e1b57600b610540527f496e76616c6964206665650000000000000000000000000000000000000000006105605261054050610540518061056001601f825f031636823750506308c379a061050052602061052052601f19601f61054051011660440161051cfd5b6802b5e3af16b188000060a4356084358082028115838383041417156136285790509050116136285760c051610540525f610560525f610680525f6008905b806107a052610540516107a05118611e71576120ae565b6107a05160c0518110156136285760051b60e001516107c0526106805160078111613628576107c05163313ce5676107e05260206107e060046107fc845afa611ebc573d5f5f3e3d5ffd5b60203d10613628576107e09050518160051b6106a0015260018101610680525060126107a051610680518110156136285760051b6106a001511115611f605760196107e0527f4d617820313820646563696d616c7320666f7220636f696e7300000000000000610800526107e0506107e0518061080001601f825f031636823750506308c379a06107a05260206107c052601f19601f6107e05101166044016107bcfd5b6105605160078111613628576107a051610680518110156136285760051b6106a001518060240360248111613628579050604d81116136285780600a0a90508160051b61058001526001810161056052506107a0517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff881116136285760088101905b806107e052610540516107e0516001810181811061362857905018612006576120a1565b6107e0516001810181811061362857905060c0518110156136285760051b60e001516107c0511861209657600f610800527f4475706c696361746520636f696e7300000000000000000000000000000000006108205261080050610800518061082001601f825f031636823750506308c379a06107c05260206107e052601f19601f6108005101166044016107dcfd5b600101818118611fe2575b5050600101818118611e5a575b505064020000000860e4356020525f5260405f20546107a0526107a05161213457601c6107c0527f496e76616c696420696d706c656d656e746174696f6e20696e646578000000006107e0526107c0506107c051806107e001601f825f031636823750506308c379a06107805260206107a052601f19601f6107c051011660440161079cfd5b6107a05161016080610860528061086001604051815260605160208201528051806020830101601f825f03163682375050601f19601f8251602001011690508101905080610880528061086001608051815260a05160208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506064356107e0526107e0516108a05260843561080052610800516108c05260a43561082052610820516108e05260c435610840526108405161090052806109205280610860015f60c0518083528060051b5f826008811161362857801561223357905b8060051b60e001518160051b602088010152600101818118612216575b50508201602001915050905081019050806109405280610860015f610560518083528060051b5f826008811161362857801561228957905b8060051b61058001518160051b60208801015260010181811861226b575b50508201602001915050905081019050806109605280610860015f6101e0518083528060051b5f82600881116136285780156122df57905b8060051b61020001518160051b6020880101526001018181186122c1575b50508201602001915050905081019050806109805280610860015f610300518083528060051b5f826008811161362857801561233557905b8060051b61032001518160051b602088010152600101818118612317575b50508201602001915050905081019050806109a05280610860015f610420518083528060051b5f826008811161362857801561238b57905b8060051b61044001518160051b60208801015260010181811861236d575b505082016020019150509050810190506003823b0359600182126136285781600382863c81810183818561086060045afa5050828201815ff080156136285790509050905090506107c052640100000003546107e0526107c0516107e05163ffffffff811161362857600301556107e05160018101818110613628579050640100000003556106805160208160051b016401000000046107c0516020525f5260405f20600c810190505f82601f0160051c6009811161362857801561246457905b8060051b61068001518184015560010181811861244c575b5050505050610540516401000000046107c0516020525f5260405f20601581019050555f6401000000046107c0516020525f5260405f20556107a0516401000000046107c0516020525f5260405f20600181019050556101e05160208160051b016401000000046107c0516020525f5260405f206016810190505f82601f0160051c6009811161362857801561250e57905b8060051b6101e00151818401556001018181186124f6575b50505050505f6008905b806108005261054051610800511861252f57612686565b6108005160c0518110156136285760051b60e00151610820526401000000046107c0516020525f5260405f206003810190508054600781116136285761082051816001840101556001810182555050610800517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff881116136285760088101905b8061084052610540516108405160018101818110613628579050186125d357612679565b610840516001810181811061362857905060c0518110156136285760051b60e00151610860526108605161082051186108805264020000000f610880516020525f5260405f20546107e0526107c05164020000000e610880516020525f5260405f206107e05163ffffffff81116136285781019050556107e0516001810181811061362857905064020000000f610880516020525f5260405f20556001018181186125af575b5050600101818118612518575b50507f872140766e2e4bb137f652bf2cef8c88d39567afd463381c21ec9600f853d46e60a06107c05161080052806108205280610800015f60c0518083528060051b5f82600881116136285780156126f757905b8060051b60e001518160051b6020880101526001018181186126da575b5050820160200191505090508101905060406064610840373361088052610800a160206107c0f3613624565b63df8c5d738118613624576101c436103417613628576004358060a01c61362857604052602435600401602081351161362857602081350180826060375050604435600401600a813511613628576020813501808260a03750506064358060a01c6136285760e052610124358060081c6136285761010052610144358060201b6136285761012052610164358060a01c613628576101405264020000000760e0516020525f5260405f205415612882576044610160527f496e76616c69642061737365743a2043616e6e6f742070616972206261736520610180527f706f6f6c2061737365742077697468206261736520706f6f6c2773204c5020746101a0527f6f6b656e000000000000000000000000000000000000000000000000000000006101c05261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6305f5e10060a43511156128f557600b610160527f496e76616c6964206665650000000000000000000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6802b5e3af16b188000060c43560a435808202811583838304141715613628579050905011613628576402000000066040516020525f5260405f206001810190505461016052610160516129a8576016610180527f4261736520706f6f6c206973206e6f74206164646564000000000000000000006101a0526101805061018051806101a001601f825f031636823750506308c379a061014052602061016052601f19601f61018051011660440161015cfd5b640200000009610104356020525f5260405f20546101805261018051612a2d57601c6101a0527f496e76616c696420696d706c656d656e746174696f6e20696e646578000000006101c0526101a0506101a051806101c001601f825f031636823750506308c379a061016052602061018052601f19601f6101a051011660440161017cfd5b60e05163313ce5676101c05260206101c060046101dc845afa612a52573d5f5f3e3d5ffd5b60203d10613628576101c09050516101a05260126101a0511115612ad55760196101c0527f4d617820313820646563696d616c7320666f7220636f696e73000000000000006101e0526101c0506101c051806101e001601f825f031636823750506308c379a06101805260206101a052601f19601f6101c051011660440161019cfd5b6402000000066040516020525f5260405f20600c81019050805460208160051b015f81601f0160051c60098111613628578015612b2657905b808501548160051b6101c00152600101818118612b0e575b505050505061010051610300525f6103205260026102e0525f6008905b8061040052610160516104005118612b5a57612b9a565b6102e0516007811161362857610400516101c0518110156136285760051b6101e001518160051b6103000152600181016102e05250600101818118612b43575b505060e051610420526402000000066040516020525f5260405f2054610440526002610400526101a0518060240360248111613628579050604d81116136285780600a0a905061054052670de0b6b3a76400006105605260026105205261012051610660525f6106805260026106405261014051610780525f6107a052600261076052610180516101c080610a805280610a8001606051815260805160208201528051806020830101601f825f03163682375050601f19601f8251602001011690508101905080610aa05280610a800160a051815260c05160208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506084356108a0526108a051610ac05260a4356108c0526108c051610ae05260c4356108e0526108e051610b005260e4356109005261090051610b205264020000000a546109205261092051610b40526040516109405261094051610b605280610b805280610a80015f610400518083528060051b5f8260088111613628578015612d4057905b8060051b61042001518160051b602088010152600101818118612d22575b5050820160200191505090508101905080610ba0526402000000066040516020525f5260405f20600181019050805460208160051b015f81601f0160051c60098111613628578015612da657905b808501548160051b6109600152600101818118612d8e575b505050505061096081610a80015f82518083528060051b5f8260088111613628578015612dee57905b8060051b6020880101518160051b602088010152600101818118612dcf575b50508201602001915050905090508101905080610bc05280610a80015f610520518083528060051b5f8260088111613628578015612e4657905b8060051b61054001518160051b602088010152600101818118612e28575b5050820160200191505090508101905080610be05280610a80015f6102e0518083528060051b5f8260088111613628578015612e9c57905b8060051b61030001518160051b602088010152600101818118612e7e575b5050820160200191505090508101905080610c005280610a80015f610640518083528060051b5f8260088111613628578015612ef257905b8060051b61066001518160051b602088010152600101818118612ed4575b5050820160200191505090508101905080610c205280610a80015f610760518083528060051b5f8260088111613628578015612f4857905b8060051b61078001518160051b602088010152600101818118612f2a575b505082016020019150509050810190506003823b0359600182126136285781600382863c818101838185610a8060045afa5050828201815ff0801561362857905090509050905061088052640100000003546108a052610880516108a05163ffffffff811161362857600301556108a05160018101818110613628579050640100000003556402000000066040516020525f5260405f20546108c0526101a051640100000004610880516020525f5260405f20600c81019050600181019050556012640100000004610880516020525f5260405f20600c81019050600160018201019050555f640100000004610880516020525f5260405f20600c81019050600260018201019050555f640100000004610880516020525f5260405f20600c81019050600360018201019050555f640100000004610880516020525f5260405f20600c81019050600460018201019050555f640100000004610880516020525f5260405f20600c81019050600560018201019050555f640100000004610880516020525f5260405f20600c81019050600660018201019050555f640100000004610880516020525f5260405f20600c81019050600760018201019050556008640100000004610880516020525f5260405f20600c81019050556002640100000004610880516020525f5260405f2060158101905055604051640100000004610880516020525f5260405f205560e051640100000004610880516020525f5260405f20600381019050600181019050556402000000066040516020525f5260405f2054640100000004610880516020525f5260405f20600381019050600160018201019050556002640100000004610880516020525f5260405f206003810190505561018051640100000004610880516020525f5260405f20600181019050556040366108e0375f6008905b80610920526402000000066040516020525f5260405f2060018101905054610920511061322d5760016108e0526108c0516109005261325f565b6402000000066040516020525f5260405f20600181019050610920518154811015613628576001820101905054610900525b6109005160e051186109405264020000000f610940516020525f5260405f20546108a0526108805164020000000e610940516020525f5260405f206108a05163ffffffff81116136285781019050556108a0516001810181811061362857905064020000000f610940516020525f5260405f20556108e051156132e1576132ec565b6001018181186131f3575b50507f6ace1f9dc96f8bcd51376ae8365deae6d1dce68d563d7ba623493cdddc0a0580610880516109205260e05161094052604051610960526040608461098037336109c05260c0610920a16020610880f3613624565b6396bebb34811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f20600381019050805415613628575f60018201019050546133ee57600c6060527f556e6b6e6f776e20706f6f6c000000000000000000000000000000000000000060805260605060605180608001601f825f031636823750506308c379a06020526020604052601f19601f6060510116604401603cfd5b6401000000046040516020525f5260405f2060028101905054156134685760166060527f476175676520616c7265616479206465706c6f7965640000000000000000000060805260605060605180608001601f825f031636823750506308c379a06020526020604052601f19601f6060510116604401603cfd5b64020000000b546060526060516134d557601c6080527f476175676520696d706c656d656e746174696f6e206e6f74207365740000000060a0526080506080518060a001601f825f031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b64020000000b5460405160a05260a05160c05260206003823b0359600182126136285781600382863c81810160c051815250828201815ff080156136285790509050905090506080526080516401000000046040516020525f5260405f20600281019050557f656bb34c20491970a8c163f3bd62ead82022b379c3924960ec60f6dbfc5aab3b60405160a05260805160c052604060a0a160206080f3613624565b638f03182c811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000b5500613624565b63e5ea47b881186136245734613628576001546040526040513318613628576040515f555f60015500613624565b6336d2b77a811861362457604436103417613628576004358060a01c613628576040526024358060a01c613628576060525f5433186136285760605164020000000d55005b5f5ffd5b5f80fd165c02b8362436241b1736243624362406e515c00294035536240958362436241202105401e8272317780fbd362405a5362416ee35df064935760915362436240018132236241be533433624362406c135b1362401c8082508f30f26026003998419368c8118601820a16576797065728300030a00160000000000000000000000003c0a405e914337139992625d5100ea141a9c4d110000000000000000000000002d12d0907a388811e3aa855a550f959501d303ee

Deployed Bytecode

0x5f3560e01c60026030820660011b61362c01601e395f51565b6354fd4d50811861009657346136285760208060805260056040527f312e302e3000000000000000000000000000000000000000000000000000000060605260408160800181518152602082015160208201528051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506080f35b63f851a44081186100b15734613628575f5460405260206040f35b63ed874940811861362457602436103417613628576004358060a01c613628576040526020806060526402000000066040516020525f5260405f208160600160a082548252806020830152600183018183015f82548083528060051b5f826008811161362857801561013b57905b806001880101548160051b60208801015260010181811861011f575b505082016020019150509050905081019050600a8301546040830152600b8301546060830152806080830152600c83018183015f82548083528060051b5f82600881116136285780156101a657905b806001880101548160051b60208801015260010181811861018a575b50508201602001915050905090508101905090509050810190506060f3613624565b6317f7182a811861362457346136285760015460405260206040f3613624565b63f1f10172811861362457602436103417613628576004358060081c6136285760405260208060605260026040516020525f5260405f208160600181548152600182015460208201528051806020830101601f825f03163682375050601f19601f8251602001011690509050810190506060f3613624565b633a1d5d8e8118613624576024361034176136285760043563ffffffff8111613628576003015460405260206040f3613624565b63956aae3a81186136245734613628576401000000035460405260206040f3613624565b6322fe567181186102ec576024361034176136285760043563ffffffff811161362857640100000005015460405260206040f35b63a13c8f81811861030c57346136285764020000000a5460405260206040f35b63940494f1811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206015810190505460605260206060f3613624565b63de5e4a3b81186103755734613628576402000000055460405260206040f35b63cab4d3db811861362457346136285764020000000d5460405260206040f3613624565b6310a002df81186103d857602436103417613628576004358060a01c613628576040526402000000076040516020525f5260405f205460605260206060f35b63a77576ef811861056a57602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f20546101805261018051156136285760605160078111613628576401000000046040516020525f5260405f20600381019050805415613628575f60018201019050548160051b608001526001810160605250640200000006610180516020525f5260405f20600181019050546101a052600160078101905b806101c0526101a0516101c05160018103818111613628579050186104ac5761050d565b6060516007811161362857640200000006610180516020525f5260405f206001810190506101c0516001810381811161362857905081548110156136285760018201019050548160051b608001526001810160605250600101818118610488575b50506020806101c052806101c0015f6060518083528060051b5f826008811161362857801561055557905b8060051b608001518160051b602088010152600101818118610538575b505082016020019150509050810190506101c0f35b63f6fa937f811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000c5500613624565b633273ff4781186105d657602436103417613628576402000000086004356020525f5260405f205460405260206040f35b634e988127811861362457606436103417613628576004358060081c61362857604052602435600401600a813511613628576020813501808260603750505f5433186136285760605160026040516020525f5260405f2055608051600160026040516020525f5260405f20015500613624565b63cfef1d6b811861067a57602436103417613628576402000000096004356020525f5260405f205460405260206040f35b634dc05cfb811861362457604436103417613628576024358060a01c613628576040525f543318613628576040516402000000086004356020525f5260405f205500613624565b638df24207811861362457346136285764020000000b5460405260206040f3613624565b63e31593d8811861070557346136285764020000000c5460405260206040f35b63c11e45b8811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f20601581019050546060525f6080525f6008905b806101a0526060516101a05118610763576107c4565b608051600781116136285760405163e2e7d2646101c0526101a0516101e05260206101c060246101dc845afa61079b573d5f5f3e3d5ffd5b60203d10613628576101c09050518160051b60a00152600181016080525060010181811861074d575b50506020806101a052806101a0015f6080518083528060051b5f826008811161362857801561080c57905b8060051b60a001518160051b6020880101526001018181186107ef575b505082016020019150509050810190506101a0f3613624565b637cb97b2b811861087f57602436103417613628576004358060a01c61362857604052602061368c5f395f51331861362857602061368c5f395f515f541861362857602061368c5f395f5160405114613628576040515f55005b636982eb0b811861362457606436103417613628576044356080525b6004358060a01c613628576040526024358060a01c613628576060526060516040511860a05264020000000e60a0516020525f5260405f2060805163ffffffff811161362857810190505460c052602060c0f3613624565b63a87df06c811861362457604436103417613628575f60805261089b56613624565b636f20d6dd811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260206060f3613624565b63eb73f37d81186109c557602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260026080526402000000066060516020525f5260405f20600b81019050546001810181811061362857905060a05260406080f35b6392e3cc2d8118610c0157602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f205415610b09576060516007811161362857604051634903b0d1610180525f6101a0526020610180602461019c845afa610a39573d5f5f3e3d5ffd5b60203d10613628576101809050518160051b6080015260018101606052506060516007811161362857604051634903b0d16101805260016101a0526020610180602461019c845afa610a8d573d5f5f3e3d5ffd5b60203d10613628576101809050518160051b6080015260018101606052506020806101805280610180015f6060518083528060051b5f8260088111613628578015610af157905b8060051b608001518160051b602088010152600101818118610ad4575b50508201602001915050905081019050610180610bff565b6401000000046040516020525f5260405f2060158101905054610180525f6008905b806101a052610180516101a05118610b4257610ba3565b6060516007811161362857604051634903b0d16101c0526101a0516101e05260206101c060246101dc845afa610b7a573d5f5f3e3d5ffd5b60203d10613628576101c09050518160051b608001526001810160605250600101818118610b2b575b50506020806101a052806101a0015f6060518083528060051b5f8260088111613628578015610beb57905b8060051b608001518160051b602088010152600101818118610bce575b505082016020019150509050810190506101a05bf35b63eb85226d811861362457606436103417613628576004358060a01c613628576040526024358060a01c613628576060526044358060a01c613628576080526401000000046040516020525f5260405f20600381019050805415613628575f600182010190505460a0526401000000046040516020525f5260405f205460c05260a0516060518118610c94576001610c9b565b6080518118155b9050610ca7575f610cad565b60c05115155b15610d28576401000000046040516020525f5260405f206003810190506002815410613628576001600182010190505461010052610100516060518118610cf5576001610cfc565b6080518118155b905015610d285760a051608051146101405260a05160605114610160525f610180526060610140610f20565b60603660e0375f6008905b806101405260c051610ded5760086101405110610daf576013610160527f4e6f20617661696c61626c65206d61726b6574000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6101405115610e34576401000000046040516020525f5260405f2060038101905061014051815481101561362857600182010190505460a052610e34565b6101405115610e345764020000000660c0516020525f5260405f206001810190506101405160018103818111613628579050815481101561362857600182010190505460a0525b60a051610ea0576013610160527f4e6f20617661696c61626c65206d61726b6574000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b60605160a05118610eb8576101405161010052610ed4565b60805160a05118610ee7576101405161012052610ed456610ee7565b60e05115610ee157610ef2565b600160e0525b600101818118610d33575b50506101005180607f1c61362857610140526101205180607f1c613628576101605260016101805260606101405bf3613624565b639ac90d3d811861362457602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20600381019050816060015f82548083528060051b5f8260088111613628578015610fa357905b806001880101548160051b602088010152600101818118610f87575b5050820160200191505090509050810190506060f3613624565b6352b51555811861362457602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20600c81019050816060015f82548083528060051b5f826008811161362857801561103a57905b806001880101548160051b60208801015260010181811861101e575b5050820160200191505090509050810190506060f3613624565b634cb088f1811861362457602436103417613628576004358060a01c613628576040525f6060526401000000046040516020525f5260405f20600c81019050805460208160051b015f81601f0160051c600981116136285780156110cb57905b808501548160051b606001526001018181186110b4575b50505050505f6101805261018051600781116136285760605115613628575f60051b608001518160051b6101a001526001810161018052506401000000046040516020525f5260405f20546102a0526402000000066102a0516020525f5260405f20600a81019050546102c0525f6008905b806102e0526102c0516102e0518060031b818160031c186136285790501c60ff8116905061030052610300516111725761119f565b610180516007811161362857610300518160051b6101a0015260018101610180525060010181811861113d575b50506020806102e052806102e0015f610180518083528060051b5f82600881116136285780156111e957905b8060051b6101a001518160051b6020880101526001018181186111cb575b505082016020019150509050810190506102e0f3613624565b6306d8f16081186112eb57602436103417613628576004358060a01c61362857604052670de0b6b3a76400006080525f60a05260026060526401000000046040516020525f5260405f205463bb7b8b80610180526020610180600461019c845afa61126f573d5f5f3e3d5ffd5b60203d106136285761018090505160026060511061362857600160051b608001526020806101805280610180015f6060518083528060051b5f82600881116136285780156112d657905b8060051b608001518160051b6020880101526001018181186112b9575b50508201602001915050905081019050610180f35b636b441a40811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405160015500613624565b6359f4f351811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f205460605260605115613628575f608052604051634903b0d16101a0525f6101c05260206101a060246101bc845afa611391573d5f5f3e3d5ffd5b60203d10613628576101a090505160805115613628575f60051b60a001526401000000046040516020525f5260405f20600381019050600281541061362857600160018201019050546318160ddd6101c05260206101c060046101dc845afa6113fc573d5f5f3e3d5ffd5b60203d10613628576101c09050516101a0526101a0511561156157604051634903b0d16101e05260016102005260206101e060246101fc845afa611442573d5f5f3e3d5ffd5b60203d10613628576101e09050516ec097ce7bc90715b34b9f10000000008102816ec097ce7bc90715b34b9f10000000008204186136285790506101a051801561362857808204905090506101c0526402000000066060516020525f5260405f20600b81019050546101e0525f6008905b80610200526101e05161020051186114ca5761155e565b606051634903b0d16102205261020051610240526020610220602461023c845afa6114f7573d5f5f3e3d5ffd5b60203d10613628576102209050516101c05180820281158383830414171561362857905090506ec097ce7bc90715b34b9f10000000008104905061020051600181018181106136285790506080518110156136285760051b60a001526001018181186114b3575b50505b6020806101c052806101c0015f6080518083528060051b5f82600881116136285780156115a757905b8060051b60a001518160051b60208801015260010181811861158a575b505082016020019150509050810190506101c0f3613624565b6355b30b19811861161557602436103417613628576004358060a01c61362857604052602060405163f446c1d0606052602060606004607c845afa611607573d5f5f3e3d5ffd5b60203d106136285760609050f35b631cb30399811861362457604436103417613628576024358060a01c613628576040525f543318613628576040516402000000096004356020525f5260405f205500613624565b637cdb72b0811861362457602436103417613628576004358060a01c6136285760405260405163ddca3f43606052602060606004607c845afa6116a1573d5f5f3e3d5ffd5b60203d1061362857606090505160e05260405163fee3f7f960a052602060a0600460bc845afa6116d3573d5f5f3e3d5ffd5b60203d106136285760a090505161010052604060e0f3613624565b63daf297b9811861173357602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206002810190505460605260206060f35b63e4d332a9811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f2054151560605260206060f3613624565b63510d98a481186117bd57602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f206001810190505460605260206060f35b63a9a8ef4481186136245760a436103417613628576004358060a01c613628576040526024358060a01c6136285760605260443560040160088135116136285780355f816008811161362857801561183657905b8060051b6020850101358060081c613628578160051b60a00152600101818118611811575b50508060805250505f5433186136285760016101a0525f6080516008811161362857801561188457905b60028160051b60a0015118611879575f6101a052611884565b600101818118611860575b50506101a05115613628576402000000066040516020525f5260405f20600181019050546136285760076064351161362857640200000005546101a0526040516101a05163ffffffff81116136285764010000000501556101a05160018101818110613628579050640200000005556060516402000000066040516020525f5260405f20556064356402000000066040516020525f5260405f20600b810190505560805160208160051b016402000000066040516020525f5260405f20600c810190505f82601f0160051c6009811161362857801561197657905b8060051b608001518184015560010181811861195f575b50505050506040366101c0375f610300525f6008905b806103205260643561032051186119a257611ac4565b60405163c66106576103405261032051610360526020610340602461035c845afa6119cf573d5f5f3e3d5ffd5b60203d1061362857610340518060a01c61362857610380526103809050516103005273eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee6103005114613628576402000000066040516020525f5260405f2060018101905080546007811161362857610300518160018401015560018101825550506001640200000007610300516020525f5260405f20556101c0516103005163313ce567610340526020610340600461035c845afa611a84573d5f5f3e3d5ffd5b60203d1061362857610340905051610320518060031b818160031c186136285790501b80820182811061362857905090506101c05260010181811861198c575b50506101c0516402000000066040516020525f5260405f20600a81019050557fcc6afdfec79da6be08142ecee25cf14b665961e25d30d8eba45959be9547635f604051610320526020610320a100613624565b63a80f24648118611baa57602436103417613628576004358060a01c613628576040526020806060526401000000046040516020525f5260405f20601681019050816060015f82548083528060051b5f8260088111613628578015611b9457905b806001880101548160051b602088010152600101818118611b78575b5050820160200191505090509050810190506060f35b63b07426f4811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000a5500613624565b635bcd3d838118613624576102243610341761362857600435600401602081351161362857602081350180826040375050602435600401600a8135116136285760208135018082608037505060443560040160088135116136285780355f8160088111613628578015611c7957905b8060051b6020850101358060a01c613628578160051b60e00152600101818118611c54575b50508060c05250506101043560040160088135116136285780355f8160088111613628578015611ccb57905b8060051b6020850101358060081c613628578160051b6102000152600101818118611ca5575b5050806101e05250506101243560040160088135116136285780355f8160088111613628578015611d1e57905b8060051b6020850101358060201b613628578160051b6103200152600101818118611cf8575b5050806103005250506101443560040160088135116136285780355f8160088111613628578015611d7157905b8060051b6020850101358060a01c613628578160051b6104400152600101818118611d4b575b505080610420525050600260c05110613628576103005160c05118613628576104205160c05118613628576101e05160c05118613628576305f5e1006084351115611e1b57600b610540527f496e76616c6964206665650000000000000000000000000000000000000000006105605261054050610540518061056001601f825f031636823750506308c379a061050052602061052052601f19601f61054051011660440161051cfd5b6802b5e3af16b188000060a4356084358082028115838383041417156136285790509050116136285760c051610540525f610560525f610680525f6008905b806107a052610540516107a05118611e71576120ae565b6107a05160c0518110156136285760051b60e001516107c0526106805160078111613628576107c05163313ce5676107e05260206107e060046107fc845afa611ebc573d5f5f3e3d5ffd5b60203d10613628576107e09050518160051b6106a0015260018101610680525060126107a051610680518110156136285760051b6106a001511115611f605760196107e0527f4d617820313820646563696d616c7320666f7220636f696e7300000000000000610800526107e0506107e0518061080001601f825f031636823750506308c379a06107a05260206107c052601f19601f6107e05101166044016107bcfd5b6105605160078111613628576107a051610680518110156136285760051b6106a001518060240360248111613628579050604d81116136285780600a0a90508160051b61058001526001810161056052506107a0517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff881116136285760088101905b806107e052610540516107e0516001810181811061362857905018612006576120a1565b6107e0516001810181811061362857905060c0518110156136285760051b60e001516107c0511861209657600f610800527f4475706c696361746520636f696e7300000000000000000000000000000000006108205261080050610800518061082001601f825f031636823750506308c379a06107c05260206107e052601f19601f6108005101166044016107dcfd5b600101818118611fe2575b5050600101818118611e5a575b505064020000000860e4356020525f5260405f20546107a0526107a05161213457601c6107c0527f496e76616c696420696d706c656d656e746174696f6e20696e646578000000006107e0526107c0506107c051806107e001601f825f031636823750506308c379a06107805260206107a052601f19601f6107c051011660440161079cfd5b6107a05161016080610860528061086001604051815260605160208201528051806020830101601f825f03163682375050601f19601f8251602001011690508101905080610880528061086001608051815260a05160208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506064356107e0526107e0516108a05260843561080052610800516108c05260a43561082052610820516108e05260c435610840526108405161090052806109205280610860015f60c0518083528060051b5f826008811161362857801561223357905b8060051b60e001518160051b602088010152600101818118612216575b50508201602001915050905081019050806109405280610860015f610560518083528060051b5f826008811161362857801561228957905b8060051b61058001518160051b60208801015260010181811861226b575b50508201602001915050905081019050806109605280610860015f6101e0518083528060051b5f82600881116136285780156122df57905b8060051b61020001518160051b6020880101526001018181186122c1575b50508201602001915050905081019050806109805280610860015f610300518083528060051b5f826008811161362857801561233557905b8060051b61032001518160051b602088010152600101818118612317575b50508201602001915050905081019050806109a05280610860015f610420518083528060051b5f826008811161362857801561238b57905b8060051b61044001518160051b60208801015260010181811861236d575b505082016020019150509050810190506003823b0359600182126136285781600382863c81810183818561086060045afa5050828201815ff080156136285790509050905090506107c052640100000003546107e0526107c0516107e05163ffffffff811161362857600301556107e05160018101818110613628579050640100000003556106805160208160051b016401000000046107c0516020525f5260405f20600c810190505f82601f0160051c6009811161362857801561246457905b8060051b61068001518184015560010181811861244c575b5050505050610540516401000000046107c0516020525f5260405f20601581019050555f6401000000046107c0516020525f5260405f20556107a0516401000000046107c0516020525f5260405f20600181019050556101e05160208160051b016401000000046107c0516020525f5260405f206016810190505f82601f0160051c6009811161362857801561250e57905b8060051b6101e00151818401556001018181186124f6575b50505050505f6008905b806108005261054051610800511861252f57612686565b6108005160c0518110156136285760051b60e00151610820526401000000046107c0516020525f5260405f206003810190508054600781116136285761082051816001840101556001810182555050610800517ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff881116136285760088101905b8061084052610540516108405160018101818110613628579050186125d357612679565b610840516001810181811061362857905060c0518110156136285760051b60e00151610860526108605161082051186108805264020000000f610880516020525f5260405f20546107e0526107c05164020000000e610880516020525f5260405f206107e05163ffffffff81116136285781019050556107e0516001810181811061362857905064020000000f610880516020525f5260405f20556001018181186125af575b5050600101818118612518575b50507f872140766e2e4bb137f652bf2cef8c88d39567afd463381c21ec9600f853d46e60a06107c05161080052806108205280610800015f60c0518083528060051b5f82600881116136285780156126f757905b8060051b60e001518160051b6020880101526001018181186126da575b5050820160200191505090508101905060406064610840373361088052610800a160206107c0f3613624565b63df8c5d738118613624576101c436103417613628576004358060a01c61362857604052602435600401602081351161362857602081350180826060375050604435600401600a813511613628576020813501808260a03750506064358060a01c6136285760e052610124358060081c6136285761010052610144358060201b6136285761012052610164358060a01c613628576101405264020000000760e0516020525f5260405f205415612882576044610160527f496e76616c69642061737365743a2043616e6e6f742070616972206261736520610180527f706f6f6c2061737365742077697468206261736520706f6f6c2773204c5020746101a0527f6f6b656e000000000000000000000000000000000000000000000000000000006101c05261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6305f5e10060a43511156128f557600b610160527f496e76616c6964206665650000000000000000000000000000000000000000006101805261016050610160518061018001601f825f031636823750506308c379a061012052602061014052601f19601f61016051011660440161013cfd5b6802b5e3af16b188000060c43560a435808202811583838304141715613628579050905011613628576402000000066040516020525f5260405f206001810190505461016052610160516129a8576016610180527f4261736520706f6f6c206973206e6f74206164646564000000000000000000006101a0526101805061018051806101a001601f825f031636823750506308c379a061014052602061016052601f19601f61018051011660440161015cfd5b640200000009610104356020525f5260405f20546101805261018051612a2d57601c6101a0527f496e76616c696420696d706c656d656e746174696f6e20696e646578000000006101c0526101a0506101a051806101c001601f825f031636823750506308c379a061016052602061018052601f19601f6101a051011660440161017cfd5b60e05163313ce5676101c05260206101c060046101dc845afa612a52573d5f5f3e3d5ffd5b60203d10613628576101c09050516101a05260126101a0511115612ad55760196101c0527f4d617820313820646563696d616c7320666f7220636f696e73000000000000006101e0526101c0506101c051806101e001601f825f031636823750506308c379a06101805260206101a052601f19601f6101c051011660440161019cfd5b6402000000066040516020525f5260405f20600c81019050805460208160051b015f81601f0160051c60098111613628578015612b2657905b808501548160051b6101c00152600101818118612b0e575b505050505061010051610300525f6103205260026102e0525f6008905b8061040052610160516104005118612b5a57612b9a565b6102e0516007811161362857610400516101c0518110156136285760051b6101e001518160051b6103000152600181016102e05250600101818118612b43575b505060e051610420526402000000066040516020525f5260405f2054610440526002610400526101a0518060240360248111613628579050604d81116136285780600a0a905061054052670de0b6b3a76400006105605260026105205261012051610660525f6106805260026106405261014051610780525f6107a052600261076052610180516101c080610a805280610a8001606051815260805160208201528051806020830101601f825f03163682375050601f19601f8251602001011690508101905080610aa05280610a800160a051815260c05160208201528051806020830101601f825f03163682375050601f19601f825160200101169050810190506084356108a0526108a051610ac05260a4356108c0526108c051610ae05260c4356108e0526108e051610b005260e4356109005261090051610b205264020000000a546109205261092051610b40526040516109405261094051610b605280610b805280610a80015f610400518083528060051b5f8260088111613628578015612d4057905b8060051b61042001518160051b602088010152600101818118612d22575b5050820160200191505090508101905080610ba0526402000000066040516020525f5260405f20600181019050805460208160051b015f81601f0160051c60098111613628578015612da657905b808501548160051b6109600152600101818118612d8e575b505050505061096081610a80015f82518083528060051b5f8260088111613628578015612dee57905b8060051b6020880101518160051b602088010152600101818118612dcf575b50508201602001915050905090508101905080610bc05280610a80015f610520518083528060051b5f8260088111613628578015612e4657905b8060051b61054001518160051b602088010152600101818118612e28575b5050820160200191505090508101905080610be05280610a80015f6102e0518083528060051b5f8260088111613628578015612e9c57905b8060051b61030001518160051b602088010152600101818118612e7e575b5050820160200191505090508101905080610c005280610a80015f610640518083528060051b5f8260088111613628578015612ef257905b8060051b61066001518160051b602088010152600101818118612ed4575b5050820160200191505090508101905080610c205280610a80015f610760518083528060051b5f8260088111613628578015612f4857905b8060051b61078001518160051b602088010152600101818118612f2a575b505082016020019150509050810190506003823b0359600182126136285781600382863c818101838185610a8060045afa5050828201815ff0801561362857905090509050905061088052640100000003546108a052610880516108a05163ffffffff811161362857600301556108a05160018101818110613628579050640100000003556402000000066040516020525f5260405f20546108c0526101a051640100000004610880516020525f5260405f20600c81019050600181019050556012640100000004610880516020525f5260405f20600c81019050600160018201019050555f640100000004610880516020525f5260405f20600c81019050600260018201019050555f640100000004610880516020525f5260405f20600c81019050600360018201019050555f640100000004610880516020525f5260405f20600c81019050600460018201019050555f640100000004610880516020525f5260405f20600c81019050600560018201019050555f640100000004610880516020525f5260405f20600c81019050600660018201019050555f640100000004610880516020525f5260405f20600c81019050600760018201019050556008640100000004610880516020525f5260405f20600c81019050556002640100000004610880516020525f5260405f2060158101905055604051640100000004610880516020525f5260405f205560e051640100000004610880516020525f5260405f20600381019050600181019050556402000000066040516020525f5260405f2054640100000004610880516020525f5260405f20600381019050600160018201019050556002640100000004610880516020525f5260405f206003810190505561018051640100000004610880516020525f5260405f20600181019050556040366108e0375f6008905b80610920526402000000066040516020525f5260405f2060018101905054610920511061322d5760016108e0526108c0516109005261325f565b6402000000066040516020525f5260405f20600181019050610920518154811015613628576001820101905054610900525b6109005160e051186109405264020000000f610940516020525f5260405f20546108a0526108805164020000000e610940516020525f5260405f206108a05163ffffffff81116136285781019050556108a0516001810181811061362857905064020000000f610940516020525f5260405f20556108e051156132e1576132ec565b6001018181186131f3575b50507f6ace1f9dc96f8bcd51376ae8365deae6d1dce68d563d7ba623493cdddc0a0580610880516109205260e05161094052604051610960526040608461098037336109c05260c0610920a16020610880f3613624565b6396bebb34811861362457602436103417613628576004358060a01c613628576040526401000000046040516020525f5260405f20600381019050805415613628575f60018201019050546133ee57600c6060527f556e6b6e6f776e20706f6f6c000000000000000000000000000000000000000060805260605060605180608001601f825f031636823750506308c379a06020526020604052601f19601f6060510116604401603cfd5b6401000000046040516020525f5260405f2060028101905054156134685760166060527f476175676520616c7265616479206465706c6f7965640000000000000000000060805260605060605180608001601f825f031636823750506308c379a06020526020604052601f19601f6060510116604401603cfd5b64020000000b546060526060516134d557601c6080527f476175676520696d706c656d656e746174696f6e206e6f74207365740000000060a0526080506080518060a001601f825f031636823750506308c379a06040526020606052601f19601f6080510116604401605cfd5b64020000000b5460405160a05260a05160c05260206003823b0359600182126136285781600382863c81810160c051815250828201815ff080156136285790509050905090506080526080516401000000046040516020525f5260405f20600281019050557f656bb34c20491970a8c163f3bd62ead82022b379c3924960ec60f6dbfc5aab3b60405160a05260805160c052604060a0a160206080f3613624565b638f03182c811861362457602436103417613628576004358060a01c613628576040525f5433186136285760405164020000000b5500613624565b63e5ea47b881186136245734613628576001546040526040513318613628576040515f555f60015500613624565b6336d2b77a811861362457604436103417613628576004358060a01c613628576040526024358060a01c613628576060525f5433186136285760605164020000000d55005b5f5ffd5b5f80fd165c02b8362436241b1736243624362406e515c00294035536240958362436241202105401e8272317780fbd362405a5362416ee35df064935760915362436240018132236241be533433624362406c135b1362401c8082508f30f26026003990000000000000000000000002d12d0907a388811e3aa855a550f959501d303ee

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000003c0a405e914337139992625d5100ea141a9c4d110000000000000000000000002d12d0907a388811e3aa855a550f959501d303ee

-----Decoded View---------------
Arg [0] : _fee_receiver (address): 0x3c0a405E914337139992625D5100Ea141a9C4d11
Arg [1] : _owner (address): 0x2d12D0907A388811e3AA855A550F959501d303EE

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000003c0a405e914337139992625d5100ea141a9c4d11
Arg [1] : 0000000000000000000000002d12d0907a388811e3aa855a550f959501d303ee


Block Transaction Gas Used Reward
view all blocks produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.