ETH Price: $2,493.34 (+3.00%)

Contract

0xFAe64471ae04068e872C6A73C9F5a255c37dDbDC
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Adjust Oracle Ca...172351752023-05-11 5:56:23514 days ago1683784583IN
0xFAe64471...5c37dDbDC
0 ETH0.4602965968.7024096
Adjust Oracle Ca...170312982023-04-12 10:20:11543 days ago1681294811IN
0xFAe64471...5c37dDbDC
0 ETH0.1912350322.05692177
Adjust Oracle Ca...165209592023-01-30 16:52:59615 days ago1675097579IN
0xFAe64471...5c37dDbDC
0 ETH0.0756983918.83952898
Adjust Oracle Ca...164332462023-01-18 10:59:11627 days ago1674039551IN
0xFAe64471...5c37dDbDC
0 ETH0.0898058922.3505498
Adjust Oracle Ca...164209662023-01-16 17:52:35629 days ago1673891555IN
0xFAe64471...5c37dDbDC
0 ETH0.0233939127.91543623
Adjust Oracle Ca...160272692022-11-22 18:15:59684 days ago1669140959IN
0xFAe64471...5c37dDbDC
0 ETH0.1291062432.1314719
Adjust Oracle Ca...158808132022-11-02 7:21:35704 days ago1667373695IN
0xFAe64471...5c37dDbDC
0 ETH0.0335436712.81727476
Adjust Oracle Ca...158768812022-11-01 18:10:59705 days ago1667326259IN
0xFAe64471...5c37dDbDC
0 ETH0.0679732116.91691489
Adjust Oracle Ca...158713182022-10-31 23:27:35706 days ago1667258855IN
0xFAe64471...5c37dDbDC
0 ETH0.0490533512.20821359
Adjust Oracle Ca...158329592022-10-26 14:50:59711 days ago1666795859IN
0xFAe64471...5c37dDbDC
0 ETH0.4760498938.12663526
Adjust Oracle Ca...158232822022-10-25 6:23:35712 days ago1666679015IN
0xFAe64471...5c37dDbDC
0 ETH0.0798576112.69474746
Adjust Oracle Ca...158232742022-10-25 6:21:59712 days ago1666678919IN
0xFAe64471...5c37dDbDC
0 ETH0.0539363512.31951493
Adjust Oracle Ca...158232672022-10-25 6:20:35712 days ago1666678835IN
0xFAe64471...5c37dDbDC
0 ETH0.0825508110.50195996
Adjust Oracle Ca...158232592022-10-25 6:18:59712 days ago1666678739IN
0xFAe64471...5c37dDbDC
0 ETH0.0997453112.2392758
Adjust Oracle Ca...158232522022-10-25 6:17:35712 days ago1666678655IN
0xFAe64471...5c37dDbDC
0 ETH0.0648240310.35630471
Adjust Oracle Ca...158232452022-10-25 6:16:11712 days ago1666678571IN
0xFAe64471...5c37dDbDC
0 ETH0.105500211.94792693
Adjust Oracle Ca...158232382022-10-25 6:14:47712 days ago1666678487IN
0xFAe64471...5c37dDbDC
0 ETH0.1580930211.59602179
Adjust Oracle Ca...158232302022-10-25 6:13:11712 days ago1666678391IN
0xFAe64471...5c37dDbDC
0 ETH0.1093111112.55650768
Adjust Oracle Ca...158232222022-10-25 6:11:35712 days ago1666678295IN
0xFAe64471...5c37dDbDC
0 ETH0.09325612.24491371
Adjust Oracle Ca...158197372022-10-24 18:28:47713 days ago1666636127IN
0xFAe64471...5c37dDbDC
0 ETH0.0802376533.82058705
0x61010060155762982022-09-20 17:52:59747 days ago1663696379IN
 Create: UniswapV3PriceProviderV2
0 ETH0.0510710318.05796019

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniswapV3PriceProviderV2

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 21 : UniswapV3PriceProviderV2.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;
pragma abicoder v2;

import "@uniswap/v3-periphery/contracts/libraries/OracleLibrary.sol";
import "@uniswap/v3-core/contracts/interfaces/IUniswapV3Factory.sol";

import "../../lib/RevertBytes.sol";
import "../../utils/TwoStepOwnable.sol";
import "../PriceProvider.sol";
import "../IERC20Like.sol";

/// @title UniswapV3PriceProviderV2
/// @notice Price provider contract that reads prices from UniswapV3
contract UniswapV3PriceProviderV2 is PriceProvider, TwoStepOwnable {
    using RevertBytes for bytes;

    struct PriceCalculationData {
        // Number of seconds for which time-weighted average should be calculated, ie. 1800 means 30 min
        uint32 periodForAvgPrice;

        // Estimated blockchain block time
        uint8 blockTime;
    }

    struct PricePath {
        IUniswapV3Pool pool;
        // if target/interim token is token0, then TRUE
        bool token0IsInterim;
    }

    uint256 public constant VERSION = 2;

    bytes32 private constant _OLD_ERROR_HASH = keccak256(abi.encodeWithSignature("Error(string)", "OLD"));

    /// @dev this is basically `PriceProvider.quoteToken.decimals()`
    uint256 private immutable _QUOTE_TOKEN_DECIMALS; // solhint-disable-line var-name-mixedcase

    /// @dev block time is used to estimate the average number of blocks minted in `periodForAvgPrice`
    /// block time tends to go down (not up), temporary deviations are not important
    /// Ethereum's block time is almost never higher than ~15 sec, so in practice we shouldn't need to set it above that
    /// 60 was chosen as an arbitrary maximum just to prevent human errors
    uint256 private constant _MAX_ACCEPTED_BLOCK_TIME = 60;

    /// @dev UniswapV3 factory contract
    IUniswapV3Factory public immutable uniswapV3Factory;

    /// @dev priceCalculationData:
    /// - periodForAvgPrice: Number of seconds for which time-weighted average should be calculated, ie. 1800 is 30 min
    /// - blockTime: Estimated blockchain block time
    PriceCalculationData public priceCalculationData;

    /// @dev Maps asset address to UniswapV3 pools that create path from asset -> quote
    mapping(address => PricePath[]) private _assetPath;

    /// @notice Emitted when TWAP period changes
    /// @param period new period in seconds, ie. 1800 means 30 min
    event NewPeriod(uint32 period);

    /// @notice Emitted when blockTime changes
    /// @param blockTime block time in seconds
    event NewBlockTime(uint8 blockTime);

    /// @notice Emitted when UniV3 pool is set for asset
    /// @param asset asset address
    /// @param pools UniswapV3 pools addresses
    event PoolsForAsset(address indexed asset, IUniswapV3Pool[] pools);

    /// @param _priceProvidersRepository address of PriceProvidersRepository
    /// @param _factory UniswapV3 factory contract
    /// @param _priceCalculationData:
    /// - _periodForAvgPrice period in seconds for TWAP price, ie. 1800 means 30 min
    /// - _blockTime estimated block time, it is better to set it bit lower than higher that avg block time
    ///   eg. if ETH block time is 13~13.5s, you can set it to 12s
    constructor(
        IPriceProvidersRepository _priceProvidersRepository,
        IUniswapV3Factory _factory,
        PriceCalculationData memory _priceCalculationData
    ) PriceProvider(_priceProvidersRepository) {
        uint24 defaultFee = 500;
        // Ping for _priceProvidersRepository is not needed here, because PriceProvider does it
        if (_factory.feeAmountTickSpacing(defaultFee) == 0) revert("InvalidFactory");
        if (_priceCalculationData.periodForAvgPrice == 0) revert("InvalidPeriodForAvgPrice");

        if (
            _priceCalculationData.blockTime == 0 || _priceCalculationData.blockTime >= _MAX_ACCEPTED_BLOCK_TIME
        ) {
            revert("InvalidBlockTime");
        }

        _validatePriceCalculationData(
            _priceCalculationData.periodForAvgPrice,
            _priceCalculationData.blockTime
        );

        uniswapV3Factory = _factory;
        priceCalculationData = _priceCalculationData;

        _QUOTE_TOKEN_DECIMALS = IERC20Like(_priceProvidersRepository.quoteToken()).decimals();
    }

    /// @notice Setup pool for asset. Use it also for update, when you want to change pool for asset.
    /// Notice: pool must be ready for providing price. See `adjustOracleCardinality`.
    /// @param _asset asset address
    /// @param _pools ordered UniV3 pools addresses
    /// in case UniV3 does not have pool for asset-quote, we can provide as many intermediary pools as necessary
    /// to reach quote token eg: [pool0(asset, tokenA), pool1(tokenB, tokenA), pool2(tokenB, quote)]
    /// pools must be in the right order
    function setupAsset(address _asset, IUniswapV3Pool[] calldata _pools) external onlyManager {
        PricePath[] memory path = verifyPools(_asset, _pools);
        delete _assetPath[_asset];

        for (uint256 i; i < path.length; i++) {
            _assetPath[_asset].push(path[i]);
        }

        emit PoolsForAsset(_asset, _pools);

        // make sure getPrice does not revert
        getPrice(_asset);
    }

    /// @notice Change period for which to calculated TWAP prices
    /// @dev WARNING: when we increase this period, then UniV3 pool that is already initialized
    /// and set as oracle for asset, will not immediately adjust to new time window.
    /// We need to call `adjustOracleCardinality` and then wait for buffer to filled up.
    /// Until that happen, TWAP price will be fetched for shorter period (because of time window adjustment feature).
    /// @param _period new period in seconds, ie. 1800 means 30 min
    function changePeriodForAvgPrice(uint32 _period) external onlyManager {
        // `_period < block.timestamp` is because we making sure we do not underflow
        if (_period == 0 || _period >= block.timestamp) revert("InvalidPeriodForAvgPrice");
        if (priceCalculationData.periodForAvgPrice == _period) revert("PeriodForAvgPriceDidNotChange");

        _validatePriceCalculationData(_period, priceCalculationData.blockTime);

        priceCalculationData.periodForAvgPrice = _period;

        emit NewPeriod(_period);
    }

    /// @notice Change block time which is used to adjust oracle cardinality fot providing TWAP prices
    /// @param _blockTime it is better to set it bit lower than higher that avg block time
    /// eg. if ETH block time is 13~13.5s, you can set it to 11-12s
    /// based on `priceCalculationData.periodForAvgPrice` and `priceCalculationData.blockTime` price provider calculates
    /// number of blocks for (cardinality) requires for TWAP price. Unfortunately block time can change and this
    /// can lead to issues with getting price. Edge case will be when we set `_blockTime` to 1, then we have 100%
    /// guarantee, that no matter how real block time changes, we always can get price.
    /// Downside will be cost of initialization. That's why it is better to set a bit lower
    /// and adjust (decrease) in case of issues.
    function changeBlockTime(uint8 _blockTime) external onlyManager {
        if (_blockTime == 0 || _blockTime >= _MAX_ACCEPTED_BLOCK_TIME) revert("InvalidBlockTime");
        if (priceCalculationData.blockTime == _blockTime) revert("BlockTimeDidNotChange");

        _validatePriceCalculationData(priceCalculationData.periodForAvgPrice, _blockTime);

        priceCalculationData.blockTime = _blockTime;
        emit NewBlockTime(_blockTime);
    }

    /// @notice Adjust UniV3 pool cardinality to Silo's requirements.
    /// Call `observationsStatus` to see, if you need to execute this method.
    /// This method prepares pool for setup for price provider. In order to run `setupAsset` for asset,
    /// pool must have buffer to provide TWAP price. By calling this adjustment (and waiting necessary amount of time)
    /// pool will be ready for setup. It will collect valid number of observations, so the pool can be used
    /// once price data is ready.
    /// @dev Increases observation cardinality for univ3 oracle pool if needed, see getPrice desc for details.
    /// We should call it on init and when we are changing the pool (univ3 can have multiple pools for the same tokens)
    /// @param _pools UniV3 pools addresses, any pools, don't have to be a path for one asset
    function adjustOracleCardinality(IUniswapV3Pool[] calldata _pools) external {
        PriceCalculationData memory data = priceCalculationData;
        // ideally we want to have data at every block during periodForAvgPrice
        // If we want to get TWAP for 5 minutes and assuming we have tx in every block, and block time is 15 sec,
        // then for 5 minutes we will have 20 blocks, that means our requiredCardinality is 20.
        uint256 requiredCardinality = data.periodForAvgPrice / data.blockTime;

        for (uint256 i; i < _pools.length; i++) {
            (,,,, uint16 cardinalityNext,,) = _pools[i].slot0();

            if (cardinalityNext >= requiredCardinality) revert("NotNecessary");

            // initialize required amount of slots, it will cost!
            _pools[i].increaseObservationCardinalityNext(uint16(requiredCardinality));
        }
    }

    function pools(address _asset) external view returns (PricePath[] memory) {
        return _assetPath[_asset];
    }

    /// @inheritdoc IPriceProvider
    function assetSupported(address _asset) external view override returns (bool) {
        return _assetPath[_asset].length != 0 || _asset == quoteToken;
    }

    /// @notice This method can provide TWAP quote token price denominated in any other token
    /// it does NOT validate input pool, so you must be sure you providing correct one
    /// otherwise result will be wrong or function will throw.
    /// If pool is correct and it still throwing, please check `observationsStatus(_pool)`.
    /// @param _pool UniswapV3Pool address that can provide TWAP price and one of the tokens is native (quote) token
    function quotePrice(IUniswapV3Pool _pool) external view returns (uint256 price) {
        address base = quoteToken;
        address token0 = _pool.token0();
        address quote = base == token0 ? _pool.token1() : token0;
        uint128 baseAmount = uint128(10 ** _QUOTE_TOKEN_DECIMALS);

        int24 timeWeightedAverageTick = _consult(_pool);
        price = OracleLibrary.getQuoteAtTick(timeWeightedAverageTick, baseAmount, base, quote);
    }

    function assetOldestTimestamp(address _asset) external view returns (uint32[] memory oldestTimestamps) {
        uint256 pathLength = _assetPath[_asset].length;
        oldestTimestamps = new uint32[](pathLength);

        for (uint256 i; i < pathLength; i++) {
            (,, uint16 observationIndex, uint16 currentObservationCardinality,,,) = _assetPath[_asset][i].pool.slot0();

            oldestTimestamps[i] = resolveOldestObservationTimestamp(
                _assetPath[_asset][i].pool, observationIndex, currentObservationCardinality
            );
        }
    }

    /// @notice Check if UniV3 pool has enough cardinality to meet Silo's requirements
    /// If it does not have, please execute `adjustOracleCardinality`.
    /// @param _pool UniV3 pool address
    /// @return bufferFull TRUE if buffer is ready to provide TWAP price rof required period
    /// @return enoughObservations TRUE if buffer has enough observations spots (they don't have to be filled up yet)
    function observationsStatus(IUniswapV3Pool _pool)
        public
        view
        returns (
            bool bufferFull,
            bool enoughObservations,
            uint16 currentCardinality
        )
    {
        PriceCalculationData memory data = priceCalculationData;

        (
            ,,, uint16 currentObservationCardinality,
            uint16 observationCardinalityNext,,
        ) = _pool.slot0();

        // ideally we want to have data at every block during periodForAvgPrice
        uint256 requiredCardinality = data.periodForAvgPrice / data.blockTime;

        bufferFull = currentObservationCardinality >= requiredCardinality;
        enoughObservations = observationCardinalityNext >= requiredCardinality;
        currentCardinality = currentObservationCardinality;
     }

    /// @dev It verifies, if provider pool for asset (and quote token) is valid.
    /// Throws when there is no pool or pool is empty (zero liquidity) or not ready for price
    /// @param _asset asset for which prices are going to be calculated
    /// @param _pools ordered UniV3 pools addresses
    /// in case UniV3 does not have pool for asset-quote, we can provide as many intermediary pools as necessary
    /// to reach quote token eg: [pool0(asset, tokenA), pool1(tokenB, tokenA), pool2(tokenB, quote)]
    //// @return true if verification successful, otherwise throws
    function verifyPools(address _asset, IUniswapV3Pool[] calldata _pools)
        public
        view
        returns (PricePath[] memory path)
    {
        if (_asset == address(0)) revert("AssetIsZero");

        address fromToken = _asset;
        address interimQuote;

        path = new PricePath[](_pools.length);

        for (uint256 i; i < _pools.length; i++) {
            if (address(_pools[i]) == address(0)) revert("PoolIsZero");

            address token1 = _pools[i].token1();
            path[i].pool = _pools[i];
            path[i].token0IsInterim = fromToken == token1;

            interimQuote = path[i].token0IsInterim ? _pools[i].token0() : token1;

            _verifyPool(_pools[i], fromToken, interimQuote);

            fromToken = interimQuote;
        }

        if (interimQuote != quoteToken) revert("InterimIsNotQuote");
    }

    /// @dev UniV3 saves price only on: mint, burn and swap.
    /// Mint and burn will write observation only when "current tick is inside the passed range" of ticks.
    /// I think that means, that if we minting/burning outside ticks range  (so outside current price)
    /// it will not modify observation. So we left with swap.
    ///
    /// Swap will write observation under this condition:
    ///     // update tick and write an oracle entry if the tick change
    ///     if (state.tick != slot0Start.tick) {
    /// that means, it is possible that price will be up to date (in a range of same tick)
    /// but observation timestamp will be old.
    ///
    /// Every pool by default comes with just one slot for observation (cardinality == 1).
    /// We can increase number of slots so TWAP price will be "better".
    /// When we increase, we have to wait until new tx will write new observation.
    /// Based on all above, we can tell how old is observation, but this does not mean the price is wrong.
    /// UniV3 recommends to use `observe` and `OracleLibrary.consult` uses it.
    /// `observe` reverts if `secondsAgo` > oldest observation, means, if there is any price observation in selected
    /// time frame, it will revert. Otherwise it will return either exact TWAP price or by interpolation.
    ///
    /// Conclusion: we can choose how many observation pool will be storing, but we need to remember,
    /// not all of them might be used to provide our price. Final question is: how many observations we need?
    ///
    /// How UniV3 calculates TWAP
    /// we ask for TWAP on time range ago:now using `OracleLibrary.consult`, it is all about find the right tick
    /// - we call `IUniswapV3Pool(pool).observe(secondAgo)` that returns two accumulator values (for ago and now)
    /// - each observation is resolved by `observeSingle`
    ///   - for _now_ we just using latest observation, and if it does not match timestamp, we interpolate (!)
    ///     and this is how we got the _tickCumulative_, so in extreme situation, if last observation was made day ago,
    ///     UniV3 will interpolate to reflect _tickCumulative_ at current time
    ///   - for _ago_ we search for observation using `getSurroundingObservations` that give us
    ///     before and after observation, base on which we calculate "avg" and we have target _tickCumulative_
    ///     - getSurroundingObservations: it's job is to find 2 observations based on which we calculate tickCumulative
    ///       here is where all calculations can revert, if ago < oldest observation, otherwise it will be calculated
    ///       either by interpolation or we will have exact match
    /// - now with both _tickCumulative_s we calculating TWAP
    ///
    /// recommended observations are = 30 min / blockTime
    /// @inheritdoc IPriceProvider
    function getPrice(address _asset) public view override returns (uint256 price) {
        address quote = quoteToken;

        if (_asset == quote) {
            return 10 ** _QUOTE_TOKEN_DECIMALS;
        }

        uint256 decimals = IERC20Like(_asset).decimals();
        if (decimals > 38) revert("power overflow"); // we need 10**decimals be less than 2**128

        PricePath[] memory path = _assetPath[_asset];
        if (path.length == 0) revert("PoolNotSetForAsset");

        price = 10 ** decimals;

        if (path.length == 1) {
            return _getPrice(path[0].pool, uint128(price), _asset, quote);
        }

        address interimQuote;

        for (uint256 i; i < path.length; i++) {
            interimQuote = path[i].token0IsInterim ? path[i].pool.token0() : path[i].pool.token1();

            if (price >= type(uint128).max) revert("PriceOverflow");

            price = _getPrice(path[i].pool, uint128(price), _asset, interimQuote);

            _asset = interimQuote;
        }
    }

    /// @param _pool uniswap V3 pool address
    /// @param _currentObservationIndex the most-recently updated index of the observations array
    /// @param _currentObservationCardinality the current maximum number of observations that are being stored
    /// @return oldestTimestamp last observation timestamp
    function resolveOldestObservationTimestamp(
        IUniswapV3Pool _pool,
        uint16 _currentObservationIndex,
        uint16 _currentObservationCardinality
    )
        public
        view
        returns (uint32 oldestTimestamp)
    {
        bool initialized;

        (
            oldestTimestamp,,,
            initialized
        ) = _pool.observations((_currentObservationIndex + 1) % _currentObservationCardinality);

        // if not initialized, we just check id#0 as this will be the oldest
        if (!initialized) {
            (oldestTimestamp,,,) = _pool.observations(0);
        }
    }

    /// @dev It's run few checks on `_pool`, making sure we can use it for providing price
    /// @param _pool UniV3 pool addresses that will be verified
    /// @param _fromToken one of UniV3 pool tokens
    /// @param _targetToken one of UniV3 pool tokens
    function _verifyPool(IUniswapV3Pool _pool, address _fromToken, address _targetToken) internal view {
        if (uniswapV3Factory.getPool(_fromToken, _targetToken, _pool.fee()) != address(_pool)) {
            revert("InvalidPoolForAsset");
        }

        uint256 liquidity = IERC20Like(_targetToken).balanceOf(address(_pool));
        if (liquidity == 0) revert("EmptyPool");

        (bool bufferFull,,) = observationsStatus(_pool);
        if (!bufferFull) revert("BufferNotFull");
    }

    /// @dev Given a `_asset` amount, calculates the amount of `_denominator` token received in exchange
    /// @param _pool IUniswapV3Pool address
    /// @param _amount Amount of token to be converted
    /// @param _asset Address of an ERC20 token contract used as the baseAmount denomination
    /// @param _denominator Address of an ERC20 token contract used as the quoteAmount denomination
    /// @return quoteAmount Amount of quoteToken received for baseAmount of baseToken
    function _getPrice(IUniswapV3Pool _pool, uint128 _amount, address _asset, address _denominator)
        internal
        view
        returns (uint256 quoteAmount)
    {
        int24 timeWeightedAverageTick = _consult(_pool);
        quoteAmount = OracleLibrary.getQuoteAtTick(timeWeightedAverageTick, _amount, _asset, _denominator);
    }

    /// @notice Fetches time-weighted average tick using Uniswap V3 oracle
    /// @dev this is based on `OracleLibrary.consult`, we adjusted it to handle `OLD` error, time window will adjust
    /// to available pool observations
    /// @param _pool Address of Uniswap V3 pool that we want to observe
    /// @return timeWeightedAverageTick time-weighted average tick from (block.timestamp - period) to block.timestamp
    function _consult(IUniswapV3Pool _pool) internal view returns (int24 timeWeightedAverageTick) {
        (uint32 period, int56[] memory tickCumulatives) = _calculatePeriodAndTicks(_pool);
        int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0];

        timeWeightedAverageTick = int24(tickCumulativesDelta / period);

        // Always round to negative infinity
        if (tickCumulativesDelta < 0 && (tickCumulativesDelta % period != 0)) timeWeightedAverageTick--;
    }

    /// @param _pool Address of Uniswap V3 pool
    /// @return period Number of seconds in the past to start calculating time-weighted average
    /// @return tickCumulatives Cumulative tick values as of each secondsAgos from the current block timestamp
    function _calculatePeriodAndTicks(IUniswapV3Pool _pool)
        internal
        view
        returns (uint32 period, int56[] memory tickCumulatives)
    {
        period = priceCalculationData.periodForAvgPrice;
        bool old;

        (tickCumulatives, old) = _observe(_pool, period);

        if (old) {
            (,, uint16 observationIndex, uint16 currentObservationCardinality,,,) = _pool.slot0();

            uint32 latestTimestamp =
                resolveOldestObservationTimestamp(_pool, observationIndex, currentObservationCardinality);

            period = uint32(block.timestamp - latestTimestamp);

            (tickCumulatives, old) = _observe(_pool, period);
            if (old) revert("STILL OLD");
        }
    }

    /// @param _pool UniV3 pool address
    /// @param _period Number of seconds in the past to start calculating time-weighted average
    function _observe(IUniswapV3Pool _pool, uint32 _period)
        internal
        view
        returns (int56[] memory tickCumulatives, bool old)
    {
        uint32[] memory secondAgos = new uint32[](2);
        secondAgos[0] = _period;
        // secondAgos[1] = 0; // default is 0

        try _pool.observe(secondAgos)
            returns (int56[] memory ticks, uint160[] memory)
        {
            tickCumulatives = ticks;
            old = false;
        }
        catch (bytes memory reason) {
            if (keccak256(reason) != _OLD_ERROR_HASH) reason.revertBytes("_observe");
            old = true;
        }
    }

    function _validatePriceCalculationData(uint32 _periodForAvgPrice, uint8 _blockTime) private pure {
        uint256 requiredCardinality = _periodForAvgPrice / _blockTime;
        if (requiredCardinality > type(uint16).max) revert("InvalidRequiredCardinality");
    }
}

File 2 of 21 : OracleLibrary.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0 <0.8.0;

import '@uniswap/v3-core/contracts/libraries/FullMath.sol';
import '@uniswap/v3-core/contracts/libraries/TickMath.sol';
import '@uniswap/v3-core/contracts/interfaces/IUniswapV3Pool.sol';
import '@uniswap/v3-core/contracts/libraries/LowGasSafeMath.sol';
import '../libraries/PoolAddress.sol';

/// @title Oracle library
/// @notice Provides functions to integrate with V3 pool oracle
library OracleLibrary {
    /// @notice Fetches time-weighted average tick using Uniswap V3 oracle
    /// @param pool Address of Uniswap V3 pool that we want to observe
    /// @param period Number of seconds in the past to start calculating time-weighted average
    /// @return timeWeightedAverageTick The time-weighted average tick from (block.timestamp - period) to block.timestamp
    function consult(address pool, uint32 period) internal view returns (int24 timeWeightedAverageTick) {
        require(period != 0, 'BP');

        uint32[] memory secondAgos = new uint32[](2);
        secondAgos[0] = period;
        secondAgos[1] = 0;

        (int56[] memory tickCumulatives, ) = IUniswapV3Pool(pool).observe(secondAgos);
        int56 tickCumulativesDelta = tickCumulatives[1] - tickCumulatives[0];

        timeWeightedAverageTick = int24(tickCumulativesDelta / period);

        // Always round to negative infinity
        if (tickCumulativesDelta < 0 && (tickCumulativesDelta % period != 0)) timeWeightedAverageTick--;
    }

    /// @notice Given a tick and a token amount, calculates the amount of token received in exchange
    /// @param tick Tick value used to calculate the quote
    /// @param baseAmount Amount of token to be converted
    /// @param baseToken Address of an ERC20 token contract used as the baseAmount denomination
    /// @param quoteToken Address of an ERC20 token contract used as the quoteAmount denomination
    /// @return quoteAmount Amount of quoteToken received for baseAmount of baseToken
    function getQuoteAtTick(
        int24 tick,
        uint128 baseAmount,
        address baseToken,
        address quoteToken
    ) internal pure returns (uint256 quoteAmount) {
        uint160 sqrtRatioX96 = TickMath.getSqrtRatioAtTick(tick);

        // Calculate quoteAmount with better precision if it doesn't overflow when multiplied by itself
        if (sqrtRatioX96 <= type(uint128).max) {
            uint256 ratioX192 = uint256(sqrtRatioX96) * sqrtRatioX96;
            quoteAmount = baseToken < quoteToken
                ? FullMath.mulDiv(ratioX192, baseAmount, 1 << 192)
                : FullMath.mulDiv(1 << 192, baseAmount, ratioX192);
        } else {
            uint256 ratioX128 = FullMath.mulDiv(sqrtRatioX96, sqrtRatioX96, 1 << 64);
            quoteAmount = baseToken < quoteToken
                ? FullMath.mulDiv(ratioX128, baseAmount, 1 << 128)
                : FullMath.mulDiv(1 << 128, baseAmount, ratioX128);
        }
    }

    /// @notice Given a pool, it returns the number of seconds ago of the oldest stored observation
    /// @param pool Address of Uniswap V3 pool that we want to observe
    /// @return The number of seconds ago of the oldest observation stored for the pool
    function getOldestObservationSecondsAgo(address pool) internal view returns (uint32) {
        (, , uint16 observationIndex, uint16 observationCardinality, , , ) = IUniswapV3Pool(pool).slot0();
        require(observationCardinality > 0, 'NI');

        (uint32 observationTimestamp, , , bool initialized) =
            IUniswapV3Pool(pool).observations((observationIndex + 1) % observationCardinality);

        // The next index might not be initialized if the cardinality is in the process of increasing
        // In this case the oldest observation is always in index 0
        if (!initialized) {
            (observationTimestamp, , , ) = IUniswapV3Pool(pool).observations(0);
        }

        return uint32(block.timestamp) - observationTimestamp;
    }
}

File 3 of 21 : IUniswapV3Factory.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title The interface for the Uniswap V3 Factory
/// @notice The Uniswap V3 Factory facilitates creation of Uniswap V3 pools and control over the protocol fees
interface IUniswapV3Factory {
    /// @notice Emitted when the owner of the factory is changed
    /// @param oldOwner The owner before the owner was changed
    /// @param newOwner The owner after the owner was changed
    event OwnerChanged(address indexed oldOwner, address indexed newOwner);

    /// @notice Emitted when a pool is created
    /// @param token0 The first token of the pool by address sort order
    /// @param token1 The second token of the pool by address sort order
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks
    /// @param pool The address of the created pool
    event PoolCreated(
        address indexed token0,
        address indexed token1,
        uint24 indexed fee,
        int24 tickSpacing,
        address pool
    );

    /// @notice Emitted when a new fee amount is enabled for pool creation via the factory
    /// @param fee The enabled fee, denominated in hundredths of a bip
    /// @param tickSpacing The minimum number of ticks between initialized ticks for pools created with the given fee
    event FeeAmountEnabled(uint24 indexed fee, int24 indexed tickSpacing);

    /// @notice Returns the current owner of the factory
    /// @dev Can be changed by the current owner via setOwner
    /// @return The address of the factory owner
    function owner() external view returns (address);

    /// @notice Returns the tick spacing for a given fee amount, if enabled, or 0 if not enabled
    /// @dev A fee amount can never be removed, so this value should be hard coded or cached in the calling context
    /// @param fee The enabled fee, denominated in hundredths of a bip. Returns 0 in case of unenabled fee
    /// @return The tick spacing
    function feeAmountTickSpacing(uint24 fee) external view returns (int24);

    /// @notice Returns the pool address for a given pair of tokens and a fee, or address 0 if it does not exist
    /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order
    /// @param tokenA The contract address of either token0 or token1
    /// @param tokenB The contract address of the other token
    /// @param fee The fee collected upon every swap in the pool, denominated in hundredths of a bip
    /// @return pool The pool address
    function getPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external view returns (address pool);

    /// @notice Creates a pool for the given two tokens and fee
    /// @param tokenA One of the two tokens in the desired pool
    /// @param tokenB The other of the two tokens in the desired pool
    /// @param fee The desired fee for the pool
    /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. tickSpacing is retrieved
    /// from the fee. The call will revert if the pool already exists, the fee is invalid, or the token arguments
    /// are invalid.
    /// @return pool The address of the newly created pool
    function createPool(
        address tokenA,
        address tokenB,
        uint24 fee
    ) external returns (address pool);

    /// @notice Updates the owner of the factory
    /// @dev Must be called by the current owner
    /// @param _owner The new owner of the factory
    function setOwner(address _owner) external;

    /// @notice Enables a fee amount with the given tickSpacing
    /// @dev Fee amounts may never be removed once enabled
    /// @param fee The fee amount to enable, denominated in hundredths of a bip (i.e. 1e-6)
    /// @param tickSpacing The spacing between ticks to be enforced for all pools created with the given fee amount
    function enableFeeAmount(uint24 fee, int24 tickSpacing) external;
}

File 4 of 21 : RevertBytes.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <=0.9.0;

library RevertBytes {
    function revertBytes(bytes memory _errMsg, string memory _customErr) internal pure {
        if (_errMsg.length > 0) {
            assembly { // solhint-disable-line no-inline-assembly
                revert(add(32, _errMsg), mload(_errMsg))
            }
        }

        revert(_customErr);
    }
}

File 5 of 21 : TwoStepOwnable.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <0.9.0;

/// @title TwoStepOwnable
/// @notice Contract that implements the same functionality as popular Ownable contract from openzeppelin library.
/// The only difference is that it adds a possibility to transfer ownership in two steps. Single step ownership
/// transfer is still supported.
/// @dev Two step ownership transfer is meant to be used by humans to avoid human error. Single step ownership
/// transfer is meant to be used by smart contracts to avoid over-complicated two step integration. For that reason,
/// both ways are supported.
abstract contract TwoStepOwnable {
    /// @dev current owner
    address private _owner;
    /// @dev candidate to an owner
    address private _pendingOwner;

    /// @notice Emitted when ownership is transferred on `transferOwnership` and `acceptOwnership`
    /// @param newOwner new owner
    event OwnershipTransferred(address indexed newOwner);
    /// @notice Emitted when ownership transfer is proposed, aka pending owner is set
    /// @param newPendingOwner new proposed/pending owner
    event OwnershipPending(address indexed newPendingOwner);

    /**
     *  error OnlyOwner();
     *  error OnlyPendingOwner();
     *  error OwnerIsZero();
     */

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        if (owner() != msg.sender) revert("OnlyOwner");
        _;
    }

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(msg.sender);
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _setOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        if (newOwner == address(0)) revert("OwnerIsZero");
        _setOwner(newOwner);
    }

    /**
     * @dev Transfers pending ownership of the contract to a new account (`newPendingOwner`) and clears any existing
     * pending ownership.
     * Can only be called by the current owner.
     */
    function transferPendingOwnership(address newPendingOwner) public virtual onlyOwner {
        _setPendingOwner(newPendingOwner);
    }

    /**
     * @dev Clears the pending ownership.
     * Can only be called by the current owner.
     */
    function removePendingOwnership() public virtual onlyOwner {
        _setPendingOwner(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a pending owner
     * Can only be called by the pending owner.
     */
    function acceptOwnership() public virtual {
        if (msg.sender != pendingOwner()) revert("OnlyPendingOwner");
        _setOwner(pendingOwner());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Returns the address of the pending owner.
     */
    function pendingOwner() public view virtual returns (address) {
        return _pendingOwner;
    }

    /**
     * @dev Sets the new owner and emits the corresponding event.
     */
    function _setOwner(address newOwner) private {
        if (_owner == newOwner) revert("OwnerDidNotChange");

        _owner = newOwner;
        emit OwnershipTransferred(newOwner);

        if (_pendingOwner != address(0)) {
            _setPendingOwner(address(0));
        }
    }

    /**
     * @dev Sets the new pending owner and emits the corresponding event.
     */
    function _setPendingOwner(address newPendingOwner) private {
        if (_pendingOwner == newPendingOwner) revert("PendingOwnerDidNotChange");

        _pendingOwner = newPendingOwner;
        emit OwnershipPending(newPendingOwner);
    }
}

File 6 of 21 : PriceProvider.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <0.9.0;

import "../lib/Ping.sol";
import "../interfaces/IPriceProvider.sol";
import "../interfaces/IPriceProvidersRepository.sol";

/// @title PriceProvider
/// @notice Abstract PriceProvider contract, parent of all PriceProviders
/// @dev Price provider is a contract that directly integrates with a price source, ie. a DEX or alternative system
/// like Chainlink to calculate TWAP prices for assets. Each price provider should support a single price source
/// and multiple assets.
abstract contract PriceProvider is IPriceProvider {
    /// @notice PriceProvidersRepository address
    IPriceProvidersRepository public immutable priceProvidersRepository;

    /// @notice Token address which prices are quoted in. Must be the same as PriceProvidersRepository.quoteToken
    address public immutable override quoteToken;

    modifier onlyManager() {
        if (priceProvidersRepository.manager() != msg.sender) revert("OnlyManager");
        _;
    }

    /// @param _priceProvidersRepository address of PriceProvidersRepository
    constructor(IPriceProvidersRepository _priceProvidersRepository) {
        if (
            !Ping.pong(_priceProvidersRepository.priceProvidersRepositoryPing)            
        ) {
            revert("InvalidPriceProviderRepository");
        }

        priceProvidersRepository = _priceProvidersRepository;
        quoteToken = _priceProvidersRepository.quoteToken();
    }

    /// @inheritdoc IPriceProvider
    function priceProviderPing() external pure override returns (bytes4) {
        return this.priceProviderPing.selector;
    }

    function _revertBytes(bytes memory _errMsg, string memory _customErr) internal pure {
        if (_errMsg.length > 0) {
            assembly { // solhint-disable-line no-inline-assembly
                revert(add(32, _errMsg), mload(_errMsg))
            }
        }

        revert(_customErr);
    }
}

File 7 of 21 : IERC20Like.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity 0.7.6;

/// @dev This is only meant to be used by price providers, which use a different
/// Solidity version than the rest of the codebase. This way de won't need to include
/// an additional version of OpenZeppelin's library.
interface IERC20Like {
    function decimals() external view returns (uint8);
    function balanceOf(address) external view returns(uint256);
}

File 8 of 21 : FullMath.sol
// SPDX-License-Identifier: MIT
pragma solidity >=0.4.0;

/// @title Contains 512-bit math functions
/// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision
/// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits
library FullMath {
    /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv
    function mulDiv(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        // 512-bit multiply [prod1 prod0] = a * b
        // Compute the product mod 2**256 and mod 2**256 - 1
        // then use the Chinese Remainder Theorem to reconstruct
        // the 512 bit result. The result is stored in two 256
        // variables such that product = prod1 * 2**256 + prod0
        uint256 prod0; // Least significant 256 bits of the product
        uint256 prod1; // Most significant 256 bits of the product
        assembly {
            let mm := mulmod(a, b, not(0))
            prod0 := mul(a, b)
            prod1 := sub(sub(mm, prod0), lt(mm, prod0))
        }

        // Handle non-overflow cases, 256 by 256 division
        if (prod1 == 0) {
            require(denominator > 0);
            assembly {
                result := div(prod0, denominator)
            }
            return result;
        }

        // Make sure the result is less than 2**256.
        // Also prevents denominator == 0
        require(denominator > prod1);

        ///////////////////////////////////////////////
        // 512 by 256 division.
        ///////////////////////////////////////////////

        // Make division exact by subtracting the remainder from [prod1 prod0]
        // Compute remainder using mulmod
        uint256 remainder;
        assembly {
            remainder := mulmod(a, b, denominator)
        }
        // Subtract 256 bit number from 512 bit number
        assembly {
            prod1 := sub(prod1, gt(remainder, prod0))
            prod0 := sub(prod0, remainder)
        }

        // Factor powers of two out of denominator
        // Compute largest power of two divisor of denominator.
        // Always >= 1.
        uint256 twos = -denominator & denominator;
        // Divide denominator by power of two
        assembly {
            denominator := div(denominator, twos)
        }

        // Divide [prod1 prod0] by the factors of two
        assembly {
            prod0 := div(prod0, twos)
        }
        // Shift in bits from prod1 into prod0. For this we need
        // to flip `twos` such that it is 2**256 / twos.
        // If twos is zero, then it becomes one
        assembly {
            twos := add(div(sub(0, twos), twos), 1)
        }
        prod0 |= prod1 * twos;

        // Invert denominator mod 2**256
        // Now that denominator is an odd number, it has an inverse
        // modulo 2**256 such that denominator * inv = 1 mod 2**256.
        // Compute the inverse by starting with a seed that is correct
        // correct for four bits. That is, denominator * inv = 1 mod 2**4
        uint256 inv = (3 * denominator) ^ 2;
        // Now use Newton-Raphson iteration to improve the precision.
        // Thanks to Hensel's lifting lemma, this also works in modular
        // arithmetic, doubling the correct bits in each step.
        inv *= 2 - denominator * inv; // inverse mod 2**8
        inv *= 2 - denominator * inv; // inverse mod 2**16
        inv *= 2 - denominator * inv; // inverse mod 2**32
        inv *= 2 - denominator * inv; // inverse mod 2**64
        inv *= 2 - denominator * inv; // inverse mod 2**128
        inv *= 2 - denominator * inv; // inverse mod 2**256

        // Because the division is now exact we can divide by multiplying
        // with the modular inverse of denominator. This will give us the
        // correct result modulo 2**256. Since the precoditions guarantee
        // that the outcome is less than 2**256, this is the final result.
        // We don't need to compute the high bits of the result and prod1
        // is no longer required.
        result = prod0 * inv;
        return result;
    }

    /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
    /// @param a The multiplicand
    /// @param b The multiplier
    /// @param denominator The divisor
    /// @return result The 256-bit result
    function mulDivRoundingUp(
        uint256 a,
        uint256 b,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        result = mulDiv(a, b, denominator);
        if (mulmod(a, b, denominator) > 0) {
            require(result < type(uint256).max);
            result++;
        }
    }
}

File 9 of 21 : TickMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Math library for computing sqrt prices from ticks and vice versa
/// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports
/// prices between 2**-128 and 2**128
library TickMath {
    /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128
    int24 internal constant MIN_TICK = -887272;
    /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128
    int24 internal constant MAX_TICK = -MIN_TICK;

    /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK)
    uint160 internal constant MIN_SQRT_RATIO = 4295128739;
    /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK)
    uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342;

    /// @notice Calculates sqrt(1.0001^tick) * 2^96
    /// @dev Throws if |tick| > max tick
    /// @param tick The input tick for the above formula
    /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0)
    /// at the given tick
    function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) {
        uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick));
        require(absTick <= uint256(MAX_TICK), 'T');

        uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000;
        if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128;
        if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128;
        if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128;
        if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128;
        if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128;
        if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128;
        if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128;
        if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128;
        if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128;
        if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128;
        if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128;
        if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128;
        if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128;
        if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128;
        if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128;
        if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128;
        if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128;
        if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128;
        if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128;

        if (tick > 0) ratio = type(uint256).max / ratio;

        // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96.
        // we then downcast because we know the result always fits within 160 bits due to our tick input constraint
        // we round up in the division so getTickAtSqrtRatio of the output price is always consistent
        sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1));
    }

    /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio
    /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may
    /// ever return.
    /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96
    /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio
    function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) {
        // second inequality must be < because the price can never reach the price at the max tick
        require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, 'R');
        uint256 ratio = uint256(sqrtPriceX96) << 32;

        uint256 r = ratio;
        uint256 msb = 0;

        assembly {
            let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(5, gt(r, 0xFFFFFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(4, gt(r, 0xFFFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(3, gt(r, 0xFF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(2, gt(r, 0xF))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := shl(1, gt(r, 0x3))
            msb := or(msb, f)
            r := shr(f, r)
        }
        assembly {
            let f := gt(r, 0x1)
            msb := or(msb, f)
        }

        if (msb >= 128) r = ratio >> (msb - 127);
        else r = ratio << (127 - msb);

        int256 log_2 = (int256(msb) - 128) << 64;

        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(63, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(62, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(61, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(60, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(59, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(58, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(57, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(56, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(55, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(54, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(53, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(52, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(51, f))
            r := shr(f, r)
        }
        assembly {
            r := shr(127, mul(r, r))
            let f := shr(128, r)
            log_2 := or(log_2, shl(50, f))
        }

        int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number

        int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128);
        int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128);

        tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow;
    }
}

File 10 of 21 : IUniswapV3Pool.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

import './pool/IUniswapV3PoolImmutables.sol';
import './pool/IUniswapV3PoolState.sol';
import './pool/IUniswapV3PoolDerivedState.sol';
import './pool/IUniswapV3PoolActions.sol';
import './pool/IUniswapV3PoolOwnerActions.sol';
import './pool/IUniswapV3PoolEvents.sol';

/// @title The interface for a Uniswap V3 Pool
/// @notice A Uniswap pool facilitates swapping and automated market making between any two assets that strictly conform
/// to the ERC20 specification
/// @dev The pool interface is broken up into many smaller pieces
interface IUniswapV3Pool is
    IUniswapV3PoolImmutables,
    IUniswapV3PoolState,
    IUniswapV3PoolDerivedState,
    IUniswapV3PoolActions,
    IUniswapV3PoolOwnerActions,
    IUniswapV3PoolEvents
{

}

File 11 of 21 : LowGasSafeMath.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.7.0;

/// @title Optimized overflow and underflow safe math operations
/// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost
library LowGasSafeMath {
    /// @notice Returns x + y, reverts if sum overflows uint256
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x + y) >= x);
    }

    /// @notice Returns x - y, reverts if underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require((z = x - y) <= x);
    }

    /// @notice Returns x * y, reverts if overflows
    /// @param x The multiplicand
    /// @param y The multiplier
    /// @return z The product of x and y
    function mul(uint256 x, uint256 y) internal pure returns (uint256 z) {
        require(x == 0 || (z = x * y) / x == y);
    }

    /// @notice Returns x + y, reverts if overflows or underflows
    /// @param x The augend
    /// @param y The addend
    /// @return z The sum of x and y
    function add(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x + y) >= x == (y >= 0));
    }

    /// @notice Returns x - y, reverts if overflows or underflows
    /// @param x The minuend
    /// @param y The subtrahend
    /// @return z The difference of x and y
    function sub(int256 x, int256 y) internal pure returns (int256 z) {
        require((z = x - y) <= x == (y >= 0));
    }
}

File 12 of 21 : PoolAddress.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Provides functions for deriving a pool address from the factory, tokens, and the fee
library PoolAddress {
    bytes32 internal constant POOL_INIT_CODE_HASH = 0xe34f199b19b2b4f47f68442619d555527d244f78a3297ea89325f843f87b8b54;

    /// @notice The identifying key of the pool
    struct PoolKey {
        address token0;
        address token1;
        uint24 fee;
    }

    /// @notice Returns PoolKey: the ordered tokens with the matched fee levels
    /// @param tokenA The first token of a pool, unsorted
    /// @param tokenB The second token of a pool, unsorted
    /// @param fee The fee level of the pool
    /// @return Poolkey The pool details with ordered token0 and token1 assignments
    function getPoolKey(
        address tokenA,
        address tokenB,
        uint24 fee
    ) internal pure returns (PoolKey memory) {
        if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA);
        return PoolKey({token0: tokenA, token1: tokenB, fee: fee});
    }

    /// @notice Deterministically computes the pool address given the factory and PoolKey
    /// @param factory The Uniswap V3 factory contract address
    /// @param key The PoolKey
    /// @return pool The contract address of the V3 pool
    function computeAddress(address factory, PoolKey memory key) internal pure returns (address pool) {
        require(key.token0 < key.token1);
        pool = address(
            uint256(
                keccak256(
                    abi.encodePacked(
                        hex'ff',
                        factory,
                        keccak256(abi.encode(key.token0, key.token1, key.fee)),
                        POOL_INIT_CODE_HASH
                    )
                )
            )
        );
    }
}

File 13 of 21 : IUniswapV3PoolImmutables.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that never changes
/// @notice These parameters are fixed for a pool forever, i.e., the methods will always return the same values
interface IUniswapV3PoolImmutables {
    /// @notice The contract that deployed the pool, which must adhere to the IUniswapV3Factory interface
    /// @return The contract address
    function factory() external view returns (address);

    /// @notice The first of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token0() external view returns (address);

    /// @notice The second of the two tokens of the pool, sorted by address
    /// @return The token contract address
    function token1() external view returns (address);

    /// @notice The pool's fee in hundredths of a bip, i.e. 1e-6
    /// @return The fee
    function fee() external view returns (uint24);

    /// @notice The pool tick spacing
    /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive
    /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ...
    /// This value is an int24 to avoid casting even though it is always positive.
    /// @return The tick spacing
    function tickSpacing() external view returns (int24);

    /// @notice The maximum amount of position liquidity that can use any tick in the range
    /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and
    /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool
    /// @return The max amount of liquidity per tick
    function maxLiquidityPerTick() external view returns (uint128);
}

File 14 of 21 : IUniswapV3PoolState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that can change
/// @notice These methods compose the pool's state, and can change with any frequency including multiple times
/// per transaction
interface IUniswapV3PoolState {
    /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas
    /// when accessed externally.
    /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value
    /// tick The current tick of the pool, i.e. according to the last tick transition that was run.
    /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick
    /// boundary.
    /// observationIndex The index of the last oracle observation that was written,
    /// observationCardinality The current maximum number of observations stored in the pool,
    /// observationCardinalityNext The next maximum number of observations, to be updated when the observation.
    /// feeProtocol The protocol fee for both tokens of the pool.
    /// Encoded as two 4 bit values, where the protocol fee of token1 is shifted 4 bits and the protocol fee of token0
    /// is the lower 4 bits. Used as the denominator of a fraction of the swap fee, e.g. 4 means 1/4th of the swap fee.
    /// unlocked Whether the pool is currently locked to reentrancy
    function slot0()
        external
        view
        returns (
            uint160 sqrtPriceX96,
            int24 tick,
            uint16 observationIndex,
            uint16 observationCardinality,
            uint16 observationCardinalityNext,
            uint8 feeProtocol,
            bool unlocked
        );

    /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal0X128() external view returns (uint256);

    /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool
    /// @dev This value can overflow the uint256
    function feeGrowthGlobal1X128() external view returns (uint256);

    /// @notice The amounts of token0 and token1 that are owed to the protocol
    /// @dev Protocol fees will never exceed uint128 max in either token
    function protocolFees() external view returns (uint128 token0, uint128 token1);

    /// @notice The currently in range liquidity available to the pool
    /// @dev This value has no relationship to the total liquidity across all ticks
    function liquidity() external view returns (uint128);

    /// @notice Look up information about a specific tick in the pool
    /// @param tick The tick to look up
    /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or
    /// tick upper,
    /// liquidityNet how much liquidity changes when the pool price crosses the tick,
    /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0,
    /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1,
    /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick
    /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick,
    /// secondsOutside the seconds spent on the other side of the tick from the current tick,
    /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false.
    /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0.
    /// In addition, these values are only relative and must be used only in comparison to previous snapshots for
    /// a specific position.
    function ticks(int24 tick)
        external
        view
        returns (
            uint128 liquidityGross,
            int128 liquidityNet,
            uint256 feeGrowthOutside0X128,
            uint256 feeGrowthOutside1X128,
            int56 tickCumulativeOutside,
            uint160 secondsPerLiquidityOutsideX128,
            uint32 secondsOutside,
            bool initialized
        );

    /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information
    function tickBitmap(int16 wordPosition) external view returns (uint256);

    /// @notice Returns the information about a position by the position's key
    /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper
    /// @return _liquidity The amount of liquidity in the position,
    /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke,
    /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke,
    /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke,
    /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke
    function positions(bytes32 key)
        external
        view
        returns (
            uint128 _liquidity,
            uint256 feeGrowthInside0LastX128,
            uint256 feeGrowthInside1LastX128,
            uint128 tokensOwed0,
            uint128 tokensOwed1
        );

    /// @notice Returns data about a specific observation index
    /// @param index The element of the observations array to fetch
    /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time
    /// ago, rather than at a specific index in the array.
    /// @return blockTimestamp The timestamp of the observation,
    /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp,
    /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp,
    /// Returns initialized whether the observation has been initialized and the values are safe to use
    function observations(uint256 index)
        external
        view
        returns (
            uint32 blockTimestamp,
            int56 tickCumulative,
            uint160 secondsPerLiquidityCumulativeX128,
            bool initialized
        );
}

File 15 of 21 : IUniswapV3PoolDerivedState.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Pool state that is not stored
/// @notice Contains view functions to provide information about the pool that is computed rather than stored on the
/// blockchain. The functions here may have variable gas costs.
interface IUniswapV3PoolDerivedState {
    /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp
    /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing
    /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick,
    /// you must call it with secondsAgos = [3600, 0].
    /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in
    /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio.
    /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned
    /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp
    /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block
    /// timestamp
    function observe(uint32[] calldata secondsAgos)
        external
        view
        returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s);

    /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range
    /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed.
    /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first
    /// snapshot is taken and the second snapshot is taken.
    /// @param tickLower The lower tick of the range
    /// @param tickUpper The upper tick of the range
    /// @return tickCumulativeInside The snapshot of the tick accumulator for the range
    /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range
    /// @return secondsInside The snapshot of seconds per liquidity for the range
    function snapshotCumulativesInside(int24 tickLower, int24 tickUpper)
        external
        view
        returns (
            int56 tickCumulativeInside,
            uint160 secondsPerLiquidityInsideX128,
            uint32 secondsInside
        );
}

File 16 of 21 : IUniswapV3PoolActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissionless pool actions
/// @notice Contains pool methods that can be called by anyone
interface IUniswapV3PoolActions {
    /// @notice Sets the initial price for the pool
    /// @dev Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value
    /// @param sqrtPriceX96 the initial sqrt price of the pool as a Q64.96
    function initialize(uint160 sqrtPriceX96) external;

    /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position
    /// @dev The caller of this method receives a callback in the form of IUniswapV3MintCallback#uniswapV3MintCallback
    /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends
    /// on tickLower, tickUpper, the amount of liquidity, and the current price.
    /// @param recipient The address for which the liquidity will be created
    /// @param tickLower The lower tick of the position in which to add liquidity
    /// @param tickUpper The upper tick of the position in which to add liquidity
    /// @param amount The amount of liquidity to mint
    /// @param data Any data that should be passed through to the callback
    /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback
    /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback
    function mint(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount,
        bytes calldata data
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Collects tokens owed to a position
    /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity.
    /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or
    /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the
    /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity.
    /// @param recipient The address which should receive the fees collected
    /// @param tickLower The lower tick of the position for which to collect fees
    /// @param tickUpper The upper tick of the position for which to collect fees
    /// @param amount0Requested How much token0 should be withdrawn from the fees owed
    /// @param amount1Requested How much token1 should be withdrawn from the fees owed
    /// @return amount0 The amount of fees collected in token0
    /// @return amount1 The amount of fees collected in token1
    function collect(
        address recipient,
        int24 tickLower,
        int24 tickUpper,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);

    /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position
    /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0
    /// @dev Fees must be collected separately via a call to #collect
    /// @param tickLower The lower tick of the position for which to burn liquidity
    /// @param tickUpper The upper tick of the position for which to burn liquidity
    /// @param amount How much liquidity to burn
    /// @return amount0 The amount of token0 sent to the recipient
    /// @return amount1 The amount of token1 sent to the recipient
    function burn(
        int24 tickLower,
        int24 tickUpper,
        uint128 amount
    ) external returns (uint256 amount0, uint256 amount1);

    /// @notice Swap token0 for token1, or token1 for token0
    /// @dev The caller of this method receives a callback in the form of IUniswapV3SwapCallback#uniswapV3SwapCallback
    /// @param recipient The address to receive the output of the swap
    /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0
    /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative)
    /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this
    /// value after the swap. If one for zero, the price cannot be greater than this value after the swap
    /// @param data Any data to be passed through to the callback
    /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive
    /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive
    function swap(
        address recipient,
        bool zeroForOne,
        int256 amountSpecified,
        uint160 sqrtPriceLimitX96,
        bytes calldata data
    ) external returns (int256 amount0, int256 amount1);

    /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback
    /// @dev The caller of this method receives a callback in the form of IUniswapV3FlashCallback#uniswapV3FlashCallback
    /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling
    /// with 0 amount{0,1} and sending the donation amount(s) from the callback
    /// @param recipient The address which will receive the token0 and token1 amounts
    /// @param amount0 The amount of token0 to send
    /// @param amount1 The amount of token1 to send
    /// @param data Any data to be passed through to the callback
    function flash(
        address recipient,
        uint256 amount0,
        uint256 amount1,
        bytes calldata data
    ) external;

    /// @notice Increase the maximum number of price and liquidity observations that this pool will store
    /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to
    /// the input observationCardinalityNext.
    /// @param observationCardinalityNext The desired minimum number of observations for the pool to store
    function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external;
}

File 17 of 21 : IUniswapV3PoolOwnerActions.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Permissioned pool actions
/// @notice Contains pool methods that may only be called by the factory owner
interface IUniswapV3PoolOwnerActions {
    /// @notice Set the denominator of the protocol's % share of the fees
    /// @param feeProtocol0 new protocol fee for token0 of the pool
    /// @param feeProtocol1 new protocol fee for token1 of the pool
    function setFeeProtocol(uint8 feeProtocol0, uint8 feeProtocol1) external;

    /// @notice Collect the protocol fee accrued to the pool
    /// @param recipient The address to which collected protocol fees should be sent
    /// @param amount0Requested The maximum amount of token0 to send, can be 0 to collect fees in only token1
    /// @param amount1Requested The maximum amount of token1 to send, can be 0 to collect fees in only token0
    /// @return amount0 The protocol fee collected in token0
    /// @return amount1 The protocol fee collected in token1
    function collectProtocol(
        address recipient,
        uint128 amount0Requested,
        uint128 amount1Requested
    ) external returns (uint128 amount0, uint128 amount1);
}

File 18 of 21 : IUniswapV3PoolEvents.sol
// SPDX-License-Identifier: GPL-2.0-or-later
pragma solidity >=0.5.0;

/// @title Events emitted by a pool
/// @notice Contains all events emitted by the pool
interface IUniswapV3PoolEvents {
    /// @notice Emitted exactly once by a pool when #initialize is first called on the pool
    /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize
    /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96
    /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool
    event Initialize(uint160 sqrtPriceX96, int24 tick);

    /// @notice Emitted when liquidity is minted for a given position
    /// @param sender The address that minted the liquidity
    /// @param owner The owner of the position and recipient of any minted liquidity
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity minted to the position range
    /// @param amount0 How much token0 was required for the minted liquidity
    /// @param amount1 How much token1 was required for the minted liquidity
    event Mint(
        address sender,
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted when fees are collected by the owner of a position
    /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees
    /// @param owner The owner of the position for which fees are collected
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount0 The amount of token0 fees collected
    /// @param amount1 The amount of token1 fees collected
    event Collect(
        address indexed owner,
        address recipient,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount0,
        uint128 amount1
    );

    /// @notice Emitted when a position's liquidity is removed
    /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect
    /// @param owner The owner of the position for which liquidity is removed
    /// @param tickLower The lower tick of the position
    /// @param tickUpper The upper tick of the position
    /// @param amount The amount of liquidity to remove
    /// @param amount0 The amount of token0 withdrawn
    /// @param amount1 The amount of token1 withdrawn
    event Burn(
        address indexed owner,
        int24 indexed tickLower,
        int24 indexed tickUpper,
        uint128 amount,
        uint256 amount0,
        uint256 amount1
    );

    /// @notice Emitted by the pool for any swaps between token0 and token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the output of the swap
    /// @param amount0 The delta of the token0 balance of the pool
    /// @param amount1 The delta of the token1 balance of the pool
    /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96
    /// @param liquidity The liquidity of the pool after the swap
    /// @param tick The log base 1.0001 of price of the pool after the swap
    event Swap(
        address indexed sender,
        address indexed recipient,
        int256 amount0,
        int256 amount1,
        uint160 sqrtPriceX96,
        uint128 liquidity,
        int24 tick
    );

    /// @notice Emitted by the pool for any flashes of token0/token1
    /// @param sender The address that initiated the swap call, and that received the callback
    /// @param recipient The address that received the tokens from flash
    /// @param amount0 The amount of token0 that was flashed
    /// @param amount1 The amount of token1 that was flashed
    /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee
    /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee
    event Flash(
        address indexed sender,
        address indexed recipient,
        uint256 amount0,
        uint256 amount1,
        uint256 paid0,
        uint256 paid1
    );

    /// @notice Emitted by the pool for increases to the number of observations that can be stored
    /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index
    /// just before a mint/swap/burn.
    /// @param observationCardinalityNextOld The previous value of the next observation cardinality
    /// @param observationCardinalityNextNew The updated value of the next observation cardinality
    event IncreaseObservationCardinalityNext(
        uint16 observationCardinalityNextOld,
        uint16 observationCardinalityNextNew
    );

    /// @notice Emitted when the protocol fee is changed by the pool
    /// @param feeProtocol0Old The previous value of the token0 protocol fee
    /// @param feeProtocol1Old The previous value of the token1 protocol fee
    /// @param feeProtocol0New The updated value of the token0 protocol fee
    /// @param feeProtocol1New The updated value of the token1 protocol fee
    event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New);

    /// @notice Emitted when the collected protocol fees are withdrawn by the factory owner
    /// @param sender The address that collects the protocol fees
    /// @param recipient The address that receives the collected protocol fees
    /// @param amount0 The amount of token0 protocol fees that is withdrawn
    /// @param amount0 The amount of token1 protocol fees that is withdrawn
    event CollectProtocol(address indexed sender, address indexed recipient, uint128 amount0, uint128 amount1);
}

File 19 of 21 : Ping.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <0.9.0;


library Ping {
    function pong(function() external pure returns(bytes4) pingFunction) internal pure returns (bool) {
        return pingFunction.address != address(0) && pingFunction.selector == pingFunction();
    }
}

File 20 of 21 : IPriceProvider.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <0.9.0;

/// @title Common interface for Silo Price Providers
interface IPriceProvider {
    /// @notice Returns "Time-Weighted Average Price" for an asset. Calculates TWAP price for quote/asset.
    /// It unifies all tokens decimal to 18, examples:
    /// - if asses == quote it returns 1e18
    /// - if asset is USDC and quote is ETH and ETH costs ~$3300 then it returns ~0.0003e18 WETH per 1 USDC
    /// @param _asset address of an asset for which to read price
    /// @return price of asses with 18 decimals, throws when pool is not ready yet to provide price
    function getPrice(address _asset) external view returns (uint256 price);

    /// @dev Informs if PriceProvider is setup for asset. It does not means PriceProvider can provide price right away.
    /// Some providers implementations need time to "build" buffer for TWAP price,
    /// so price may not be available yet but this method will return true.
    /// @param _asset asset in question
    /// @return TRUE if asset has been setup, otherwise false
    function assetSupported(address _asset) external view returns (bool);

    /// @notice Gets token address in which prices are quoted
    /// @return quoteToken address
    function quoteToken() external view returns (address);

    /// @notice Helper method that allows easily detects, if contract is PriceProvider
    /// @dev this can save us from simple human errors, in case we use invalid address
    /// but this should NOT be treated as security check
    /// @return always true
    function priceProviderPing() external pure returns (bytes4);
}

File 21 of 21 : IPriceProvidersRepository.sol
// SPDX-License-Identifier: BUSL-1.1
pragma solidity >=0.7.6 <0.9.0;

import "./IPriceProvider.sol";

interface IPriceProvidersRepository {
    /// @notice Emitted when price provider is added
    /// @param newPriceProvider new price provider address
    event NewPriceProvider(IPriceProvider indexed newPriceProvider);

    /// @notice Emitted when price provider is removed
    /// @param priceProvider removed price provider address
    event PriceProviderRemoved(IPriceProvider indexed priceProvider);

    /// @notice Emitted when asset is assigned to price provider
    /// @param asset assigned asset   address
    /// @param priceProvider price provider address
    event PriceProviderForAsset(address indexed asset, IPriceProvider indexed priceProvider);

    /// @notice Register new price provider
    /// @param _priceProvider address of price provider
    function addPriceProvider(IPriceProvider _priceProvider) external;

    /// @notice Unregister price provider
    /// @param _priceProvider address of price provider to be removed
    function removePriceProvider(IPriceProvider _priceProvider) external;

    /// @notice Sets price provider for asset
    /// @dev Request for asset price is forwarded to the price provider assigned to that asset
    /// @param _asset address of an asset for which price provider will be used
    /// @param _priceProvider address of price provider
    function setPriceProviderForAsset(address _asset, IPriceProvider _priceProvider) external;

    /// @notice Returns "Time-Weighted Average Price" for an asset
    /// @param _asset address of an asset for which to read price
    /// @return price TWAP price of a token with 18 decimals
    function getPrice(address _asset) external view returns (uint256 price);

    /// @notice Gets price provider assigned to an asset
    /// @param _asset address of an asset for which to get price provider
    /// @return priceProvider address of price provider
    function priceProviders(address _asset) external view returns (IPriceProvider priceProvider);

    /// @notice Gets token address in which prices are quoted
    /// @return quoteToken address
    function quoteToken() external view returns (address);

    /// @notice Gets manager role address
    /// @return manager role address
    function manager() external view returns (address);

    /// @notice Checks if providers are available for an asset
    /// @param _asset asset address to check
    /// @return returns TRUE if price feed is ready, otherwise false
    function providersReadyForAsset(address _asset) external view returns (bool);

    /// @notice Returns true if address is a registered price provider
    /// @param _provider address of price provider to be removed
    /// @return true if address is a registered price provider, otherwise false
    function isPriceProvider(IPriceProvider _provider) external view returns (bool);

    /// @notice Gets number of price providers registered
    /// @return number of price providers registered
    function providersCount() external view returns (uint256);

    /// @notice Gets an array of price providers
    /// @return array of price providers
    function providerList() external view returns (address[] memory);

    /// @notice Sanity check function
    /// @return returns always TRUE
    function priceProvidersRepositoryPing() external pure returns (bytes4);
}

Settings
{
  "optimizer": {
    "enabled": true,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"contract IPriceProvidersRepository","name":"_priceProvidersRepository","type":"address"},{"internalType":"contract IUniswapV3Factory","name":"_factory","type":"address"},{"components":[{"internalType":"uint32","name":"periodForAvgPrice","type":"uint32"},{"internalType":"uint8","name":"blockTime","type":"uint8"}],"internalType":"struct UniswapV3PriceProviderV2.PriceCalculationData","name":"_priceCalculationData","type":"tuple"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"blockTime","type":"uint8"}],"name":"NewBlockTime","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint32","name":"period","type":"uint32"}],"name":"NewPeriod","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"OwnershipPending","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"asset","type":"address"},{"indexed":false,"internalType":"contract IUniswapV3Pool[]","name":"pools","type":"address[]"}],"name":"PoolsForAsset","type":"event"},{"inputs":[],"name":"VERSION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV3Pool[]","name":"_pools","type":"address[]"}],"name":"adjustOracleCardinality","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"assetOldestTimestamp","outputs":[{"internalType":"uint32[]","name":"oldestTimestamps","type":"uint32[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"assetSupported","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"_blockTime","type":"uint8"}],"name":"changeBlockTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint32","name":"_period","type":"uint32"}],"name":"changePeriodForAvgPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IUniswapV3Pool","name":"_pool","type":"address"}],"name":"observationsStatus","outputs":[{"internalType":"bool","name":"bufferFull","type":"bool"},{"internalType":"bool","name":"enoughObservations","type":"bool"},{"internalType":"uint16","name":"currentCardinality","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"}],"name":"pools","outputs":[{"components":[{"internalType":"contract IUniswapV3Pool","name":"pool","type":"address"},{"internalType":"bool","name":"token0IsInterim","type":"bool"}],"internalType":"struct UniswapV3PriceProviderV2.PricePath[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceCalculationData","outputs":[{"internalType":"uint32","name":"periodForAvgPrice","type":"uint32"},{"internalType":"uint8","name":"blockTime","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"priceProviderPing","outputs":[{"internalType":"bytes4","name":"","type":"bytes4"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"priceProvidersRepository","outputs":[{"internalType":"contract IPriceProvidersRepository","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IUniswapV3Pool","name":"_pool","type":"address"}],"name":"quotePrice","outputs":[{"internalType":"uint256","name":"price","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"quoteToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removePendingOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IUniswapV3Pool","name":"_pool","type":"address"},{"internalType":"uint16","name":"_currentObservationIndex","type":"uint16"},{"internalType":"uint16","name":"_currentObservationCardinality","type":"uint16"}],"name":"resolveOldestObservationTimestamp","outputs":[{"internalType":"uint32","name":"oldestTimestamp","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"contract IUniswapV3Pool[]","name":"_pools","type":"address[]"}],"name":"setupAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newPendingOwner","type":"address"}],"name":"transferPendingOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV3Factory","outputs":[{"internalType":"contract IUniswapV3Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_asset","type":"address"},{"internalType":"contract IUniswapV3Pool[]","name":"_pools","type":"address[]"}],"name":"verifyPools","outputs":[{"components":[{"internalType":"contract IUniswapV3Pool","name":"pool","type":"address"},{"internalType":"bool","name":"token0IsInterim","type":"bool"}],"internalType":"struct UniswapV3PriceProviderV2.PricePath[]","name":"path","type":"tuple[]"}],"stateMutability":"view","type":"function"}]

6101006040523480156200001257600080fd5b50604051620038ea380380620038ea833981016040819052620000359162000635565b826200005a816001600160a01b031663eec3e6a7620003bc60201b620019d91760201c565b620000ac576040805162461bcd60e51b815260206004820152601e60248201527f496e76616c6964507269636550726f76696465725265706f7369746f72790000604482015290519081900360640190fd5b806001600160a01b03166080816001600160a01b031660601b81525050806001600160a01b031663217a4b706040518163ffffffff1660e01b815260040160206040518083038186803b1580156200010357600080fd5b505afa15801562000118573d6000803e3d6000fd5b505050506040513d60208110156200012f57600080fd5b505160601b6001600160601b03191660a052506200014d3362000449565b6040516322afcccb60e01b81526101f4906001600160a01b038416906322afcccb906200017f908490600401620007d7565b60206040518083038186803b1580156200019857600080fd5b505afa158015620001ad573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001d39190620006d7565b60020b620001fe5760405162461bcd60e51b8152600401620001f590620007af565b60405180910390fd5b815163ffffffff16620002255760405162461bcd60e51b8152600401620001f59062000778565b602082015160ff161580620002425750603c826020015160ff1610155b15620002625760405162461bcd60e51b8152600401620001f5906200074e565b8151602083015162000275919062000507565b6001600160601b0319606084901b1660e05281516002805460208086015160ff166401000000000260ff60201b1963ffffffff90951663ffffffff19909316929092179390931617905560408051630217a4b760e41b815290516001600160a01b0387169263217a4b709260048181019391829003018186803b158015620002fc57600080fd5b505afa15801562000311573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000337919062000616565b6001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156200037057600080fd5b505afa15801562000385573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003ab9190620006fa565b60ff1660c05250620007fd92505050565b60006001600160a01b0383161580159062000442575082826040518163ffffffff1660e01b815260040160206040518083038186803b158015620003ff57600080fd5b505afa15801562000414573d6000803e3d6000fd5b505050506040513d60208110156200042b57600080fd5b505160e083901b6001600160e01b03199081169116145b9392505050565b6000546001600160a01b0382811691161415620004a1576040805162461bcd60e51b81526020600482015260116024820152704f776e65724469644e6f744368616e676560781b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b038316908117825560405190917f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616391a26001546001600160a01b031615620005045762000504600062000551565b50565b60008160ff168363ffffffff16816200051c57fe5b0463ffffffff16905061ffff80168111156200054c5760405162461bcd60e51b8152600401620001f59062000717565b505050565b6001546001600160a01b0382811691161415620005b5576040805162461bcd60e51b815260206004820152601860248201527f50656e64696e674f776e65724469644e6f744368616e67650000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fd6aad444c90d39fb0eee1c6e357a7fad83d63f719ac5f880445a2beb0ff3ab5890600090a250565b805160ff811681146200061157600080fd5b919050565b60006020828403121562000628578081fd5b81516200044281620007e7565b600080600083850360808112156200064b578283fd5b84516200065881620007e7565b60208601519094506200066b81620007e7565b92506040603f19820112156200067f578182fd5b50604080519081016001600160401b03811182821017156200069d57fe5b604090815285015163ffffffff81168114620006b7578283fd5b8152620006c760608601620005ff565b6020820152809150509250925092565b600060208284031215620006e9578081fd5b81518060020b811462000442578182fd5b6000602082840312156200070c578081fd5b6200044282620005ff565b6020808252601a908201527f496e76616c6964526571756972656443617264696e616c697479000000000000604082015260600190565b60208082526010908201526f496e76616c6964426c6f636b54696d6560801b604082015260600190565b60208082526018908201527f496e76616c6964506572696f64466f7241766750726963650000000000000000604082015260600190565b6020808252600e908201526d496e76616c6964466163746f727960901b604082015260600190565b62ffffff91909116815260200190565b6001600160a01b03811681146200050457600080fd5b60805160601c60a05160601c60c05160e05160601c6130816200086960003980610b6d5280611b3f525080610603528061154552508061054a52806105cc5280610e71528061141952806118d15250806103685280610ecb5280611211528061172452506130816000f3fe608060405234801561001057600080fd5b50600436106101725760003560e01c8063715018a6116100de578063a4063dbc11610097578063e30c397811610071578063e30c397814610323578063e870ef301461032b578063f2fde38b14610341578063ffa1ad741461035457610172565b8063a4063dbc146102dd578063adab8227146102f0578063b31fb2561461030357610172565b8063715018a61461027d578063765752e31461028557806379ba50971461029857806385e6420a146102a05780638da5cb5b146102b35780639fbb0011146102bb57610172565b806357e0c50f1161013057806357e0c50f146102055780635b5491821461021a5780635c4dd0de146102225780635ddf2be3146102425780636a6acf221461024a5780636f1a9c9a1461026a57610172565b80621a76f214610177578063217a4b701461018c5780633278c694146101aa57806341976e09146101bd57806344552b5d146101dd57806350bd90fb146101e5575b600080fd5b61018a61018536600461281f565b61035c565b005b610194610548565b6040516101a19190612b3f565b60405180910390f35b61018a6101b83660046127e7565b61056c565b6101d06101cb3660046127e7565b6105c8565b6040516101a19190612ca9565b61018a610957565b6101f86101f33660046127e7565b6109b3565b6040516101a19190612c23565b61020d610b60565b6040516101a19190612c94565b610194610b6b565b61023561023036600461281f565b610b8f565b6040516101a19190612bc9565b610194610ec9565b61025d610258366004612973565b610eed565b6040516101a19190612f8b565b61018a610278366004612872565b61101b565b61018a6111ab565b61018a610293366004612b07565b611205565b61018a6113a4565b6101d06102ae3660046127e7565b611414565b61019461158b565b6102ce6102c93660046127e7565b61159a565b6040516101a193929190612c78565b6102356102eb3660046127e7565b61168a565b61018a6102fe366004612a94565b611718565b6103166103113660046127e7565b6118ae565b6040516101a19190612c6d565b61019461190b565b61033361191a565b6040516101a1929190612f9c565b61018a61034f3660046127e7565b611932565b6101d06119d4565b336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156103bf57600080fd5b505afa1580156103d3573d6000803e3d6000fd5b505050506040513d60208110156103e957600080fd5b50516001600160a01b031614610434576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b6000610441848484610b8f565b6001600160a01b038516600090815260036020526040812091925061046691906126af565b60005b81518110156104f4576001600160a01b0385166000908152600360205260409020825183908390811061049857fe5b60209081029190910181015182546001818101855560009485529383902082519101805492909301511515600160a01b0260ff60a01b196001600160a01b039092166001600160a01b0319909316929092171617905501610469565b50836001600160a01b03167fed00f65c198dd075862793e646e15a8fb908cc9408dfe79f08aed57b7952c1a68484604051610530929190612b7b565b60405180910390a2610541846105c8565b5050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b3361057561158b565b6001600160a01b0316146105bc576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6105c581611a62565b50565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03838116908216141561062a5750507f0000000000000000000000000000000000000000000000000000000000000000600a0a610952565b6000836001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561066557600080fd5b505afa158015610679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069d9190612b23565b60ff16905060268111156106cc5760405162461bcd60e51b81526004016106c390612cb2565b60405180910390fd5b6001600160a01b038416600090815260036020908152604080832080548251818502810185019093528083529192909190849084015b8282101561074d57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900460ff16151581830152825260019092019101610702565b5050505090508051600014156107755760405162461bcd60e51b81526004016106c390612d60565b81600a0a93508051600114156107b3576107a98160008151811061079557fe5b602002602001015160000151858786611b0f565b9350505050610952565b6000805b825181101561094c578281815181106107cc57fe5b602002602001015160200151610869578281815181106107e857fe5b6020026020010151600001516001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108649190612803565b6108f1565b82818151811061087557fe5b6020026020010151600001516001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156108b957600080fd5b505afa1580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612803565b91506001600160801b0386106109195760405162461bcd60e51b81526004016106c390612de6565b61093c83828151811061092857fe5b602002602001015160000151878985611b0f565b91965090945085906001016107b7565b50505050505b919050565b3361096061158b565b6001600160a01b0316146109a7576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6109b16000611a62565b565b6001600160a01b0381166000908152600360205260409020546060908067ffffffffffffffff811180156109e657600080fd5b50604051908082528060200260200182016040528015610a10578160200160208202803683370190505b50915060005b81811015610b59576001600160a01b0384166000908152600360205260408120805482919084908110610a4557fe5b9060005260206000200160000160009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015610a9e57600080fd5b505afa158015610ab2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad691906129bd565b505050935093505050610b2e60036000886001600160a01b03166001600160a01b031681526020019081526020016000208481548110610b1257fe5b6000918252602090912001546001600160a01b03168383610eed565b858481518110610b3a57fe5b63ffffffff909216602092830291909101909101525050600101610a16565b5050919050565b6357e0c50f60e01b90565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606001600160a01b038416610bb75760405162461bcd60e51b81526004016106c390612d11565b8360008367ffffffffffffffff81118015610bd157600080fd5b50604051908082528060200260200182016040528015610c0b57816020015b610bf86126cd565b815260200190600190039081610bf05790505b50925060005b84811015610e6e576000868683818110610c2757fe5b9050602002016020810190610c3c91906127e7565b6001600160a01b03161415610c635760405162461bcd60e51b81526004016106c390612f0a565b6000868683818110610c7157fe5b9050602002016020810190610c8691906127e7565b6001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbe57600080fd5b505afa158015610cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf69190612803565b9050868683818110610d0457fe5b9050602002016020810190610d1991906127e7565b858381518110610d2557fe5b6020026020010151600001906001600160a01b031690816001600160a01b031681525050806001600160a01b0316846001600160a01b031614858381518110610d6a57fe5b60200260200101516020019015159081151581525050848281518110610d8c57fe5b602002602001015160200151610da25780610e33565b868683818110610dae57fe5b9050602002016020810190610dc391906127e7565b6001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610dfb57600080fd5b505afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190612803565b9250610e60878784818110610e4457fe5b9050602002016020810190610e5991906127e7565b8585611b33565b509091508190600101610c11565b507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316816001600160a01b031614610ec05760405162461bcd60e51b81526004016106c390612f2e565b50509392505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600080846001600160a01b031663252c09d78461ffff168660010161ffff1681610f1357fe5b066040518263ffffffff1660e01b8152600401610f309190612f7c565b60806040518083038186803b158015610f4857600080fd5b505afa158015610f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f809190612ab0565b92945091925082915061101390505760405163252c09d760e01b81526001600160a01b0386169063252c09d790610fbc90600090600401612ca9565b60806040518083038186803b158015610fd457600080fd5b505afa158015610fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100c9190612ab0565b5091935050505b509392505050565b6040805180820190915260025463ffffffff8116808352600160201b90910460ff16602083018190526000918161104e57fe5b0463ffffffff16905060005b8381101561054157600085858381811061107057fe5b905060200201602081019061108591906127e7565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156110bd57600080fd5b505afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f591906129bd565b5050945050505050828161ffff16106111205760405162461bcd60e51b81526004016106c390612e44565b85858381811061112c57fe5b905060200201602081019061114191906127e7565b6001600160a01b03166332148f67846040518263ffffffff1660e01b815260040161116c9190612f7c565b600060405180830381600087803b15801561118657600080fd5b505af115801561119a573d6000803e3d6000fd5b50506001909301925061105a915050565b336111b461158b565b6001600160a01b0316146111fb576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6109b16000611d3d565b336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d602081101561129257600080fd5b50516001600160a01b0316146112dd576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b60ff811615806112f15750603c8160ff1610155b1561130e5760405162461bcd60e51b81526004016106c390612d36565b60025460ff828116600160201b90920416141561133d5760405162461bcd60e51b81526004016106c390612edb565b6002546113509063ffffffff1682611df4565b6002805464ff000000001916600160201b60ff8416021790556040517fd383f780fb0ff66fbcab5bcdf08ea552407c8be6e443f7ca827288a943fc7e1690611399908390612fb5565b60405180910390a150565b6113ac61190b565b6001600160a01b0316336001600160a01b031614611404576040805162461bcd60e51b815260206004820152601060248201526f27b7363ca832b73234b733a7bbb732b960811b604482015290519081900360640190fd5b6109b161140f61190b565b611d3d565b6000807f000000000000000000000000000000000000000000000000000000000000000090506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561147557600080fd5b505afa158015611489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612803565b90506000816001600160a01b0316836001600160a01b0316146114d05781611541565b846001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561150957600080fd5b505afa15801561151d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115419190612803565b90507f0000000000000000000000000000000000000000000000000000000000000000600a0a600061157287611e3a565b905061158081838786611ecc565b979650505050505050565b6000546001600160a01b031690565b60408051808201825260025463ffffffff81168252600160201b900460ff1660208201528151633850c7bd60e01b81529151600092839283929091839182916001600160a01b03891691633850c7bd9160048082019260e092909190829003018186803b15801561160a57600080fd5b505afa15801561161e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164291906129bd565b5050945094505050506000836020015160ff16846000015163ffffffff168161166757fe5b63ffffffff9190041661ffff8085168211159a9316101597509195509350505050565b6001600160a01b0381166000908152600360209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561170d57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900460ff161515818301528252600190920191016116c2565b505050509050919050565b336001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561177b57600080fd5b505afa15801561178f573d6000803e3d6000fd5b505050506040513d60208110156117a557600080fd5b50516001600160a01b0316146117f0576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b63ffffffff811615806118095750428163ffffffff1610155b156118265760405162461bcd60e51b81526004016106c390612daf565b60025463ffffffff828116911614156118515760405162461bcd60e51b81526004016106c390612e0d565b600254611869908290600160201b900460ff16611df4565b6002805463ffffffff191663ffffffff83161790556040517fce30c17ef7079f94ccbbb8cf64e23bec4be67cbda9a416307e164682096ca3c690611399908390612f8b565b6001600160a01b03811660009081526003602052604081205415158061190557507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b0316145b92915050565b6001546001600160a01b031690565b60025463ffffffff811690600160201b900460ff1682565b3361193b61158b565b6001600160a01b031614611982576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6001600160a01b0381166119cb576040805162461bcd60e51b815260206004820152600b60248201526a4f776e657249735a65726f60a81b604482015290519081900360640190fd5b6105c581611d3d565b600281565b60006001600160a01b03831615801590611a5b575082826040518163ffffffff1660e01b815260040160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d6020811015611a4457600080fd5b505160e083901b6001600160e01b03199081169116145b9392505050565b6001546001600160a01b0382811691161415611ac5576040805162461bcd60e51b815260206004820152601860248201527f50656e64696e674f776e65724469644e6f744368616e67650000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fd6aad444c90d39fb0eee1c6e357a7fad83d63f719ac5f880445a2beb0ff3ab5890600090a250565b600080611b1b86611e3a565b9050611b2981868686611ecc565b9695505050505050565b826001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316631698ee828484876001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015611ba757600080fd5b505afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190612a59565b6040518463ffffffff1660e01b8152600401611bfd93929190612b53565b60206040518083038186803b158015611c1557600080fd5b505afa158015611c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4d9190612803565b6001600160a01b031614611c735760405162461bcd60e51b81526004016106c390612e6a565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190611ca2908790600401612b3f565b60206040518083038186803b158015611cba57600080fd5b505afa158015611cce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf29190612a7c565b905080611d115760405162461bcd60e51b81526004016106c390612f59565b6000611d1c8561159a565b50509050806105415760405162461bcd60e51b81526004016106c390612eb4565b6000546001600160a01b0382811691161415611d94576040805162461bcd60e51b81526020600482015260116024820152704f776e65724469644e6f744368616e676560781b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b038316908117825560405190917f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616391a26001546001600160a01b0316156105c5576105c56000611a62565b60008160ff168363ffffffff1681611e0857fe5b0463ffffffff16905061ffff8016811115611e355760405162461bcd60e51b81526004016106c390612cda565b505050565b6000806000611e4884611fc3565b91509150600081600081518110611e5b57fe5b602002602001015182600181518110611e7057fe5b60200260200101510390508263ffffffff168160060b81611e8d57fe5b05935060008160060b128015611eb757508263ffffffff168160060b81611eb057fe5b0760060b15155b15611ec457600019909301925b505050919050565b600080611ed8866120b3565b90506001600160801b036001600160a01b03821611611f47576001600160a01b0380821680029084811690861610611f2757611f22600160c01b876001600160801b0316836123e4565b611f3f565b611f3f81876001600160801b0316600160c01b6123e4565b925050611fba565b6000611f666001600160a01b03831680680100000000000000006123e4565b9050836001600160a01b0316856001600160a01b031610611f9e57611f99600160801b876001600160801b0316836123e4565b611fb6565b611fb681876001600160801b0316600160801b6123e4565b9250505b50949350505050565b60025463ffffffff1660606000611fda8484612493565b909250905080156120ad57600080856001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561202157600080fd5b505afa158015612035573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061205991906129bd565b505050935093505050600061206f878484610eed565b90508063ffffffff16420395506120868787612493565b909550935083156120a95760405162461bcd60e51b81526004016106c390612d8c565b5050505b50915091565b60008060008360020b126120ca578260020b6120d2565b8260020b6000035b9050620d89e8811115612110576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661212457600160801b612136565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff169050600282161561216a576ffff97272373d413259a46990580e213a0260801c5b6004821615612189576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156121a8576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b60108216156121c7576fffcb9843d60f6159c9db58835c9266440260801c5b60208216156121e6576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615612205576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615612224576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615612244576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615612264576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615612284576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156122a4576fe7159475a2c29b7443b29c7fa6e889d90260801c5b6110008216156122c4576fd097f3bdfd2022b8845ad8f792aa58250260801c5b6120008216156122e4576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615612304576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615612324576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615612345576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615612365576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615612384576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156123a1576b048a170391f7dc42444e8fa20260801c5b60008460020b13156123bc5780600019816123b857fe5b0490505b600160201b8106156123cf5760016123d2565b60005b60ff16602082901c0192505050919050565b600080806000198587098686029250828110908390030390508061241a576000841161240f57600080fd5b508290049050611a5b565b80841161242657600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6040805160028082526060828101909352600091829181602001602082028036833701905050905083816000815181106124c957fe5b63ffffffff9092166020928302919091019091015260405163883bdbfd60e01b81526001600160a01b0386169063883bdbfd9061250a908490600401612c23565b60006040518083038186803b15801561252257600080fd5b505afa92505050801561255757506040513d6000823e601f3d908101601f1916820160405261255491908101906128b2565b60015b61260b573d808015612585576040519150601f19603f3d011682016040523d82523d6000602084013e61258a565b606091505b5060405160240161259a90612e97565b60408051601f19818403018152919052602080820180516001600160e01b031662461bcd60e51b178152915190912082519183019190912014612601576040805180820190915260088152675f6f62736572766560c01b602082015261260190829061261b565b6001925050612613565b509250600091505b509250929050565b81511561262a57815182602001fd5b8060405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267457818101518382015260200161265c565b50505050905090810190601f1680156126a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460008255906000526020600020908101906105c591906126e4565b604080518082019091526000808252602082015290565b5b808211156127035780546001600160a81b03191681556001016126e5565b5090565b60008083601f840112612718578182fd5b50813567ffffffffffffffff81111561272f578182fd5b602083019150836020808302850101111561274957600080fd5b9250929050565b600082601f830112612760578081fd5b8151602061277561277083612fe7565b612fc3565b8281528181019085830183850287018401881015612791578586fd5b855b858110156127b85781516127a681613005565b84529284019290840190600101612793565b5090979650505050505050565b8051801515811461095257600080fd5b8051600681900b811461095257600080fd5b6000602082840312156127f8578081fd5b8135611a5b81613005565b600060208284031215612814578081fd5b8151611a5b81613005565b600080600060408486031215612833578182fd5b833561283e81613005565b9250602084013567ffffffffffffffff811115612859578283fd5b61286586828701612707565b9497909650939450505050565b60008060208385031215612884578182fd5b823567ffffffffffffffff81111561289a578283fd5b6128a685828601612707565b90969095509350505050565b600080604083850312156128c4578182fd5b825167ffffffffffffffff808211156128db578384fd5b818501915085601f8301126128ee578384fd5b815160206128fe61277083612fe7565b82815281810190858301838502870184018b101561291a578889fd5b8896505b848710156129435761292f816127d5565b83526001969096019591830191830161291e565b509188015191965090935050508082111561295c578283fd5b5061296985828601612750565b9150509250929050565b600080600060608486031215612987578283fd5b833561299281613005565b925060208401356129a28161301a565b915060408401356129b28161301a565b809150509250925092565b600080600080600080600060e0888a0312156129d7578485fd5b87516129e281613005565b8097505060208801518060020b81146129f9578586fd5b6040890151909650612a0a8161301a565b6060890151909550612a1b8161301a565b6080890151909450612a2c8161301a565b60a0890151909350612a3d8161303c565b9150612a4b60c089016127c5565b905092959891949750929550565b600060208284031215612a6a578081fd5b815162ffffff81168114611a5b578182fd5b600060208284031215612a8d578081fd5b5051919050565b600060208284031215612aa5578081fd5b8135611a5b8161302a565b60008060008060808587031215612ac5578182fd5b8451612ad08161302a565b9350612ade602086016127d5565b92506040850151612aee81613005565b9150612afc606086016127c5565b905092959194509250565b600060208284031215612b18578081fd5b8135611a5b8161303c565b600060208284031215612b34578081fd5b8151611a5b8161303c565b6001600160a01b0391909116815260200190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b60208082528181018390526000908460408401835b86811015612bbe578235612ba381613005565b6001600160a01b031682529183019190830190600101612b90565b509695505050505050565b602080825282518282018190526000919060409081850190868401855b82811015612c1657815180516001600160a01b031685528601511515868501529284019290850190600101612be6565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c6157835163ffffffff1683529284019291840191600101612c3f565b50909695505050505050565b901515815260200190565b9215158352901515602083015261ffff16604082015260600190565b6001600160e01b031991909116815260200190565b90815260200190565b6020808252600e908201526d706f776572206f766572666c6f7760901b604082015260600190565b6020808252601a908201527f496e76616c6964526571756972656443617264696e616c697479000000000000604082015260600190565b6020808252600b908201526a417373657449735a65726f60a81b604082015260600190565b60208082526010908201526f496e76616c6964426c6f636b54696d6560801b604082015260600190565b602080825260129082015271141bdbdb139bdd14d95d119bdc905cdcd95d60721b604082015260600190565b60208082526009908201526814d51253130813d31160ba1b604082015260600190565b60208082526018908201527f496e76616c6964506572696f64466f7241766750726963650000000000000000604082015260600190565b6020808252600d908201526c50726963654f766572666c6f7760981b604082015260600190565b6020808252601d908201527f506572696f64466f7241766750726963654469644e6f744368616e6765000000604082015260600190565b6020808252600c908201526b4e6f744e656365737361727960a01b604082015260600190565b602080825260139082015272125b9d985b1a59141bdbdb119bdc905cdcd95d606a1b604082015260600190565b60208082526003908201526213d31160ea1b604082015260600190565b6020808252600d908201526c109d5999995c939bdd119d5b1b609a1b604082015260600190565b602080825260159082015274426c6f636b54696d654469644e6f744368616e676560581b604082015260600190565b6020808252600a9082015269506f6f6c49735a65726f60b01b604082015260600190565b602080825260119082015270496e746572696d49734e6f7451756f746560781b604082015260600190565b602080825260099082015268115b5c1d1e541bdbdb60ba1b604082015260600190565b61ffff91909116815260200190565b63ffffffff91909116815260200190565b63ffffffff92909216825260ff16602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715612fdf57fe5b604052919050565b600067ffffffffffffffff821115612ffb57fe5b5060209081020190565b6001600160a01b03811681146105c557600080fd5b61ffff811681146105c557600080fd5b63ffffffff811681146105c557600080fd5b60ff811681146105c557600080fdfea2646970667358221220c06ca296f1ec611f13e0d988b8f8639af5aef83aa151a226bdfbd67ad0618cbe64736f6c634300070600330000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9840000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000a

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101725760003560e01c8063715018a6116100de578063a4063dbc11610097578063e30c397811610071578063e30c397814610323578063e870ef301461032b578063f2fde38b14610341578063ffa1ad741461035457610172565b8063a4063dbc146102dd578063adab8227146102f0578063b31fb2561461030357610172565b8063715018a61461027d578063765752e31461028557806379ba50971461029857806385e6420a146102a05780638da5cb5b146102b35780639fbb0011146102bb57610172565b806357e0c50f1161013057806357e0c50f146102055780635b5491821461021a5780635c4dd0de146102225780635ddf2be3146102425780636a6acf221461024a5780636f1a9c9a1461026a57610172565b80621a76f214610177578063217a4b701461018c5780633278c694146101aa57806341976e09146101bd57806344552b5d146101dd57806350bd90fb146101e5575b600080fd5b61018a61018536600461281f565b61035c565b005b610194610548565b6040516101a19190612b3f565b60405180910390f35b61018a6101b83660046127e7565b61056c565b6101d06101cb3660046127e7565b6105c8565b6040516101a19190612ca9565b61018a610957565b6101f86101f33660046127e7565b6109b3565b6040516101a19190612c23565b61020d610b60565b6040516101a19190612c94565b610194610b6b565b61023561023036600461281f565b610b8f565b6040516101a19190612bc9565b610194610ec9565b61025d610258366004612973565b610eed565b6040516101a19190612f8b565b61018a610278366004612872565b61101b565b61018a6111ab565b61018a610293366004612b07565b611205565b61018a6113a4565b6101d06102ae3660046127e7565b611414565b61019461158b565b6102ce6102c93660046127e7565b61159a565b6040516101a193929190612c78565b6102356102eb3660046127e7565b61168a565b61018a6102fe366004612a94565b611718565b6103166103113660046127e7565b6118ae565b6040516101a19190612c6d565b61019461190b565b61033361191a565b6040516101a1929190612f9c565b61018a61034f3660046127e7565b611932565b6101d06119d4565b336001600160a01b03167f0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b1580156103bf57600080fd5b505afa1580156103d3573d6000803e3d6000fd5b505050506040513d60208110156103e957600080fd5b50516001600160a01b031614610434576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b6000610441848484610b8f565b6001600160a01b038516600090815260036020526040812091925061046691906126af565b60005b81518110156104f4576001600160a01b0385166000908152600360205260409020825183908390811061049857fe5b60209081029190910181015182546001818101855560009485529383902082519101805492909301511515600160a01b0260ff60a01b196001600160a01b039092166001600160a01b0319909316929092171617905501610469565b50836001600160a01b03167fed00f65c198dd075862793e646e15a8fb908cc9408dfe79f08aed57b7952c1a68484604051610530929190612b7b565b60405180910390a2610541846105c8565b5050505050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b3361057561158b565b6001600160a01b0316146105bc576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6105c581611a62565b50565b60007f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b03838116908216141561062a5750507f0000000000000000000000000000000000000000000000000000000000000012600a0a610952565b6000836001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b15801561066557600080fd5b505afa158015610679573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061069d9190612b23565b60ff16905060268111156106cc5760405162461bcd60e51b81526004016106c390612cb2565b60405180910390fd5b6001600160a01b038416600090815260036020908152604080832080548251818502810185019093528083529192909190849084015b8282101561074d57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900460ff16151581830152825260019092019101610702565b5050505090508051600014156107755760405162461bcd60e51b81526004016106c390612d60565b81600a0a93508051600114156107b3576107a98160008151811061079557fe5b602002602001015160000151858786611b0f565b9350505050610952565b6000805b825181101561094c578281815181106107cc57fe5b602002602001015160200151610869578281815181106107e857fe5b6020026020010151600001516001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561082c57600080fd5b505afa158015610840573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108649190612803565b6108f1565b82818151811061087557fe5b6020026020010151600001516001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b1580156108b957600080fd5b505afa1580156108cd573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108f19190612803565b91506001600160801b0386106109195760405162461bcd60e51b81526004016106c390612de6565b61093c83828151811061092857fe5b602002602001015160000151878985611b0f565b91965090945085906001016107b7565b50505050505b919050565b3361096061158b565b6001600160a01b0316146109a7576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6109b16000611a62565b565b6001600160a01b0381166000908152600360205260409020546060908067ffffffffffffffff811180156109e657600080fd5b50604051908082528060200260200182016040528015610a10578160200160208202803683370190505b50915060005b81811015610b59576001600160a01b0384166000908152600360205260408120805482919084908110610a4557fe5b9060005260206000200160000160009054906101000a90046001600160a01b03166001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b158015610a9e57600080fd5b505afa158015610ab2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ad691906129bd565b505050935093505050610b2e60036000886001600160a01b03166001600160a01b031681526020019081526020016000208481548110610b1257fe5b6000918252602090912001546001600160a01b03168383610eed565b858481518110610b3a57fe5b63ffffffff909216602092830291909101909101525050600101610a16565b5050919050565b6357e0c50f60e01b90565b7f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f98481565b60606001600160a01b038416610bb75760405162461bcd60e51b81526004016106c390612d11565b8360008367ffffffffffffffff81118015610bd157600080fd5b50604051908082528060200260200182016040528015610c0b57816020015b610bf86126cd565b815260200190600190039081610bf05790505b50925060005b84811015610e6e576000868683818110610c2757fe5b9050602002016020810190610c3c91906127e7565b6001600160a01b03161415610c635760405162461bcd60e51b81526004016106c390612f0a565b6000868683818110610c7157fe5b9050602002016020810190610c8691906127e7565b6001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015610cbe57600080fd5b505afa158015610cd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cf69190612803565b9050868683818110610d0457fe5b9050602002016020810190610d1991906127e7565b858381518110610d2557fe5b6020026020010151600001906001600160a01b031690816001600160a01b031681525050806001600160a01b0316846001600160a01b031614858381518110610d6a57fe5b60200260200101516020019015159081151581525050848281518110610d8c57fe5b602002602001015160200151610da25780610e33565b868683818110610dae57fe5b9050602002016020810190610dc391906127e7565b6001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015610dfb57600080fd5b505afa158015610e0f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e339190612803565b9250610e60878784818110610e4457fe5b9050602002016020810190610e5991906127e7565b8585611b33565b509091508190600101610c11565b507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316816001600160a01b031614610ec05760405162461bcd60e51b81526004016106c390612f2e565b50509392505050565b7f0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f81565b600080846001600160a01b031663252c09d78461ffff168660010161ffff1681610f1357fe5b066040518263ffffffff1660e01b8152600401610f309190612f7c565b60806040518083038186803b158015610f4857600080fd5b505afa158015610f5c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f809190612ab0565b92945091925082915061101390505760405163252c09d760e01b81526001600160a01b0386169063252c09d790610fbc90600090600401612ca9565b60806040518083038186803b158015610fd457600080fd5b505afa158015610fe8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061100c9190612ab0565b5091935050505b509392505050565b6040805180820190915260025463ffffffff8116808352600160201b90910460ff16602083018190526000918161104e57fe5b0463ffffffff16905060005b8381101561054157600085858381811061107057fe5b905060200201602081019061108591906127e7565b6001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b1580156110bd57600080fd5b505afa1580156110d1573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110f591906129bd565b5050945050505050828161ffff16106111205760405162461bcd60e51b81526004016106c390612e44565b85858381811061112c57fe5b905060200201602081019061114191906127e7565b6001600160a01b03166332148f67846040518263ffffffff1660e01b815260040161116c9190612f7c565b600060405180830381600087803b15801561118657600080fd5b505af115801561119a573d6000803e3d6000fd5b50506001909301925061105a915050565b336111b461158b565b6001600160a01b0316146111fb576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6109b16000611d3d565b336001600160a01b03167f0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561126857600080fd5b505afa15801561127c573d6000803e3d6000fd5b505050506040513d602081101561129257600080fd5b50516001600160a01b0316146112dd576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b60ff811615806112f15750603c8160ff1610155b1561130e5760405162461bcd60e51b81526004016106c390612d36565b60025460ff828116600160201b90920416141561133d5760405162461bcd60e51b81526004016106c390612edb565b6002546113509063ffffffff1682611df4565b6002805464ff000000001916600160201b60ff8416021790556040517fd383f780fb0ff66fbcab5bcdf08ea552407c8be6e443f7ca827288a943fc7e1690611399908390612fb5565b60405180910390a150565b6113ac61190b565b6001600160a01b0316336001600160a01b031614611404576040805162461bcd60e51b815260206004820152601060248201526f27b7363ca832b73234b733a7bbb732b960811b604482015290519081900360640190fd5b6109b161140f61190b565b611d3d565b6000807f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc290506000836001600160a01b0316630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b15801561147557600080fd5b505afa158015611489573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114ad9190612803565b90506000816001600160a01b0316836001600160a01b0316146114d05781611541565b846001600160a01b031663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b15801561150957600080fd5b505afa15801561151d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115419190612803565b90507f0000000000000000000000000000000000000000000000000000000000000012600a0a600061157287611e3a565b905061158081838786611ecc565b979650505050505050565b6000546001600160a01b031690565b60408051808201825260025463ffffffff81168252600160201b900460ff1660208201528151633850c7bd60e01b81529151600092839283929091839182916001600160a01b03891691633850c7bd9160048082019260e092909190829003018186803b15801561160a57600080fd5b505afa15801561161e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061164291906129bd565b5050945094505050506000836020015160ff16846000015163ffffffff168161166757fe5b63ffffffff9190041661ffff8085168211159a9316101597509195509350505050565b6001600160a01b0381166000908152600360209081526040808320805482518185028101850190935280835260609492939192909184015b8282101561170d57600084815260209081902060408051808201909152908401546001600160a01b0381168252600160a01b900460ff161515818301528252600190920191016116c2565b505050509050919050565b336001600160a01b03167f0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f6001600160a01b031663481c6a756040518163ffffffff1660e01b815260040160206040518083038186803b15801561177b57600080fd5b505afa15801561178f573d6000803e3d6000fd5b505050506040513d60208110156117a557600080fd5b50516001600160a01b0316146117f0576040805162461bcd60e51b815260206004820152600b60248201526a27b7363ca6b0b730b3b2b960a91b604482015290519081900360640190fd5b63ffffffff811615806118095750428163ffffffff1610155b156118265760405162461bcd60e51b81526004016106c390612daf565b60025463ffffffff828116911614156118515760405162461bcd60e51b81526004016106c390612e0d565b600254611869908290600160201b900460ff16611df4565b6002805463ffffffff191663ffffffff83161790556040517fce30c17ef7079f94ccbbb8cf64e23bec4be67cbda9a416307e164682096ca3c690611399908390612f8b565b6001600160a01b03811660009081526003602052604081205415158061190557507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26001600160a01b0316826001600160a01b0316145b92915050565b6001546001600160a01b031690565b60025463ffffffff811690600160201b900460ff1682565b3361193b61158b565b6001600160a01b031614611982576040805162461bcd60e51b815260206004820152600960248201526827b7363ca7bbb732b960b91b604482015290519081900360640190fd5b6001600160a01b0381166119cb576040805162461bcd60e51b815260206004820152600b60248201526a4f776e657249735a65726f60a81b604482015290519081900360640190fd5b6105c581611d3d565b600281565b60006001600160a01b03831615801590611a5b575082826040518163ffffffff1660e01b815260040160206040518083038186803b158015611a1a57600080fd5b505afa158015611a2e573d6000803e3d6000fd5b505050506040513d6020811015611a4457600080fd5b505160e083901b6001600160e01b03199081169116145b9392505050565b6001546001600160a01b0382811691161415611ac5576040805162461bcd60e51b815260206004820152601860248201527f50656e64696e674f776e65724469644e6f744368616e67650000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040517fd6aad444c90d39fb0eee1c6e357a7fad83d63f719ac5f880445a2beb0ff3ab5890600090a250565b600080611b1b86611e3a565b9050611b2981868686611ecc565b9695505050505050565b826001600160a01b03167f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9846001600160a01b0316631698ee828484876001600160a01b031663ddca3f436040518163ffffffff1660e01b815260040160206040518083038186803b158015611ba757600080fd5b505afa158015611bbb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611bdf9190612a59565b6040518463ffffffff1660e01b8152600401611bfd93929190612b53565b60206040518083038186803b158015611c1557600080fd5b505afa158015611c29573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c4d9190612803565b6001600160a01b031614611c735760405162461bcd60e51b81526004016106c390612e6a565b6040516370a0823160e01b81526000906001600160a01b038316906370a0823190611ca2908790600401612b3f565b60206040518083038186803b158015611cba57600080fd5b505afa158015611cce573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cf29190612a7c565b905080611d115760405162461bcd60e51b81526004016106c390612f59565b6000611d1c8561159a565b50509050806105415760405162461bcd60e51b81526004016106c390612eb4565b6000546001600160a01b0382811691161415611d94576040805162461bcd60e51b81526020600482015260116024820152704f776e65724469644e6f744368616e676560781b604482015290519081900360640190fd5b600080546001600160a01b0319166001600160a01b038316908117825560405190917f04dba622d284ed0014ee4b9a6a68386be1a4c08a4913ae272de89199cc68616391a26001546001600160a01b0316156105c5576105c56000611a62565b60008160ff168363ffffffff1681611e0857fe5b0463ffffffff16905061ffff8016811115611e355760405162461bcd60e51b81526004016106c390612cda565b505050565b6000806000611e4884611fc3565b91509150600081600081518110611e5b57fe5b602002602001015182600181518110611e7057fe5b60200260200101510390508263ffffffff168160060b81611e8d57fe5b05935060008160060b128015611eb757508263ffffffff168160060b81611eb057fe5b0760060b15155b15611ec457600019909301925b505050919050565b600080611ed8866120b3565b90506001600160801b036001600160a01b03821611611f47576001600160a01b0380821680029084811690861610611f2757611f22600160c01b876001600160801b0316836123e4565b611f3f565b611f3f81876001600160801b0316600160c01b6123e4565b925050611fba565b6000611f666001600160a01b03831680680100000000000000006123e4565b9050836001600160a01b0316856001600160a01b031610611f9e57611f99600160801b876001600160801b0316836123e4565b611fb6565b611fb681876001600160801b0316600160801b6123e4565b9250505b50949350505050565b60025463ffffffff1660606000611fda8484612493565b909250905080156120ad57600080856001600160a01b0316633850c7bd6040518163ffffffff1660e01b815260040160e06040518083038186803b15801561202157600080fd5b505afa158015612035573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061205991906129bd565b505050935093505050600061206f878484610eed565b90508063ffffffff16420395506120868787612493565b909550935083156120a95760405162461bcd60e51b81526004016106c390612d8c565b5050505b50915091565b60008060008360020b126120ca578260020b6120d2565b8260020b6000035b9050620d89e8811115612110576040805162461bcd60e51b81526020600482015260016024820152601560fa1b604482015290519081900360640190fd5b60006001821661212457600160801b612136565b6ffffcb933bd6fad37aa2d162d1a5940015b70ffffffffffffffffffffffffffffffffff169050600282161561216a576ffff97272373d413259a46990580e213a0260801c5b6004821615612189576ffff2e50f5f656932ef12357cf3c7fdcc0260801c5b60088216156121a8576fffe5caca7e10e4e61c3624eaa0941cd00260801c5b60108216156121c7576fffcb9843d60f6159c9db58835c9266440260801c5b60208216156121e6576fff973b41fa98c081472e6896dfb254c00260801c5b6040821615612205576fff2ea16466c96a3843ec78b326b528610260801c5b6080821615612224576ffe5dee046a99a2a811c461f1969c30530260801c5b610100821615612244576ffcbe86c7900a88aedcffc83b479aa3a40260801c5b610200821615612264576ff987a7253ac413176f2b074cf7815e540260801c5b610400821615612284576ff3392b0822b70005940c7a398e4b70f30260801c5b6108008216156122a4576fe7159475a2c29b7443b29c7fa6e889d90260801c5b6110008216156122c4576fd097f3bdfd2022b8845ad8f792aa58250260801c5b6120008216156122e4576fa9f746462d870fdf8a65dc1f90e061e50260801c5b614000821615612304576f70d869a156d2a1b890bb3df62baf32f70260801c5b618000821615612324576f31be135f97d08fd981231505542fcfa60260801c5b62010000821615612345576f09aa508b5b7a84e1c677de54f3e99bc90260801c5b62020000821615612365576e5d6af8dedb81196699c329225ee6040260801c5b62040000821615612384576d2216e584f5fa1ea926041bedfe980260801c5b620800008216156123a1576b048a170391f7dc42444e8fa20260801c5b60008460020b13156123bc5780600019816123b857fe5b0490505b600160201b8106156123cf5760016123d2565b60005b60ff16602082901c0192505050919050565b600080806000198587098686029250828110908390030390508061241a576000841161240f57600080fd5b508290049050611a5b565b80841161242657600080fd5b6000848688096000868103871696879004966002600389028118808a02820302808a02820302808a02820302808a02820302808a02820302808a02909103029181900381900460010186841190950394909402919094039290920491909117919091029150509392505050565b6040805160028082526060828101909352600091829181602001602082028036833701905050905083816000815181106124c957fe5b63ffffffff9092166020928302919091019091015260405163883bdbfd60e01b81526001600160a01b0386169063883bdbfd9061250a908490600401612c23565b60006040518083038186803b15801561252257600080fd5b505afa92505050801561255757506040513d6000823e601f3d908101601f1916820160405261255491908101906128b2565b60015b61260b573d808015612585576040519150601f19603f3d011682016040523d82523d6000602084013e61258a565b606091505b5060405160240161259a90612e97565b60408051601f19818403018152919052602080820180516001600160e01b031662461bcd60e51b178152915190912082519183019190912014612601576040805180820190915260088152675f6f62736572766560c01b602082015261260190829061261b565b6001925050612613565b509250600091505b509250929050565b81511561262a57815182602001fd5b8060405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b8381101561267457818101518382015260200161265c565b50505050905090810190601f1680156126a15780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b50805460008255906000526020600020908101906105c591906126e4565b604080518082019091526000808252602082015290565b5b808211156127035780546001600160a81b03191681556001016126e5565b5090565b60008083601f840112612718578182fd5b50813567ffffffffffffffff81111561272f578182fd5b602083019150836020808302850101111561274957600080fd5b9250929050565b600082601f830112612760578081fd5b8151602061277561277083612fe7565b612fc3565b8281528181019085830183850287018401881015612791578586fd5b855b858110156127b85781516127a681613005565b84529284019290840190600101612793565b5090979650505050505050565b8051801515811461095257600080fd5b8051600681900b811461095257600080fd5b6000602082840312156127f8578081fd5b8135611a5b81613005565b600060208284031215612814578081fd5b8151611a5b81613005565b600080600060408486031215612833578182fd5b833561283e81613005565b9250602084013567ffffffffffffffff811115612859578283fd5b61286586828701612707565b9497909650939450505050565b60008060208385031215612884578182fd5b823567ffffffffffffffff81111561289a578283fd5b6128a685828601612707565b90969095509350505050565b600080604083850312156128c4578182fd5b825167ffffffffffffffff808211156128db578384fd5b818501915085601f8301126128ee578384fd5b815160206128fe61277083612fe7565b82815281810190858301838502870184018b101561291a578889fd5b8896505b848710156129435761292f816127d5565b83526001969096019591830191830161291e565b509188015191965090935050508082111561295c578283fd5b5061296985828601612750565b9150509250929050565b600080600060608486031215612987578283fd5b833561299281613005565b925060208401356129a28161301a565b915060408401356129b28161301a565b809150509250925092565b600080600080600080600060e0888a0312156129d7578485fd5b87516129e281613005565b8097505060208801518060020b81146129f9578586fd5b6040890151909650612a0a8161301a565b6060890151909550612a1b8161301a565b6080890151909450612a2c8161301a565b60a0890151909350612a3d8161303c565b9150612a4b60c089016127c5565b905092959891949750929550565b600060208284031215612a6a578081fd5b815162ffffff81168114611a5b578182fd5b600060208284031215612a8d578081fd5b5051919050565b600060208284031215612aa5578081fd5b8135611a5b8161302a565b60008060008060808587031215612ac5578182fd5b8451612ad08161302a565b9350612ade602086016127d5565b92506040850151612aee81613005565b9150612afc606086016127c5565b905092959194509250565b600060208284031215612b18578081fd5b8135611a5b8161303c565b600060208284031215612b34578081fd5b8151611a5b8161303c565b6001600160a01b0391909116815260200190565b6001600160a01b03938416815291909216602082015262ffffff909116604082015260600190565b60208082528181018390526000908460408401835b86811015612bbe578235612ba381613005565b6001600160a01b031682529183019190830190600101612b90565b509695505050505050565b602080825282518282018190526000919060409081850190868401855b82811015612c1657815180516001600160a01b031685528601511515868501529284019290850190600101612be6565b5091979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c6157835163ffffffff1683529284019291840191600101612c3f565b50909695505050505050565b901515815260200190565b9215158352901515602083015261ffff16604082015260600190565b6001600160e01b031991909116815260200190565b90815260200190565b6020808252600e908201526d706f776572206f766572666c6f7760901b604082015260600190565b6020808252601a908201527f496e76616c6964526571756972656443617264696e616c697479000000000000604082015260600190565b6020808252600b908201526a417373657449735a65726f60a81b604082015260600190565b60208082526010908201526f496e76616c6964426c6f636b54696d6560801b604082015260600190565b602080825260129082015271141bdbdb139bdd14d95d119bdc905cdcd95d60721b604082015260600190565b60208082526009908201526814d51253130813d31160ba1b604082015260600190565b60208082526018908201527f496e76616c6964506572696f64466f7241766750726963650000000000000000604082015260600190565b6020808252600d908201526c50726963654f766572666c6f7760981b604082015260600190565b6020808252601d908201527f506572696f64466f7241766750726963654469644e6f744368616e6765000000604082015260600190565b6020808252600c908201526b4e6f744e656365737361727960a01b604082015260600190565b602080825260139082015272125b9d985b1a59141bdbdb119bdc905cdcd95d606a1b604082015260600190565b60208082526003908201526213d31160ea1b604082015260600190565b6020808252600d908201526c109d5999995c939bdd119d5b1b609a1b604082015260600190565b602080825260159082015274426c6f636b54696d654469644e6f744368616e676560581b604082015260600190565b6020808252600a9082015269506f6f6c49735a65726f60b01b604082015260600190565b602080825260119082015270496e746572696d49734e6f7451756f746560781b604082015260600190565b602080825260099082015268115b5c1d1e541bdbdb60ba1b604082015260600190565b61ffff91909116815260200190565b63ffffffff91909116815260200190565b63ffffffff92909216825260ff16602082015260400190565b60ff91909116815260200190565b60405181810167ffffffffffffffff81118282101715612fdf57fe5b604052919050565b600067ffffffffffffffff821115612ffb57fe5b5060209081020190565b6001600160a01b03811681146105c557600080fd5b61ffff811681146105c557600080fd5b63ffffffff811681146105c557600080fd5b60ff811681146105c557600080fdfea2646970667358221220c06ca296f1ec611f13e0d988b8f8639af5aef83aa151a226bdfbd67ad0618cbe64736f6c63430007060033

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

0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f9840000000000000000000000000000000000000000000000000000000000000708000000000000000000000000000000000000000000000000000000000000000a

-----Decoded View---------------
Arg [0] : _priceProvidersRepository (address): 0x7C2ca9D502f2409BeceAfa68E97a176Ff805029F
Arg [1] : _factory (address): 0x1F98431c8aD98523631AE4a59f267346ea31F984
Arg [2] : _priceCalculationData (tuple): System.Collections.Generic.List`1[Nethereum.ABI.FunctionEncoding.ParameterOutput]

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000007c2ca9d502f2409beceafa68e97a176ff805029f
Arg [1] : 0000000000000000000000001f98431c8ad98523631ae4a59f267346ea31f984
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000708
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a


Block Transaction Difficulty 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
Loading...
Loading
[ Download: CSV Export  ]

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