ETH Price: $3,217.96 (+5.37%)

Token

DSFLP (DSFLP)
 

Overview

Max Total Supply

776,406.903897001068716252 DSFLP

Holders

76

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
1 DSFLP

Value
$0.00
0xaf1b9caf6f7ef9319cecc0a8be06bf28f6fc41a4
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DSF

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
File 1 of 16 : DSF.sol
//SPDX-License-Identifier: MIT

/**
 *⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
 *⠀⠀⠀⠀⠈⢻⣿⠛⠻⢷⣄⠀⠀ ⣴⡟⠛⠛⣷⠀ ⠘⣿⡿⠛⠛⢿⡇⠀⠀⠀⠀
 *⠀⠀⠀⠀⠀⢸⣿⠀⠀ ⠈⣿⡄⠀⠿⣧⣄⡀ ⠉⠀⠀ ⣿⣧⣀⣀⡀⠀⠀⠀⠀⠀
 *⠀⠀⠀⠀⠀⢸⣿⠀⠀ ⢀⣿⠃ ⣀ ⠈⠉⠻⣷⡄⠀ ⣿⡟⠉⠉⠁⠀⠀⠀⠀⠀
 *⠀⠀⠀⠀⢠⣼⣿⣤⣴⠿⠋⠀ ⠀⢿⣦⣤⣴⡿⠁ ⢠⣿⣷⡄⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀⠀
 *
 *      - Defining Successful Future -
 *
 */

pragma solidity ^0.8.0;

import '@openzeppelin/contracts/token/ERC20/ERC20.sol';
import '@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol';
import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol';
import '@openzeppelin/contracts/security/Pausable.sol';
import '@openzeppelin/contracts/access/AccessControl.sol';
import './interfaces/IStrategy.sol';

/**
 *
 * @title DSF (Defining Successful Future) Protocol
 *
 * @notice Contract for Convex&Curve protocols optimize.
 * Users can use this contract for optimize yield and gas.
 *
 *
 * @dev DSF is main contract.
 * Contract does not store user funds.
 * All user funds goes to Convex&Curve pools.
 *
 */

contract DSF is ERC20, Pausable, AccessControl {
    using SafeERC20 for IERC20Metadata;

    bytes32 public constant OPERATOR_ROLE = keccak256('OPERATOR_ROLE');

    struct PendingWithdrawal {
        uint256 lpShares;
        uint256[3] tokenAmounts;
    }

    struct PoolInfo {
        IStrategy strategy;
        uint256 startTime;
        uint256 lpShares;
    }

    uint8 public constant POOL_ASSETS = 3;
    uint256 public constant LP_RATIO_MULTIPLIER = 1e18;
    uint256 public constant FEE_DENOMINATOR = 1000;
    uint256 public constant MIN_LOCK_TIME = 1 days;
    uint256 public constant FUNDS_DENOMINATOR = 10_000;
    uint8 public constant ALL_WITHDRAWAL_TYPES_MASK = uint8(3);

    PoolInfo[] internal _poolInfo;
    uint256 public defaultDepositPid;
    uint256 public defaultWithdrawPid;
    uint8 public availableWithdrawalTypes;

    address[POOL_ASSETS] public tokens;
    uint256[POOL_ASSETS] public decimalsMultipliers;

    mapping(address => uint256[POOL_ASSETS]) internal _pendingDeposits;
    mapping(address => PendingWithdrawal) internal _pendingWithdrawals;

    uint256 public totalDeposited = 0;
    uint256 public managementFee = 150; // DFS Fee 15%
    bool public launched = false;

    event CreatedPendingDeposit(address indexed depositor, uint256[POOL_ASSETS] amounts);
    event CreatedPendingWithdrawal(
        address indexed withdrawer,
        uint256 lpShares,
        uint256[POOL_ASSETS] tokenAmounts
    );
    event Deposited(address indexed depositor, uint256[POOL_ASSETS] amounts, uint256 lpShares);
    event Withdrawn(
        address indexed withdrawer,
        IStrategy.WithdrawalType withdrawalType,
        uint256[POOL_ASSETS] tokenAmounts,
        uint256 lpShares,
        uint128 tokenIndex
    );

    event AddedPool(uint256 pid, address strategyAddr, uint256 startTime);
    event FailedDeposit(address indexed depositor, uint256[POOL_ASSETS] amounts, uint256 lpShares);
    event FailedWithdrawal(
        address indexed withdrawer,
        uint256[POOL_ASSETS] amounts,
        uint256 lpShares
    );
    event SetDefaultDepositPid(uint256 pid);
    event SetDefaultWithdrawPid(uint256 pid);
    event ClaimedAllManagementFee(uint256 feeValue);
    event AutoCompoundAll();

    modifier startedPool() {
        require(_poolInfo.length != 0, 'DSF: pool not existed!');
        require(
            block.timestamp >= _poolInfo[defaultDepositPid].startTime,
            'DSF: default deposit pool not started yet!'
        );
        require(
            block.timestamp >= _poolInfo[defaultWithdrawPid].startTime,
            'DSF: default withdraw pool not started yet!'
        );
        _;
    }

    constructor(address[POOL_ASSETS] memory _tokens) ERC20('DSFLP', 'DSFLP') {
        tokens = _tokens;
        _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
        _setupRole(OPERATOR_ROLE, msg.sender);

        for (uint256 i; i < POOL_ASSETS; i++) {
            uint256 decimals = IERC20Metadata(tokens[i]).decimals();
            if (decimals < 18) {
                decimalsMultipliers[i] = 10**(18 - decimals);
            } else {
                decimalsMultipliers[i] = 1;
            }
        }

        availableWithdrawalTypes = ALL_WITHDRAWAL_TYPES_MASK;
    }

    function poolInfo(uint256 pid) external view returns (PoolInfo memory) {
        return _poolInfo[pid];
    }

    function pendingDeposits(address user) external view returns (uint256[POOL_ASSETS] memory) {
        return _pendingDeposits[user];
    }

    function pendingDepositsToken(address user, uint256 tokenIndex) external view returns (uint256) {
        return _pendingDeposits[user][tokenIndex];
    }

    function pendingWithdrawals(address user) external view returns (PendingWithdrawal memory) {
        return _pendingWithdrawals[user];
    }

    function pause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _pause();
    }

    function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) {
        _unpause();
    }

    function setAvailableWithdrawalTypes(uint8 newAvailableWithdrawalTypes)
        external
        onlyRole(DEFAULT_ADMIN_ROLE)
    {
        require(
            newAvailableWithdrawalTypes <= ALL_WITHDRAWAL_TYPES_MASK,
            'DSF: wrong available withdrawal types'
        );
        availableWithdrawalTypes = newAvailableWithdrawalTypes;
    }

    /**
     * @dev update managementFee, this is a DSF commission from protocol profit
     * @param  newManagementFee - minAmount 0, maxAmount FEE_DENOMINATOR - 1
     */
    function setManagementFee(uint256 newManagementFee) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(newManagementFee < FEE_DENOMINATOR, 'DSF: wrong fee');
        managementFee = newManagementFee;
    }

    /**
     * @dev Returns managementFee for strategy's when contract sell rewards
     * @return Returns commission on the amount of profit in the transaction
     * @param amount - amount of profit for calculate managementFee
     */
    function calcManagementFee(uint256 amount) external view returns (uint256) {
        return (amount * managementFee) / FEE_DENOMINATOR;
    }

    /**
     * @dev Claims managementFee from all active strategies
     */
    function claimAllManagementFee() external {
        uint256 feeTotalValue;
        for (uint256 i = 0; i < _poolInfo.length; i++) {
            feeTotalValue += _poolInfo[i].strategy.claimManagementFees();
        }

        emit ClaimedAllManagementFee(feeTotalValue);
    }

    function autoCompoundAll() external {
        for (uint256 i = 0; i < _poolInfo.length; i++) {
            _poolInfo[i].strategy.autoCompound();
        }
        emit AutoCompoundAll();
    }

    /**
     * @dev Returns total holdings for all pools (strategy's)
     * @return Returns sum holdings (USD) for all pools
     */
    function totalHoldings() public view returns (uint256) {
        uint256 length = _poolInfo.length;
        uint256 totalHold = 0;
        for (uint256 pid = 0; pid < length; pid++) {
            totalHold += _poolInfo[pid].strategy.totalHoldings();
        }
        return totalHold;
    }

    /**
     * @dev Returns price depends on the income of users
     * @return Returns currently price of DSF
     */
    function lpPrice() external view returns (uint256) {
        return (totalHoldings() * 1e18) / totalSupply();
    }

    /**
     * @dev Returns number of pools
     * @return number of pools
     */
    function poolCount() external view returns (uint256) {
        return _poolInfo.length;
    }

    /**
     * @dev in this func user sends funds to the contract and then waits for the completion
     * of the transaction for all users
     * @param amounts - array of deposit amounts by user
     */
    function feesOptimizationDeposit(uint256[3] memory amounts) external whenNotPaused {
        for (uint256 i = 0; i < amounts.length; i++) {
            if (amounts[i] > 0) {
                IERC20Metadata(tokens[i]).safeTransferFrom(_msgSender(), address(this), amounts[i]);
                _pendingDeposits[_msgSender()][i] += amounts[i];
            }
        }

        emit CreatedPendingDeposit(_msgSender(), amounts);
    }

    /**
     * @dev in this func user sends pending withdraw to the contract and then waits
     * for the completion of the transaction for all users
     * @param  lpShares - amount of DSF for withdraw
     * @param tokenAmounts - array of amounts stablecoins that user want minimum receive
     */
    function feesOptimizationWithdrawal(uint256 lpShares, uint256[POOL_ASSETS] memory tokenAmounts)
        external
        whenNotPaused
    {
        require(lpShares > 0, 'DSF: lpAmount must be higher 0');

        PendingWithdrawal memory withdrawal;
        address userAddr = _msgSender();

        withdrawal.lpShares = lpShares;
        withdrawal.tokenAmounts = tokenAmounts;

        _pendingWithdrawals[userAddr] = withdrawal;

        emit CreatedPendingWithdrawal(userAddr, lpShares, tokenAmounts);
    }

    /**
     * @dev DSF protocol owner complete all active pending deposits of users
     * @param userList - dev send array of users from pending to complete
     */
    function completeFeesOptimizationDeposits(address[] memory userList)
        external
        onlyRole(OPERATOR_ROLE)
        startedPool
    {
        IStrategy strategy = _poolInfo[defaultDepositPid].strategy;
        uint256 currentTotalHoldings = totalHoldings();

        uint256 newHoldings = 0;
        uint256[3] memory totalAmounts;
        uint256[] memory userCompleteHoldings = new uint256[](userList.length);
        for (uint256 i = 0; i < userList.length; i++) {
            newHoldings = 0;

            for (uint256 x = 0; x < totalAmounts.length; x++) {
                uint256 userTokenDeposit = _pendingDeposits[userList[i]][x];
                totalAmounts[x] += userTokenDeposit;
                newHoldings += userTokenDeposit * decimalsMultipliers[x];
            }
            userCompleteHoldings[i] = newHoldings;
        }

        newHoldings = 0;
        for (uint256 y = 0; y < POOL_ASSETS; y++) {
            uint256 totalTokenAmount = totalAmounts[y];
            if (totalTokenAmount > 0) {
                newHoldings += totalTokenAmount * decimalsMultipliers[y];
                IERC20Metadata(tokens[y]).safeTransfer(address(strategy), totalTokenAmount);
            }
        }
        uint256 totalDepositedNow = strategy.deposit(totalAmounts);
        require(totalDepositedNow > 0, 'DSF: too low deposit!');
        uint256 lpShares = 0;
        uint256 addedHoldings = 0;
        uint256 userDeposited = 0;

        for (uint256 z = 0; z < userList.length; z++) {
            userDeposited = (totalDepositedNow * userCompleteHoldings[z]) / newHoldings;
            address userAddr = userList[z];
            if (totalSupply() == 0) {
                lpShares = userDeposited;
            } else {
                lpShares = (totalSupply() * userDeposited) / (currentTotalHoldings + addedHoldings);
            }
            addedHoldings += userDeposited;
            _mint(userAddr, lpShares);
            _poolInfo[defaultDepositPid].lpShares += lpShares;
            emit Deposited(userAddr, _pendingDeposits[userAddr], lpShares);

            // remove deposit from list
            delete _pendingDeposits[userAddr];
        }
        totalDeposited += addedHoldings;
    }

    /**
     * @dev DSF protocol owner complete all active pending withdrawals of users
     * @param userList - array of users from pending withdraw to complete
     */
    function completeFeesOptimizationWithdrawals(address[] memory userList)
        external
        onlyRole(OPERATOR_ROLE)
        startedPool
    {
        require(userList.length > 0, 'DSF: there are no pending withdrawals requests');

        IStrategy strategy = _poolInfo[defaultWithdrawPid].strategy;

        address user;
        PendingWithdrawal memory withdrawal;
        for (uint256 i = 0; i < userList.length; i++) {
            user = userList[i];
            withdrawal = _pendingWithdrawals[user];

            if (balanceOf(user) < withdrawal.lpShares) {
                emit FailedWithdrawal(user, withdrawal.tokenAmounts, withdrawal.lpShares);
                delete _pendingWithdrawals[user];
                continue;
            }

            if (
                !(
                    strategy.withdraw(
                        user,
                        calcLpRatioSafe(
                            withdrawal.lpShares,
                            _poolInfo[defaultWithdrawPid].lpShares
                        ),
                        withdrawal.tokenAmounts,
                        IStrategy.WithdrawalType.Base,
                        0
                    )
                )
            ) {
                emit FailedWithdrawal(user, withdrawal.tokenAmounts, withdrawal.lpShares);
                delete _pendingWithdrawals[user];
                continue;
            }

            uint256 userDeposit = (totalDeposited * withdrawal.lpShares) / totalSupply();
            _burn(user, withdrawal.lpShares);
            _poolInfo[defaultWithdrawPid].lpShares -= withdrawal.lpShares;
            totalDeposited -= userDeposit;

            emit Withdrawn(
                user,
                IStrategy.WithdrawalType.Base,
                withdrawal.tokenAmounts,
                withdrawal.lpShares,
                0
            );
            delete _pendingWithdrawals[user];
        }
    }

    function calcLpRatioSafe(uint256 outLpShares, uint256 strategyLpShares)
        internal
        pure
        returns (uint256 lpShareRatio)
    {
        lpShareRatio = (outLpShares * LP_RATIO_MULTIPLIER) / strategyLpShares;
        require(
            lpShareRatio > 0 && lpShareRatio <= LP_RATIO_MULTIPLIER,
            'DSF: Wrong out lp Ratio'
        );
    }

    function completeFeesOptimizationWithdrawalsMk2(address[] memory userList)
        external
        onlyRole(OPERATOR_ROLE)
        startedPool
    {
        require(userList.length > 0, 'DSF: there are no pending withdrawals requests');

        IStrategy strategy = _poolInfo[defaultWithdrawPid].strategy;

        uint256 lpSharesTotal;
        uint256[POOL_ASSETS] memory minAmountsTotal;

        uint256 i;
        address user;
        PendingWithdrawal memory withdrawal;
        for (i = 0; i < userList.length; i++) {
            user = userList[i];
            withdrawal = _pendingWithdrawals[user];

            if (balanceOf(user) < withdrawal.lpShares) {
                emit FailedWithdrawal(user, withdrawal.tokenAmounts, withdrawal.lpShares);
                delete _pendingWithdrawals[user];
                continue;
            }

            lpSharesTotal += withdrawal.lpShares;
            minAmountsTotal[0] += withdrawal.tokenAmounts[0];
            minAmountsTotal[1] += withdrawal.tokenAmounts[1];
            minAmountsTotal[2] += withdrawal.tokenAmounts[2];

            emit Withdrawn(
                user,
                IStrategy.WithdrawalType.Base,
                withdrawal.tokenAmounts,
                withdrawal.lpShares,
                0
            );
        }

        require(
            lpSharesTotal <= _poolInfo[defaultWithdrawPid].lpShares,
            'DSF: Insufficient pool LP shares'
        );

        uint256[POOL_ASSETS] memory prevBalances;
        for (i = 0; i < 3; i++) {
            prevBalances[i] = IERC20Metadata(tokens[i]).balanceOf(address(this));
        }

        if (
            !strategy.withdraw(
                address(this),
                calcLpRatioSafe(lpSharesTotal, _poolInfo[defaultWithdrawPid].lpShares),
                minAmountsTotal,
                IStrategy.WithdrawalType.Base,
                0
            )
        ) {
            for (i = 0; i < userList.length; i++) {
                user = userList[i];
                withdrawal = _pendingWithdrawals[user];

                emit FailedWithdrawal(user, withdrawal.tokenAmounts, withdrawal.lpShares);
                delete _pendingWithdrawals[user];
            }
            return;
        }

        uint256[POOL_ASSETS] memory diffBalances;
        for (i = 0; i < 3; i++) {
            diffBalances[i] = IERC20Metadata(tokens[i]).balanceOf(address(this)) - prevBalances[i];
        }

        for (i = 0; i < userList.length; i++) {
            user = userList[i];
            withdrawal = _pendingWithdrawals[user];

            uint256 userDeposit = (totalDeposited * withdrawal.lpShares) / totalSupply();
            _burn(user, withdrawal.lpShares);
            _poolInfo[defaultWithdrawPid].lpShares -= withdrawal.lpShares;
            totalDeposited -= userDeposit;

            uint256 transferAmount;
            for (uint256 j = 0; j < 3; j++) {
                transferAmount = (diffBalances[j] * withdrawal.lpShares) / lpSharesTotal;
                if(transferAmount > 0) {
                    IERC20Metadata(tokens[j]).safeTransfer(
                        user,
                        transferAmount
                    );
                }
            }

            delete _pendingWithdrawals[user];
        }
    }

    /**
     * @dev deposit in one tx, without waiting complete by dev
     * @return Returns amount of lpShares minted for user
     * @param amounts - user send amounts of stablecoins to deposit
     */
    function deposit(uint256[POOL_ASSETS] memory amounts)
        external
        whenNotPaused
        startedPool
        returns (uint256)
    {
        IStrategy strategy = _poolInfo[defaultDepositPid].strategy;
        uint256 holdings = totalHoldings();

        for (uint256 i = 0; i < amounts.length; i++) {
            if (amounts[i] > 0) {
                IERC20Metadata(tokens[i]).safeTransferFrom(
                    _msgSender(),
                    address(strategy),
                    amounts[i]
                );
            }
        }
        uint256 newDeposited = strategy.deposit(amounts);
        require(newDeposited > 0, 'DSF: too low deposit!');

        uint256 lpShares = 0;
        if (totalSupply() == 0) {
            lpShares = newDeposited;
        } else {
            lpShares = (totalSupply() * newDeposited) / holdings;
        }
        _mint(_msgSender(), lpShares);
        _poolInfo[defaultDepositPid].lpShares += lpShares;
        totalDeposited += newDeposited;

        emit Deposited(_msgSender(), amounts, lpShares);
        return lpShares;
    }

    /**
     * @dev withdraw in one tx, without waiting complete by dev
     * @param lpShares - amount of DSF for withdraw
     * @param tokenAmounts -  array of amounts stablecoins that user want minimum receive
     */
    function withdraw(
        uint256 lpShares,
        uint256[POOL_ASSETS] memory tokenAmounts,
        IStrategy.WithdrawalType withdrawalType,
        uint128 tokenIndex
    ) external whenNotPaused startedPool {
        require(
            checkBit(availableWithdrawalTypes, uint8(withdrawalType)),
            'DSF: withdrawal type not available'
        );
        IStrategy strategy = _poolInfo[defaultWithdrawPid].strategy;
        address userAddr = _msgSender();

        require(balanceOf(userAddr) >= lpShares, 'DSF: not enough LP balance');
        require(
            strategy.withdraw(
                userAddr,
                calcLpRatioSafe(lpShares, _poolInfo[defaultWithdrawPid].lpShares),
                tokenAmounts,
                withdrawalType,
                tokenIndex
            ),
            'DSF: incorrect withdraw params'
        );

        uint256 userDeposit = (totalDeposited * lpShares) / totalSupply();
        _burn(userAddr, lpShares);
        _poolInfo[defaultWithdrawPid].lpShares -= lpShares;

        totalDeposited -= userDeposit;

        emit Withdrawn(userAddr, withdrawalType, tokenAmounts, lpShares, tokenIndex);
    }

    function calcWithdrawOneCoin(uint256 lpShares, uint128 tokenIndex)
        external
        view
        returns (uint256 tokenAmount)
    {
        require(lpShares <= balanceOf(_msgSender()), 'DSF: not enough LP balance');

        uint256 lpShareRatio = calcLpRatioSafe(lpShares, _poolInfo[defaultWithdrawPid].lpShares);
        return _poolInfo[defaultWithdrawPid].strategy.calcWithdrawOneCoin(lpShareRatio, tokenIndex);
    }

    function calcSharesAmount(uint256[3] memory tokenAmounts, bool isDeposit)
        external
        view
        returns (uint256 lpShares)
    {
        return _poolInfo[defaultWithdrawPid].strategy.calcSharesAmount(tokenAmounts, isDeposit);
    }

    /**
     * @dev add a new pool, deposits in the new pool are blocked for one day for safety
     * @param _strategyAddr - the new pool strategy address
     */

    function addPool(address _strategyAddr) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(_strategyAddr != address(0), 'DSF: zero strategy addr');
        uint256 startTime = block.timestamp + (launched ? MIN_LOCK_TIME : 0);
        _poolInfo.push(
            PoolInfo({ strategy: IStrategy(_strategyAddr), startTime: startTime, lpShares: 0 })
        );
        emit AddedPool(_poolInfo.length - 1, _strategyAddr, startTime);
    }

    /**
     * @dev set a default pool for deposit funds
     * @param _newPoolId - new pool id
     */
    function setDefaultDepositPid(uint256 _newPoolId) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(_newPoolId < _poolInfo.length, 'DSF: incorrect default deposit pool id');

        defaultDepositPid = _newPoolId;
        emit SetDefaultDepositPid(_newPoolId);
    }

    /**
     * @dev set a default pool for withdraw funds
     * @param _newPoolId - new pool id
     */
    function setDefaultWithdrawPid(uint256 _newPoolId) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(_newPoolId < _poolInfo.length, 'DSF: incorrect default withdraw pool id');

        defaultWithdrawPid = _newPoolId;
        emit SetDefaultWithdrawPid(_newPoolId);
    }

    function launch() external onlyRole(DEFAULT_ADMIN_ROLE) {
        launched = true;
    }

    /**
     * @dev dev can transfer funds from few strategy's to one strategy for better APY
     * @param _strategies - array of strategy's, from which funds are withdrawn
     * @param withdrawalsPercents - A percentage of the funds that should be transfered
     * @param _receiverStrategyId - number strategy, to which funds are deposited
     */
    function moveFundsBatch(
        uint256[] memory _strategies,
        uint256[] memory withdrawalsPercents,
        uint256 _receiverStrategyId
    ) external onlyRole(DEFAULT_ADMIN_ROLE) {
        require(
            _strategies.length == withdrawalsPercents.length,
            'DSF: incorrect arguments for the moveFundsBatch'
        );
        require(_receiverStrategyId < _poolInfo.length, 'DSF: incorrect a reciver strategy ID');

        uint256[POOL_ASSETS] memory tokenBalance;
        for (uint256 y = 0; y < POOL_ASSETS; y++) {
            tokenBalance[y] = IERC20Metadata(tokens[y]).balanceOf(address(this));
        }

        uint256 pid;
        uint256 DSFLp;
        for (uint256 i = 0; i < _strategies.length; i++) {
            pid = _strategies[i];
            DSFLp += _moveFunds(pid, withdrawalsPercents[i]);
        }

        uint256[POOL_ASSETS] memory tokensRemainder;
        for (uint256 y = 0; y < POOL_ASSETS; y++) {
            tokensRemainder[y] =
                IERC20Metadata(tokens[y]).balanceOf(address(this)) -
                tokenBalance[y];
            if (tokensRemainder[y] > 0) {
                IERC20Metadata(tokens[y]).safeTransfer(
                    address(_poolInfo[_receiverStrategyId].strategy),
                    tokensRemainder[y]
                );
            }
        }

        _poolInfo[_receiverStrategyId].lpShares += DSFLp;

        require(
            _poolInfo[_receiverStrategyId].strategy.deposit(tokensRemainder) > 0,
            'DSF: Too low amount!'
        );
    }

    function _moveFunds(uint256 pid, uint256 withdrawAmount) private returns (uint256) {
        uint256 currentLpAmount;

        if (withdrawAmount == FUNDS_DENOMINATOR) {
            _poolInfo[pid].strategy.withdrawAll();

            currentLpAmount = _poolInfo[pid].lpShares;
            _poolInfo[pid].lpShares = 0;
        } else {
            currentLpAmount = (_poolInfo[pid].lpShares * withdrawAmount) / FUNDS_DENOMINATOR;
            uint256[POOL_ASSETS] memory minAmounts;

            _poolInfo[pid].strategy.withdraw(
                address(this),
                calcLpRatioSafe(currentLpAmount, _poolInfo[pid].lpShares),
                minAmounts,
                IStrategy.WithdrawalType.Base,
                0
            );
            _poolInfo[pid].lpShares = _poolInfo[pid].lpShares - currentLpAmount;
        }

        return currentLpAmount;
    }

    /**
     * @dev user remove his active pending deposit
     */
    function removePendingDeposit() external {
        for (uint256 i = 0; i < POOL_ASSETS; i++) {
            if (_pendingDeposits[_msgSender()][i] > 0) {
                IERC20Metadata(tokens[i]).safeTransfer(
                    _msgSender(),
                    _pendingDeposits[_msgSender()][i]
                );
            }
        }
        delete _pendingDeposits[_msgSender()];
    }

    function removePendingWithdrawal() external {
        delete _pendingWithdrawals[_msgSender()];
    }

    /**
     * @dev governance can withdraw all stuck funds in emergency case
     * @param _token - IERC20Metadata token that should be fully withdraw from DSF
     */
    function withdrawStuckToken(IERC20Metadata _token) external onlyRole(DEFAULT_ADMIN_ROLE) {
        uint256 tokenBalance = _token.balanceOf(address(this));
        if(tokenBalance > 0) {
            _token.safeTransfer(_msgSender(), tokenBalance);
        }
    }

    /**
     * @dev governance can add new operator for complete pending deposits and withdrawals
     * @param _newOperator - address that governance add in list of operators
     */
    function updateOperator(address _newOperator) external onlyRole(DEFAULT_ADMIN_ROLE) {
        _grantRole(OPERATOR_ROLE, _newOperator);
    }

    // Get bit value at position
    function checkBit(uint8 mask, uint8 bit) internal pure returns (bool) {
        return mask & (0x01 << bit) != 0;
    }
}

File 2 of 16 : IStrategy.sol
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;

interface IStrategy {
    enum WithdrawalType { Base, OneCoin }

    function deposit(uint256[3] memory amounts) external returns (uint256);

    function withdraw(
        address withdrawer,
        uint256 userRatioOfCrvLps, // multiplied by 1e18
        uint256[3] memory tokenAmounts,
        WithdrawalType withdrawalType,
        uint128 tokenIndex
    ) external returns (bool);

    function withdrawAll() external;

    function totalHoldings() external view returns (uint256);

    function claimManagementFees() external returns (uint256);

    function autoCompound() external;

    function calcWithdrawOneCoin(
        uint256 userRatioOfCrvLps,
        uint128 tokenIndex
    ) external view returns(uint256 tokenAmount);

    function calcSharesAmount(
        uint256[3] memory tokenAmounts,
        bool isDeposit
    ) external view returns(uint256 sharesAmount);
}

File 3 of 16 : AccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

import "./IAccessControl.sol";
import "../utils/Context.sol";
import "../utils/Strings.sol";
import "../utils/introspection/ERC165.sol";

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping(address => bool) members;
        bytes32 adminRole;
    }

    mapping(bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role);
        _;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId);
    }

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view virtual override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Revert with a standard message if `_msgSender()` is missing `role`.
     * Overriding this function changes the behavior of the {onlyRole} modifier.
     *
     * Format of the revert message is described in {_checkRole}.
     *
     * _Available since v4.6._
     */
    function _checkRole(bytes32 role) internal view virtual {
        _checkRole(role, _msgSender());
    }

    /**
     * @dev Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/
     */
    function _checkRole(bytes32 role, address account) internal view virtual {
        if (!hasRole(role, account)) {
            revert(
                string(
                    abi.encodePacked(
                        "AccessControl: account ",
                        Strings.toHexString(account),
                        " is missing role ",
                        Strings.toHexString(uint256(role), 32)
                    )
                )
            );
        }
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleGranted} event.
     */
    function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     *
     * May emit a {RoleRevoked} event.
     */
    function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) {
        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been revoked `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     *
     * May emit a {RoleRevoked} event.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * May emit a {RoleGranted} event.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     *
     * NOTE: This function is deprecated in favor of {_grantRole}.
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        bytes32 previousAdminRole = getRoleAdmin(role);
        _roles[role].adminRole = adminRole;
        emit RoleAdminChanged(role, previousAdminRole, adminRole);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleGranted} event.
     */
    function _grantRole(bytes32 role, address account) internal virtual {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * Internal function without access restriction.
     *
     * May emit a {RoleRevoked} event.
     */
    function _revokeRole(bytes32 role, address account) internal virtual {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 4 of 16 : Pausable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol)

pragma solidity ^0.8.0;

import "../utils/Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor() {
        _paused = false;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        _requireNotPaused();
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        _requirePaused();
        _;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Throws if the contract is paused.
     */
    function _requireNotPaused() internal view virtual {
        require(!paused(), "Pausable: paused");
    }

    /**
     * @dev Throws if the contract is not paused.
     */
    function _requirePaused() internal view virtual {
        require(paused(), "Pausable: not paused");
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

File 5 of 16 : SafeERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";

/**
 * @title SafeERC20
 * @dev Wrappers around ERC20 operations that throw on failure (when the token
 * contract returns false). Tokens that return no value (and instead revert or
 * throw on failure) are also supported, non-reverting calls are assumed to be
 * successful.
 * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
 * which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
 */
library SafeERC20 {
    using Address for address;

    function safeTransfer(
        IERC20 token,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
    }

    function safeTransferFrom(
        IERC20 token,
        address from,
        address to,
        uint256 value
    ) internal {
        _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value));
    }

    /**
     * @dev Deprecated. This function has issues similar to the ones found in
     * {IERC20-approve}, and its usage is discouraged.
     *
     * Whenever possible, use {safeIncreaseAllowance} and
     * {safeDecreaseAllowance} instead.
     */
    function safeApprove(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        // safeApprove should only be called when setting an initial allowance,
        // or when resetting it to zero. To increase and decrease it, use
        // 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
        require(
            (value == 0) || (token.allowance(address(this), spender) == 0),
            "SafeERC20: approve from non-zero to non-zero allowance"
        );
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value));
    }

    function safeIncreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        uint256 newAllowance = token.allowance(address(this), spender) + value;
        _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
    }

    function safeDecreaseAllowance(
        IERC20 token,
        address spender,
        uint256 value
    ) internal {
        unchecked {
            uint256 oldAllowance = token.allowance(address(this), spender);
            require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
            uint256 newAllowance = oldAllowance - value;
            _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
        }
    }

    function safePermit(
        IERC20Permit token,
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal {
        uint256 nonceBefore = token.nonces(owner);
        token.permit(owner, spender, value, deadline, v, r, s);
        uint256 nonceAfter = token.nonces(owner);
        require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed");
    }

    /**
     * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement
     * on the return value: the return value is optional (but if data is returned, it must not be false).
     * @param token The token targeted by the call.
     * @param data The call data (encoded using abi.encode or one of its variants).
     */
    function _callOptionalReturn(IERC20 token, bytes memory data) private {
        // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since
        // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that
        // the target address contains contract code and also asserts for success in the low-level call.

        bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed");
        if (returndata.length > 0) {
            // Return data is optional
            require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
        }
    }
}

File 6 of 16 : IERC20Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

import "../IERC20.sol";

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}

File 7 of 16 : ERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;

import "./IERC20.sol";
import "./extensions/IERC20Metadata.sol";
import "../../utils/Context.sol";

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * overridden;
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

    /**
     * @dev See {IERC20-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     * @dev Hook that is called before any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * will be transferred to `to`.
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}
}

File 8 of 16 : Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // Look for revert reason and bubble it up if present
        if (returndata.length > 0) {
            // The easiest way to bubble the revert reason is using memory via assembly
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}

File 9 of 16 : draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in
 * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612].
 *
 * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by
 * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't
 * need to send a transaction, and thus is not required to hold Ether at all.
 */
interface IERC20Permit {
    /**
     * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens,
     * given ``owner``'s signed approval.
     *
     * IMPORTANT: The same issues {IERC20-approve} has related to transaction
     * ordering also apply here.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `deadline` must be a timestamp in the future.
     * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner`
     * over the EIP712-formatted function arguments.
     * - the signature must use ``owner``'s current nonce (see {nonces}).
     *
     * For more information on the signature format, see the
     * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP
     * section].
     */
    function permit(
        address owner,
        address spender,
        uint256 value,
        uint256 deadline,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) external;

    /**
     * @dev Returns the current nonce for `owner`. This value must be
     * included whenever a signature is generated for {permit}.
     *
     * Every successful call to {permit} increases ``owner``'s nonce by one. This
     * prevents a signature from being used multiple times.
     */
    function nonces(address owner) external view returns (uint256);

    /**
     * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}.
     */
    // solhint-disable-next-line func-name-mixedcase
    function DOMAIN_SEPARATOR() external view returns (bytes32);
}

File 10 of 16 : IERC20.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);
}

File 11 of 16 : Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 12 of 16 : ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 13 of 16 : Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/Strings.sol)

pragma solidity ^0.8.0;

import "./math/Math.sol";

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _SYMBOLS = "0123456789abcdef";
    uint8 private constant _ADDRESS_LENGTH = 20;

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), _SYMBOLS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH);
    }
}

File 14 of 16 : IAccessControl.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {AccessControl-_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) external view returns (bool);

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {AccessControl-_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) external view returns (bytes32);

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) external;

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) external;
}

File 15 of 16 : IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

File 16 of 16 : Math.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)

pragma solidity ^0.8.0;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    enum Rounding {
        Down, // Toward negative infinity
        Up, // Toward infinity
        Zero // Toward zero
    }

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds up instead
     * of rounding down.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
     * with further edits by Uniswap Labs also under MIT license.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator
    ) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // 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(x, y, not(0))
                prod0 := mul(x, y)
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                return prod0 / denominator;
            }

            // 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].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
            // See https://cs.stackexchange.com/q/138556/92363.

            // Does not overflow because the denominator cannot be zero at this stage in the function.
            uint256 twos = denominator & (~denominator + 1);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            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 for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the 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.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // 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 preconditions 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 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(
        uint256 x,
        uint256 y,
        uint256 denominator,
        Rounding rounding
    ) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (rounding == Rounding.Up && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (rounding == Rounding.Up && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10, rounded down, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10**64) {
                value /= 10**64;
                result += 64;
            }
            if (value >= 10**32) {
                value /= 10**32;
                result += 32;
            }
            if (value >= 10**16) {
                value /= 10**16;
                result += 16;
            }
            if (value >= 10**8) {
                value /= 10**8;
                result += 8;
            }
            if (value >= 10**4) {
                value /= 10**4;
                result += 4;
            }
            if (value >= 10**2) {
                value /= 10**2;
                result += 2;
            }
            if (value >= 10**1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (rounding == Rounding.Up && 10**result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256, rounded down, of a positive value.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
        }
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address[3]","name":"_tokens","type":"address[3]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"},{"indexed":false,"internalType":"address","name":"strategyAddr","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"}],"name":"AddedPool","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[],"name":"AutoCompoundAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"feeValue","type":"uint256"}],"name":"ClaimedAllManagementFee","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"}],"name":"CreatedPendingDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"uint256","name":"lpShares","type":"uint256"},{"indexed":false,"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"}],"name":"CreatedPendingWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"},{"indexed":false,"internalType":"uint256","name":"lpShares","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"depositor","type":"address"},{"indexed":false,"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"},{"indexed":false,"internalType":"uint256","name":"lpShares","type":"uint256"}],"name":"FailedDeposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"},{"indexed":false,"internalType":"uint256","name":"lpShares","type":"uint256"}],"name":"FailedWithdrawal","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"}],"name":"SetDefaultDepositPid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"pid","type":"uint256"}],"name":"SetDefaultWithdrawPid","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"withdrawer","type":"address"},{"indexed":false,"internalType":"enum IStrategy.WithdrawalType","name":"withdrawalType","type":"uint8"},{"indexed":false,"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"},{"indexed":false,"internalType":"uint256","name":"lpShares","type":"uint256"},{"indexed":false,"internalType":"uint128","name":"tokenIndex","type":"uint128"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"ALL_WITHDRAWAL_TYPES_MASK","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FEE_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUNDS_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"LP_RATIO_MULTIPLIER","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MIN_LOCK_TIME","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OPERATOR_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"POOL_ASSETS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_strategyAddr","type":"address"}],"name":"addPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"autoCompoundAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"availableWithdrawalTypes","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"calcManagementFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"},{"internalType":"bool","name":"isDeposit","type":"bool"}],"name":"calcSharesAmount","outputs":[{"internalType":"uint256","name":"lpShares","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpShares","type":"uint256"},{"internalType":"uint128","name":"tokenIndex","type":"uint128"}],"name":"calcWithdrawOneCoin","outputs":[{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claimAllManagementFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userList","type":"address[]"}],"name":"completeFeesOptimizationDeposits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userList","type":"address[]"}],"name":"completeFeesOptimizationWithdrawals","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"userList","type":"address[]"}],"name":"completeFeesOptimizationWithdrawalsMk2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"decimalsMultipliers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultDepositPid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"defaultWithdrawPid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"}],"name":"deposit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[3]","name":"amounts","type":"uint256[3]"}],"name":"feesOptimizationDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpShares","type":"uint256"},{"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"}],"name":"feesOptimizationWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"launched","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lpPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"managementFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_strategies","type":"uint256[]"},{"internalType":"uint256[]","name":"withdrawalsPercents","type":"uint256[]"},{"internalType":"uint256","name":"_receiverStrategyId","type":"uint256"}],"name":"moveFundsBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"pendingDeposits","outputs":[{"internalType":"uint256[3]","name":"","type":"uint256[3]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"tokenIndex","type":"uint256"}],"name":"pendingDepositsToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"pendingWithdrawals","outputs":[{"components":[{"internalType":"uint256","name":"lpShares","type":"uint256"},{"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"}],"internalType":"struct DSF.PendingWithdrawal","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"pid","type":"uint256"}],"name":"poolInfo","outputs":[{"components":[{"internalType":"contract IStrategy","name":"strategy","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"lpShares","type":"uint256"}],"internalType":"struct DSF.PoolInfo","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removePendingDeposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removePendingWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"newAvailableWithdrawalTypes","type":"uint8"}],"name":"setAvailableWithdrawalTypes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPoolId","type":"uint256"}],"name":"setDefaultDepositPid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPoolId","type":"uint256"}],"name":"setDefaultWithdrawPid","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newManagementFee","type":"uint256"}],"name":"setManagementFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"tokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDeposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalHoldings","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOperator","type":"address"}],"name":"updateOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"lpShares","type":"uint256"},{"internalType":"uint256[3]","name":"tokenAmounts","type":"uint256[3]"},{"internalType":"enum IStrategy.WithdrawalType","name":"withdrawalType","type":"uint8"},{"internalType":"uint128","name":"tokenIndex","type":"uint128"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20Metadata","name":"_token","type":"address"}],"name":"withdrawStuckToken","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052600060135560966014556015805460ff191690553480156200002557600080fd5b506040516200570c3803806200570c833981016040819052620000489162000404565b60408051808201825260058082526404453464c560dc1b6020808401828152855180870190965292855284015281519192916200008891600391620002f6565b5080516200009e906004906020840190620002f6565b50506005805460ff1916905550620000ba600b82600362000385565b50620000c86000336200022f565b620000f47f97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b929336200022f565b60005b60038110156200021a576000600b826003811062000119576200011962000657565b0160009054906101000a90046001600160a01b03166001600160a01b031663313ce5676040518163ffffffff1660e01b815260040160206040518083038186803b1580156200016757600080fd5b505afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a291906200049b565b60ff1690506012811015620001e957620001be816012620005cc565b620001cb90600a62000510565b600e8360038110620001e157620001e162000657565b015562000204565b6001600e836003811062000201576200020162000657565b01555b5080620002118162000623565b915050620000f7565b5050600a805460ff1916600317905562000683565b6200023b82826200023f565b5050565b6200024b8282620002c9565b6200023b5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055620002853390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008281526006602090815260408083206001600160a01b038516845290915290205460ff165b92915050565b8280546200030490620005e6565b90600052602060002090601f01602090048101928262000328576000855562000373565b82601f106200034357805160ff191683800117855562000373565b8280016001018555821562000373579182015b828111156200037357825182559160200191906001019062000356565b5062000381929150620003d0565b5090565b826003810192821562000373579160200282015b828111156200037357825182546001600160a01b0319166001600160a01b0390911617825560209092019160019091019062000399565b5b80821115620003815760008155600101620003d1565b80516001600160a01b0381168114620003ff57600080fd5b919050565b6000606082840312156200041757600080fd5b82601f8301126200042757600080fd5b604051606081016001600160401b03811182821017156200044c576200044c6200066d565b6040528083606081018610156200046257600080fd5b60005b600381101562000490576200047a82620003e7565b8352602092830192919091019060010162000465565b509195945050505050565b600060208284031215620004ae57600080fd5b815160ff81168114620004c057600080fd5b9392505050565b600181815b8085111562000508578160001904821115620004ec57620004ec62000641565b80851615620004fa57918102915b93841c9390800290620004cc565b509250929050565b6000620004c083836000826200052957506001620002f0565b816200053857506000620002f0565b81600181146200055157600281146200055c576200057c565b6001915050620002f0565b60ff84111562000570576200057062000641565b50506001821b620002f0565b5060208310610133831016604e8410600b8410161715620005a1575081810a620002f0565b620005ad8383620004c7565b8060001904821115620005c457620005c462000641565b029392505050565b600082821015620005e157620005e162000641565b500390565b600181811c90821680620005fb57607f821691505b602082108114156200061d57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200063a576200063a62000641565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b61507980620006936000396000f3fe608060405234801561001057600080fd5b50600436106103e55760003560e01c80638c744e721161020a578063c4883fc311610125578063eb3349b9116100b8578063f525cb6811610087578063f525cb6814610854578063f5b541a61461085c578063f66f807b14610871578063fe56e23214610879578063ff50abdc1461088c57600080fd5b8063eb3349b9146107f8578063ee03dfca14610818578063f23723c014610821578063f3f437031461083457600080fd5b8063d73792a9116100f4578063d73792a9146107c1578063d914cd4b146107ca578063dd62ed3e146107dd578063e9ec2e99146107f057600080fd5b8063c4883fc31461075f578063d4e20b0114610788578063d547741f1461079b578063d71959b1146107ae57600080fd5b8063a457c2d71161019d578063ac7475ed1161016c578063ac7475ed14610723578063ad5e347214610736578063ba346f521461073f578063c200f25f1461075257600080fd5b8063a457c2d7146106f4578063a6f7f5d614610707578063a8ce332014610660578063a9059cbb1461071057600080fd5b80639f6d1d61116101d95780639f6d1d61146106be578063a0394b4c146106d1578063a217fddf146106e4578063a2ab15a4146106ec57600080fd5b80638c744e721461067d57806391d148541461069057806395d89b41146106a35780639958527d146106ab57600080fd5b8063313ce567116103055780634ccf201311610298578063616921e911610267578063616921e91461062457806370a082311461063757806375451b4f146106605780638091f3bf146106685780638456cb591461067557600080fd5b80634ccf2013146105c85780634f64b2be146105db5780635c975abb146106065780635d4d77b81461061157600080fd5b80633f4ba83a116102d45780633f4ba83a146105945780633fe356cf1461059c5780633ff03207146105ab57806345a30827146105b557600080fd5b8063313ce5671461054657806336568abe1461055b578063395093511461056e5780633c7226e41461058157600080fd5b80630ec97c211161037d57806323b872dd1161034c57806323b872dd146104f4578063248a9ca3146105075780632a47d0391461052a5780632f2ff15d1461053357600080fd5b80630ec97c21146104885780631526fe271461049b578063168a0e0b146104d957806318160ddd146104ec57600080fd5b806306fdde03116103b957806306fdde0314610437578063095ea7b31461044c5780630c2804441461045f5780630e8242ff1461047557600080fd5b8062acb144146103ea57806301339c21146103f457806301ffc9a7146103fc578063068acf6c14610424575b600080fd5b6103f2610895565b005b6103f26109a2565b61040f61040a3660046149d4565b6109bd565b60405190151581526020015b60405180910390f35b6103f261043236600461475f565b6109f4565b61043f610a9a565b60405161041b9190614cb5565b61040f61045a3660046147f6565b610b2c565b610467610b44565b60405190815260200161041b565b6103f2610483366004614822565b610b78565b6103f2610496366004614a17565b61146f565b6104ae6104a9366004614996565b611550565b6040805182516001600160a01b0316815260208084015190820152918101519082015260600161041b565b6103f26104e73660046148c3565b6115d9565b600254610467565b61040f6105023660046147b5565b611708565b610467610515366004614996565b60009081526006602052604090206001015490565b61046760085481565b6103f26105413660046149af565b61172e565b60125b60405160ff909116815260200161041b565b6103f26105693660046149af565b611753565b61040f61057c3660046147f6565b6117cd565b61046761058f366004614a98565b6117ef565b6103f261191c565b610467670de0b6b3a764000081565b6104676201518081565b6103f26105c3366004614abb565b611932565b6103f26105d6366004614822565b6119b6565b6105ee6105e9366004614996565b611f01565b6040516001600160a01b03909116815260200161041b565b60055460ff1661040f565b61046761061f366004614996565b611f21565b6103f2610632366004614a44565b611f3e565b61046761064536600461475f565b6001600160a01b031660009081526020819052604090205490565b610549600381565b60155461040f9060ff1681565b6103f26122de565b61046761068b366004614996565b6122f1565b61040f61069e3660046149af565b612308565b61043f612333565b6104676106b93660046148df565b612342565b6103f26106cc366004614996565b6123e9565b6103f26106df366004614822565b612492565b610467600081565b6103f26128ca565b61040f6107023660046147f6565b61296c565b61046760145481565b61040f61071e3660046147f6565b6129f2565b6103f261073136600461475f565b612a00565b61046761271081565b6103f261074d36600461490c565b612a23565b600a546105499060ff1681565b6103f2336000908152601260205260408120818155600181018290556002810182905560030155565b6104676107963660046148c3565b612ec0565b6103f26107a93660046149af565b6131ae565b6104676107bc3660046147f6565b6131d3565b6104676103e881565b6103f26107d836600461475f565b613205565b6104676107eb36600461477c565b6133a7565b6104676133d2565b61080b61080636600461475f565b6134a1565b60405161041b9190614bfe565b61046760095481565b6103f261082f366004614996565b6134f3565b61084761084236600461475f565b613593565b60405161041b9190614dfb565b600754610467565b61046760008051602061500483398151915281565b6103f2613601565b6103f2610887366004614996565b6136c5565b61046760135481565b6000805b60075481101561096b57600781815481106108b6576108b6614fb4565b906000526020600020906003020160000160009054906101000a90046001600160a01b03166001600160a01b0316635c91bba06040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561091557600080fd5b505af1158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d91906149fe565b6109579083614e7f565b91508061096381614f6d565b915050610899565b506040518181527f228916455433a556d3bb467eadcfbc1396db4a7982ef3b8f601248a5a48e07df9060200160405180910390a150565b60006109ad81613718565b506015805460ff19166001179055565b60006001600160e01b03198216637965db0b60e01b14806109ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006109ff81613718565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610a4157600080fd5b505afa158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7991906149fe565b90508015610a9557610a956001600160a01b0384163383613722565b505050565b606060038054610aa990614f32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad590614f32565b8015610b225780601f10610af757610100808354040283529160200191610b22565b820191906000526020600020905b815481529060010190602001808311610b0557829003601f168201915b5050505050905090565b600033610b3a818585613785565b5060019392505050565b6000610b4f60025490565b610b576133d2565b610b6990670de0b6b3a7640000614eb9565b610b739190614e97565b905090565b600080516020615004833981519152610b9081613718565b600754610bb85760405162461bcd60e51b8152600401610baf90614d80565b60405180910390fd5b600760085481548110610bcd57610bcd614fb4565b906000526020600020906003020160010154421015610bfe5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110610c1357610c13614fb4565b906000526020600020906003020160010154421015610c445760405162461bcd60e51b8152600401610baf90614db0565b6000825111610c655760405162461bcd60e51b8152600401610baf90614d32565b6000600760095481548110610c7c57610c7c614fb4565b600091825260208220600390910201546001600160a01b03169150610c9f6145d0565b600080610caa6145ee565b600092505b8751831015610e8d57878381518110610cca57610cca614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293965093909290840191600184019060039082845b815481526020019060010190808311610d195750505050508152505090508060000151610d5b836001600160a01b031660009081526020819052604090205490565b1015610dc957602081015181516040516001600160a01b0385169260008051602061502483398151915292610d8f92614c29565b60405180910390a26001600160a01b0382166000908152601260205260408120818155600181018290556002810182905560030155610e7b565b8051610dd59086614e7f565b6020820151518551919650908590610dee908390614e7f565b9052506020818101518101519085018051610e0a908390614e7f565b90525060208101516040908101519085018051610e28908390614e7f565b905250602081015181516040516001600160a01b038516927ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e792610e729260009291908390614c7c565b60405180910390a25b82610e8581614f6d565b935050610caf565b600760095481548110610ea257610ea2614fb4565b906000526020600020906003020160020154851115610f035760405162461bcd60e51b815260206004820181905260248201527f4453463a20496e73756666696369656e7420706f6f6c204c50207368617265736044820152606401610baf565b610f0b6145d0565b600093505b6003841015610fcf57600b8460038110610f2c57610f2c614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610f6e57600080fd5b505afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906149fe565b818560038110610fb857610fb8614fb4565b602002015283610fc781614f6d565b945050610f10565b866001600160a01b03166378a59a253061100f89600760095481548110610ff857610ff8614fb4565b9060005260206000209060030201600201546138a9565b886000806040518663ffffffff1660e01b8152600401611033959493929190614bb4565b602060405180830381600087803b15801561104d57600080fd5b505af1158015611061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110859190614979565b61119957600093505b885184101561118e578884815181106110a9576110a9614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293975093909290840191600184019060039082845b8154815260200190600101908083116110f8575050505050815250509150826001600160a01b031660008051602061502483398151915283602001518460000151604051611147929190614c29565b60405180910390a26001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301558361118681614f6d565b94505061108e565b505050505050505050565b6111a16145d0565b600094505b6003851015611286578185600381106111c1576111c1614fb4565b6020020151600b86600381106111d9576111d9614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125391906149fe565b61125d9190614ed8565b81866003811061126f5761126f614fb4565b60200201528461127e81614f6d565b9550506111a6565b600094505b8951851015611462578985815181106112a6576112a6614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293985093909290840191600184019060039082845b8154815260200190600101908083116112f5575050505050815250509250600061131e60025490565b845160135461132d9190614eb9565b6113379190614e97565b905061134785856000015161392e565b836000015160076009548154811061136157611361614fb4565b906000526020600020906003020160020160008282546113819190614ed8565b92505081905550806013600082825461139a9190614ed8565b9091555060009050805b60038110156114205785518a908583600381106113c3576113c3614fb4565b60200201516113d29190614eb9565b6113dc9190614e97565b9150811561140e5761140e8783600b84600381106113fc576113fc614fb4565b01546001600160a01b03169190613722565b8061141881614f6d565b9150506113a4565b5050506001600160a01b03841660009081526012602052604081208181556001810182905560028101829055600301558461145a81614f6d565b95505061128b565b50505050505050505b5050565b611477613a60565b600082116114c75760405162461bcd60e51b815260206004820152601e60248201527f4453463a206c70416d6f756e74206d75737420626520686967686572203000006044820152606401610baf565b6114cf6145ee565b828152602080820183815233600081815260129093526040909220835181559051839190611503906001830190600361460d565b50905050806001600160a01b03167fc3c426c0e566ff35f20fbd76a596d6d93b093323996bf650dcae8643b9f522618585604051611542929190614e16565b60405180910390a250505050565b61157d604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b6007828154811061159057611590614fb4565b600091825260209182902060408051606081018252600390930290910180546001600160a01b031683526001810154938301939093526002909201549181019190915292915050565b6115e1613a60565b60005b60038110156116c357600082826003811061160157611601614fb4565b602002015111156116b15761164e333084846003811061162357611623614fb4565b6020020151600b856003811061163b5761163b614fb4565b01546001600160a01b0316929190613aa6565b81816003811061166057611660614fb4565b602002015160116000336001600160a01b03166001600160a01b03168152602001908152602001600020826003811061169b5761169b614fb4565b0160008282546116ab9190614e7f565b90915550505b806116bb81614f6d565b9150506115e4565b50336001600160a01b03167f2ae214f16931b89602eb4679edbc32b59935654512f74ff17de3f5cc611310db826040516116fd9190614bfe565b60405180910390a250565b600033611716858285613ae4565b611721858585613b58565b60019150505b9392505050565b60008281526006602052604090206001015461174981613718565b610a958383613cfc565b6001600160a01b03811633146117c35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610baf565b61146b8282613d82565b600033610b3a8185856117e083836133a7565b6117ea9190614e7f565b613785565b60006117fa33610645565b8311156118495760405162461bcd60e51b815260206004820152601a60248201527f4453463a206e6f7420656e6f756768204c502062616c616e63650000000000006044820152606401610baf565b600061186484600760095481548110610ff857610ff8614fb4565b905060076009548154811061187b5761187b614fb4565b6000918252602090912060039091020154604051630f1c89b960e21b8152600481018390526001600160801b03851660248201526001600160a01b0390911690633c7226e49060440160206040518083038186803b1580156118dc57600080fd5b505afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191491906149fe565b949350505050565b600061192781613718565b61192f613de9565b50565b600061193d81613718565b600360ff8316111561199f5760405162461bcd60e51b815260206004820152602560248201527f4453463a2077726f6e6720617661696c61626c65207769746864726177616c20604482015264747970657360d81b6064820152608401610baf565b50600a805460ff191660ff92909216919091179055565b6000805160206150048339815191526119ce81613718565b6007546119ed5760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110611a0257611a02614fb4565b906000526020600020906003020160010154421015611a335760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110611a4857611a48614fb4565b906000526020600020906003020160010154421015611a795760405162461bcd60e51b8152600401610baf90614db0565b6000600760085481548110611a9057611a90614fb4565b600091825260208220600390910201546001600160a01b03169150611ab36133d2565b90506000611abf6145d0565b6000865167ffffffffffffffff811115611adb57611adb614fca565b604051908082528060200260200182016040528015611b04578160200160208202803683370190505b50905060005b8751811015611c0f576000935060005b6003811015611bde576000601160008b8581518110611b3b57611b3b614fb4565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208260038110611b7457611b74614fb4565b0154905080858360038110611b8b57611b8b614fb4565b60200201818151611b9c9190614e7f565b905250600e8260038110611bb257611bb2614fb4565b0154611bbe9082614eb9565b611bc89087614e7f565b9550508080611bd690614f6d565b915050611b1a565b5083828281518110611bf257611bf2614fb4565b602090810291909101015280611c0781614f6d565b915050611b0a565b506000925060005b6003811015611c97576000838260038110611c3457611c34614fb4565b602002015190508015611c8457600e8260038110611c5457611c54614fb4565b0154611c609082614eb9565b611c6a9086614e7f565b9450611c848782600b85600381106113fc576113fc614fb4565b5080611c8f81614f6d565b915050611c17565b5060405163d4e20b0160e01b81526000906001600160a01b0387169063d4e20b0190611cc7908690600401614bfe565b602060405180830381600087803b158015611ce157600080fd5b505af1158015611cf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1991906149fe565b905060008111611d635760405162461bcd60e51b81526020600482015260156024820152744453463a20746f6f206c6f77206465706f7369742160581b6044820152606401610baf565b6000806000805b8b51811015611edc5787868281518110611d8657611d86614fb4565b602002602001015186611d999190614eb9565b611da39190614e97565b915060008c8281518110611db957611db9614fb4565b60200260200101519050611dcc60025490565b611dd857829450611e03565b611de2848b614e7f565b83611dec60025490565b611df69190614eb9565b611e009190614e97565b94505b611e0d8385614e7f565b9350611e198186613e3b565b84600760085481548110611e2f57611e2f614fb4565b90600052602060002090600302016002016000828254611e4f9190614e7f565b90915550506001600160a01b0381166000818152601160205260409081902090517f6ddb5a571120963c2772a1b5ff7bdfaffaca3ee0278853932bbae407bbbcaba591611e9d918990614c44565b60405180910390a26001600160a01b03166000908152601160205260408120818155600181018290556002015580611ed481614f6d565b915050611d6a565b508160136000828254611eef9190614e7f565b90915550505050505050505050505050565b600b8160038110611f1157600080fd5b01546001600160a01b0316905081565b60006103e860145483611f349190614eb9565b6109ee9190614e97565b611f46613a60565b600754611f655760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110611f7a57611f7a614fb4565b906000526020600020906003020160010154421015611fab5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110611fc057611fc0614fb4565b906000526020600020906003020160010154421015611ff15760405162461bcd60e51b8152600401610baf90614db0565b600a5461201f9060ff1683600181111561200d5761200d614f9e565b600160ff9182161b9190911616151590565b6120765760405162461bcd60e51b815260206004820152602260248201527f4453463a207769746864726177616c2074797065206e6f7420617661696c61626044820152616c6560f01b6064820152608401610baf565b600060076009548154811061208d5761208d614fb4565b600091825260208220600390910201546001600160a01b031691506120af3390565b9050856120d1826001600160a01b031660009081526020819052604090205490565b101561211f5760405162461bcd60e51b815260206004820152601a60248201527f4453463a206e6f7420656e6f756768204c502062616c616e63650000000000006044820152606401610baf565b816001600160a01b03166378a59a258261214889600760095481548110610ff857610ff8614fb4565b8888886040518663ffffffff1660e01b815260040161216b959493929190614bb4565b602060405180830381600087803b15801561218557600080fd5b505af1158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190614979565b6122095760405162461bcd60e51b815260206004820152601e60248201527f4453463a20696e636f727265637420776974686472617720706172616d7300006044820152606401610baf565b600061221460025490565b876013546122229190614eb9565b61222c9190614e97565b9050612238828861392e565b8660076009548154811061224e5761224e614fb4565b9060005260206000209060030201600201600082825461226e9190614ed8565b9250508190555080601360008282546122879190614ed8565b92505081905550816001600160a01b03167ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e786888a886040516122cd9493929190614c7c565b60405180910390a250505050505050565b60006122e981613718565b61192f613efa565b600e816003811061230157600080fd5b0154905081565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610aa990614f32565b600060076009548154811061235957612359614fb4565b6000918252602090912060039091020154604051639958527d60e01b81526001600160a01b0390911690639958527d906123999086908690600401614c0c565b60206040518083038186803b1580156123b157600080fd5b505afa1580156123c5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172791906149fe565b60006123f481613718565b60075482106124555760405162461bcd60e51b815260206004820152602760248201527f4453463a20696e636f72726563742064656661756c74207769746864726177206044820152661c1bdbdb081a5960ca1b6064820152608401610baf565b60098290556040518281527f0df37b4befe1955e495c9d20d1912039820f0738ac30c49cf4542ecf04c4fef5906020015b60405180910390a15050565b6000805160206150048339815191526124aa81613718565b6007546124c95760405162461bcd60e51b8152600401610baf90614d80565b6007600854815481106124de576124de614fb4565b90600052602060002090600302016001015442101561250f5760405162461bcd60e51b8152600401610baf90614ce8565b60076009548154811061252457612524614fb4565b9060005260206000209060030201600101544210156125555760405162461bcd60e51b8152600401610baf90614db0565b60008251116125765760405162461bcd60e51b8152600401610baf90614d32565b600060076009548154811061258d5761258d614fb4565b600091825260208220600390910201546001600160a01b031691506125b06145ee565b60005b85518110156128c2578581815181106125ce576125ce614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293975093909290840191600184019060039082845b81548152602001906001019080831161261d575050505050815250509150816000015161265f846001600160a01b031660009081526020819052604090205490565b10156126cd57602082015182516040516001600160a01b038616926000805160206150248339815191529261269392614c29565b60405180910390a26001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301556128b0565b836001600160a01b03166378a59a25846126fa8560000151600760095481548110610ff857610ff8614fb4565b85602001516000806040518663ffffffff1660e01b8152600401612722959493929190614bb4565b602060405180830381600087803b15801561273c57600080fd5b505af1158015612750573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127749190614979565b6127a657602082015182516040516001600160a01b038616926000805160206150248339815191529261269392614c29565b60006127b160025490565b83516013546127c09190614eb9565b6127ca9190614e97565b90506127da84846000015161392e565b82600001516007600954815481106127f4576127f4614fb4565b906000526020600020906003020160020160008282546128149190614ed8565b92505081905550806013600082825461282d9190614ed8565b9091555050602083015183516040516001600160a01b038716927ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e7926128799260009291908390614c7c565b60405180910390a2506001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301555b806128ba81614f6d565b9150506125b3565b505050505050565b60005b600381101561294a5733600090815260116020526040812082600381106128f6576128f6614fb4565b01541115612938573360008181526011602052604090206129389190836003811061292357612923614fb4565b0154600b84600381106113fc576113fc614fb4565b8061294281614f6d565b9150506128cd565b503360009081526011602052604081208181556001810182905560020155565b565b6000338161297a82866133a7565b9050838110156129da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610baf565b6129e78286868403613785565b506001949350505050565b600033610b3a818585613b58565b6000612a0b81613718565b61146b60008051602061500483398151915283613cfc565b6000612a2e81613718565b8251845114612a975760405162461bcd60e51b815260206004820152602f60248201527f4453463a20696e636f727265637420617267756d656e747320666f722074686560448201526e040dadeecca8ceadcc8e684c2e8c6d608b1b6064820152608401610baf565b6007548210612af45760405162461bcd60e51b8152602060048201526024808201527f4453463a20696e636f72726563742061207265636976657220737472617465676044820152631e48125160e21b6064820152608401610baf565b612afc6145d0565b60005b6003811015612bbe57600b8160038110612b1b57612b1b614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015612b5d57600080fd5b505afa158015612b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9591906149fe565b828260038110612ba757612ba7614fb4565b602002015280612bb681614f6d565b915050612aff565b5060008060005b8751811015612c2b57878181518110612be057612be0614fb4565b60200260200101519250612c0d83888381518110612c0057612c00614fb4565b6020026020010151613f37565b612c179083614e7f565b915080612c2381614f6d565b915050612bc5565b50612c346145d0565b60005b6003811015612d9157848160038110612c5257612c52614fb4565b6020020151600b8260038110612c6a57612c6a614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015612cac57600080fd5b505afa158015612cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce491906149fe565b612cee9190614ed8565b828260038110612d0057612d00614fb4565b60200201526000828260038110612d1957612d19614fb4565b60200201511115612d7f57612d7f60078881548110612d3a57612d3a614fb4565b60009182526020909120600391820201546001600160a01b031690849084908110612d6757612d67614fb4565b6020020151600b84600381106113fc576113fc614fb4565b80612d8981614f6d565b915050612c37565b508160078781548110612da657612da6614fb4565b90600052602060002090600302016002016000828254612dc69190614e7f565b92505081905550600060078781548110612de257612de2614fb4565b600091825260209091206003909102015460405163d4e20b0160e01b81526001600160a01b039091169063d4e20b0190612e20908590600401614bfe565b602060405180830381600087803b158015612e3a57600080fd5b505af1158015612e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7291906149fe565b11612eb65760405162461bcd60e51b81526020600482015260146024820152734453463a20546f6f206c6f7720616d6f756e742160601b6044820152606401610baf565b5050505050505050565b6000612eca613a60565b600754612ee95760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110612efe57612efe614fb4565b906000526020600020906003020160010154421015612f2f5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110612f4457612f44614fb4565b906000526020600020906003020160010154421015612f755760405162461bcd60e51b8152600401610baf90614db0565b6000600760085481548110612f8c57612f8c614fb4565b600091825260208220600390910201546001600160a01b03169150612faf6133d2565b905060005b6003811015613005576000858260038110612fd157612fd1614fb4565b60200201511115612ff357612ff3338487846003811061162357611623614fb4565b80612ffd81614f6d565b915050612fb4565b5060405163d4e20b0160e01b81526000906001600160a01b0384169063d4e20b0190613035908890600401614bfe565b602060405180830381600087803b15801561304f57600080fd5b505af1158015613063573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061308791906149fe565b9050600081116130d15760405162461bcd60e51b81526020600482015260156024820152744453463a20746f6f206c6f77206465706f7369742160581b6044820152606401610baf565b60006130dc60025490565b6130e7575080613109565b82826130f260025490565b6130fc9190614eb9565b6131069190614e97565b90505b6131133382613e3b565b8060076008548154811061312957613129614fb4565b906000526020600020906003020160020160008282546131499190614e7f565b9250508190555081601360008282546131629190614e7f565b909155505060405133907f6ddb5a571120963c2772a1b5ff7bdfaffaca3ee0278853932bbae407bbbcaba59061319b9089908590614c29565b60405180910390a293505050505b919050565b6000828152600660205260409020600101546131c981613718565b610a958383613d82565b6001600160a01b038216600090815260116020526040812082600381106131fc576131fc614fb4565b01549392505050565b600061321081613718565b6001600160a01b0382166132665760405162461bcd60e51b815260206004820152601760248201527f4453463a207a65726f20737472617465677920616464720000000000000000006044820152606401610baf565b60155460009060ff1661327a57600061327f565b620151805b6132899042614e7f565b604080516060810182526001600160a01b03868116825260208201848152600093830184815260078054600180820183559682905294517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600390960295860180546001600160a01b031916919095161790935590517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a90920191909155549192507f1496d53b2abcedd3c10f20ce28c997e2b25a426e63ab8913ad6e962697c0d7be9161337c9190614ed8565b604080519182526001600160a01b0386166020830152810183905260600160405180910390a1505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60075460009081805b8281101561349a57600781815481106133f6576133f6614fb4565b6000918252602091829020600390910201546040805163e9ec2e9960e01b815290516001600160a01b039092169263e9ec2e9992600480840193829003018186803b15801561344457600080fd5b505afa158015613458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061347c91906149fe565b6134869083614e7f565b91508061349281614f6d565b9150506133db565b5092915050565b6134a96145d0565b6001600160a01b03821660009081526011602052604090819020815160608101928390529160039082845b8154815260200190600101908083116134d45750505050509050919050565b60006134fe81613718565b600754821061355e5760405162461bcd60e51b815260206004820152602660248201527f4453463a20696e636f72726563742064656661756c74206465706f73697420706044820152651bdbdb081a5960d21b6064820152608401610baf565b60088290556040518281527fecef23c1a5909f263ee74730200856ecdaaf8f02c2e2cf36ab21c84dca23770f90602001612486565b61359b6145ee565b6001600160a01b03821660009081526012602090815260409182902082518084018452815481528351606081019485905290939192840191600184019060039082845b8154815260200190600101908083116135de575050505050815250509050919050565b60005b600754811015613699576007818154811061362157613621614fb4565b600091825260208220600390910201546040805163410e02bb60e11b815290516001600160a01b039092169263821c05769260048084019382900301818387803b15801561366e57600080fd5b505af1158015613682573d6000803e3d6000fd5b50505050808061369190614f6d565b915050613604565b506040517f29aeb662d3fc5de1cd1fa30d59f63ca51e5c9e0fa6e79df5844b294be9cbaab790600090a1565b60006136d081613718565b6103e882106137125760405162461bcd60e51b815260206004820152600e60248201526d4453463a2077726f6e672066656560901b6044820152606401610baf565b50601455565b61192f813361418e565b6040516001600160a01b038316602482015260448101829052610a9590849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526141e7565b6001600160a01b0383166137e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610baf565b6001600160a01b0382166138485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610baf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000816138be670de0b6b3a764000085614eb9565b6138c89190614e97565b90506000811180156138e25750670de0b6b3a76400008111155b6109ee5760405162461bcd60e51b815260206004820152601760248201527f4453463a2057726f6e67206f7574206c7020526174696f0000000000000000006044820152606401610baf565b6001600160a01b03821661398e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610baf565b6001600160a01b03821660009081526020819052604090205481811015613a025760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610baf565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60055460ff161561296a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610baf565b6040516001600160a01b0380851660248301528316604482015260648101829052613ade9085906323b872dd60e01b9060840161374e565b50505050565b6000613af084846133a7565b90506000198114613ade5781811015613b4b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610baf565b613ade8484848403613785565b6001600160a01b038316613bbc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610baf565b6001600160a01b038216613c1e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610baf565b6001600160a01b03831660009081526020819052604090205481811015613c965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610baf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3613ade565b613d068282612308565b61146b5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055613d3e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b613d8c8282612308565b1561146b5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b613df16142b9565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216613e915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610baf565b8060026000828254613ea39190614e7f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b613f02613a60565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613e1e3390565b6000806127108314156140125760078481548110613f5757613f57614fb4565b600091825260208220600390910201546040805163429c145b60e11b815290516001600160a01b039092169263853828b69260048084019382900301818387803b158015613fa457600080fd5b505af1158015613fb8573d6000803e3d6000fd5b5050505060078481548110613fcf57613fcf614fb4565b9060005260206000209060030201600201549050600060078581548110613ff857613ff8614fb4565b906000526020600020906003020160020181905550611727565b612710836007868154811061402957614029614fb4565b9060005260206000209060030201600201546140459190614eb9565b61404f9190614e97565b90506140596145d0565b6007858154811061406c5761406c614fb4565b906000526020600020906003020160000160009054906101000a90046001600160a01b03166001600160a01b03166378a59a25306140b78560078a81548110610ff857610ff8614fb4565b846000806040518663ffffffff1660e01b81526004016140db959493929190614bb4565b602060405180830381600087803b1580156140f557600080fd5b505af1158015614109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061412d9190614979565b50816007868154811061414257614142614fb4565b90600052602060002090600302016002015461415e9190614ed8565b6007868154811061417157614171614fb4565b906000526020600020906003020160020181905550509392505050565b6141988282612308565b61146b576141a581614302565b6141b0836020614314565b6040516020016141c1929190614b3f565b60408051601f198184030181529082905262461bcd60e51b8252610baf91600401614cb5565b600061423c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144b09092919063ffffffff16565b805190915015610a95578080602001905181019061425a9190614979565b610a955760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610baf565b60055460ff1661296a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610baf565b60606109ee6001600160a01b03831660145b60606000614323836002614eb9565b61432e906002614e7f565b67ffffffffffffffff81111561434657614346614fca565b6040519080825280601f01601f191660200182016040528015614370576020820181803683370190505b509050600360fc1b8160008151811061438b5761438b614fb4565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106143ba576143ba614fb4565b60200101906001600160f81b031916908160001a90535060006143de846002614eb9565b6143e9906001614e7f565b90505b6001811115614461576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061441d5761441d614fb4565b1a60f81b82828151811061443357614433614fb4565b60200101906001600160f81b031916908160001a90535060049490941c9361445a81614f1b565b90506143ec565b5083156117275760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610baf565b6060611914848460008585600080866001600160a01b031685876040516144d79190614b23565b60006040518083038185875af1925050503d8060008114614514576040519150601f19603f3d011682016040523d82523d6000602084013e614519565b606091505b509150915061452a87838387614535565b979650505050505050565b606083156145a157825161459a576001600160a01b0385163b61459a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610baf565b5081611914565b61191483838151156145b65781518083602001fd5b8060405162461bcd60e51b8152600401610baf9190614cb5565b60405180606001604052806003906020820280368337509192915050565b6040518060400160405280600081526020016146086145d0565b905290565b826003810192821561463b579160200282015b8281111561463b578251825591602001919060010190614620565b5061464792915061464b565b5090565b5b80821115614647576000815560010161464c565b600082601f83011261467157600080fd5b6040516060810181811067ffffffffffffffff8211171561469457614694614fca565b6040528083606081018610156146a957600080fd5b60005b60038110156146cb5781358352602092830192909101906001016146ac565b509195945050505050565b600082601f8301126146e757600080fd5b813560206146fc6146f783614e5b565b614e2a565b80838252828201915082860187848660051b890101111561471c57600080fd5b60005b8581101561473b5781358452928401929084019060010161471f565b5090979650505050505050565b80356001600160801b03811681146131a957600080fd5b60006020828403121561477157600080fd5b813561172781614fe0565b6000806040838503121561478f57600080fd5b823561479a81614fe0565b915060208301356147aa81614fe0565b809150509250929050565b6000806000606084860312156147ca57600080fd5b83356147d581614fe0565b925060208401356147e581614fe0565b929592945050506040919091013590565b6000806040838503121561480957600080fd5b823561481481614fe0565b946020939093013593505050565b6000602080838503121561483557600080fd5b823567ffffffffffffffff81111561484c57600080fd5b8301601f8101851361485d57600080fd5b803561486b6146f782614e5b565b80828252848201915084840188868560051b870101111561488b57600080fd5b600094505b838510156148b75780356148a381614fe0565b835260019490940193918501918501614890565b50979650505050505050565b6000606082840312156148d557600080fd5b6117278383614660565b600080608083850312156148f257600080fd5b6148fc8484614660565b915060608301356147aa81614ff5565b60008060006060848603121561492157600080fd5b833567ffffffffffffffff8082111561493957600080fd5b614945878388016146d6565b9450602086013591508082111561495b57600080fd5b50614968868287016146d6565b925050604084013590509250925092565b60006020828403121561498b57600080fd5b815161172781614ff5565b6000602082840312156149a857600080fd5b5035919050565b600080604083850312156149c257600080fd5b8235915060208301356147aa81614fe0565b6000602082840312156149e657600080fd5b81356001600160e01b03198116811461172757600080fd5b600060208284031215614a1057600080fd5b5051919050565b60008060808385031215614a2a57600080fd5b82359150614a3b8460208501614660565b90509250929050565b60008060008060c08587031215614a5a57600080fd5b84359350614a6b8660208701614660565b9250608085013560028110614a7f57600080fd5b9150614a8d60a08601614748565b905092959194509250565b60008060408385031215614aab57600080fd5b82359150614a3b60208401614748565b600060208284031215614acd57600080fd5b813560ff8116811461172757600080fd5b8060005b6003811015613ade578151845260209384019390910190600101614ae2565b60028110614b1f57634e487b7160e01b600052602160045260246000fd5b9052565b60008251614b35818460208701614eef565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614b77816017850160208801614eef565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614ba8816028840160208801614eef565b01602801949350505050565b6001600160a01b03861681526020810185905260e08101614bd86040830186614ade565b614be560a0830185614b01565b6001600160801b03831660c08301529695505050505050565b606081016109ee8284614ade565b60808101614c1a8285614ade565b82151560608301529392505050565b60808101614c378285614ade565b8260608301529392505050565b60808101818460005b6003811015614c6c578154835260209092019160019182019101614c4d565b5050508260608301529392505050565b60c08101614c8a8287614b01565b614c976020830186614ade565b8360808301526001600160801b03831660a083015295945050505050565b6020815260008251806020840152614cd4816040850160208701614eef565b601f01601f19169190910160400192915050565b6020808252602a908201527f4453463a2064656661756c74206465706f73697420706f6f6c206e6f742073746040820152696172746564207965742160b01b606082015260800190565b6020808252602e908201527f4453463a20746865726520617265206e6f2070656e64696e672077697468647260408201526d6177616c7320726571756573747360901b606082015260800190565b6020808252601690820152754453463a20706f6f6c206e6f7420657869737465642160501b604082015260600190565b6020808252602b908201527f4453463a2064656661756c7420776974686472617720706f6f6c206e6f74207360408201526a746172746564207965742160a81b606082015260800190565b81518152602080830151608083019161349a90840182614ade565b828152608081016117276020830184614ade565b604051601f8201601f1916810167ffffffffffffffff81118282101715614e5357614e53614fca565b604052919050565b600067ffffffffffffffff821115614e7557614e75614fca565b5060051b60200190565b60008219821115614e9257614e92614f88565b500190565b600082614eb457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615614ed357614ed3614f88565b500290565b600082821015614eea57614eea614f88565b500390565b60005b83811015614f0a578181015183820152602001614ef2565b83811115613ade5750506000910152565b600081614f2a57614f2a614f88565b506000190190565b600181811c90821680614f4657607f821691505b60208210811415614f6757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614f8157614f81614f88565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461192f57600080fd5b801515811461192f57600080fdfe97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92931fcea09cd978e6d200e464511ab1e9d45ccb1bbeeb8c13df67061492b643cc0a26469706673582212204b55ea8810f164cb0de04f8990e6ea3fa40924c118fab035e86dc96455123bc864736f6c634300080700330000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106103e55760003560e01c80638c744e721161020a578063c4883fc311610125578063eb3349b9116100b8578063f525cb6811610087578063f525cb6814610854578063f5b541a61461085c578063f66f807b14610871578063fe56e23214610879578063ff50abdc1461088c57600080fd5b8063eb3349b9146107f8578063ee03dfca14610818578063f23723c014610821578063f3f437031461083457600080fd5b8063d73792a9116100f4578063d73792a9146107c1578063d914cd4b146107ca578063dd62ed3e146107dd578063e9ec2e99146107f057600080fd5b8063c4883fc31461075f578063d4e20b0114610788578063d547741f1461079b578063d71959b1146107ae57600080fd5b8063a457c2d71161019d578063ac7475ed1161016c578063ac7475ed14610723578063ad5e347214610736578063ba346f521461073f578063c200f25f1461075257600080fd5b8063a457c2d7146106f4578063a6f7f5d614610707578063a8ce332014610660578063a9059cbb1461071057600080fd5b80639f6d1d61116101d95780639f6d1d61146106be578063a0394b4c146106d1578063a217fddf146106e4578063a2ab15a4146106ec57600080fd5b80638c744e721461067d57806391d148541461069057806395d89b41146106a35780639958527d146106ab57600080fd5b8063313ce567116103055780634ccf201311610298578063616921e911610267578063616921e91461062457806370a082311461063757806375451b4f146106605780638091f3bf146106685780638456cb591461067557600080fd5b80634ccf2013146105c85780634f64b2be146105db5780635c975abb146106065780635d4d77b81461061157600080fd5b80633f4ba83a116102d45780633f4ba83a146105945780633fe356cf1461059c5780633ff03207146105ab57806345a30827146105b557600080fd5b8063313ce5671461054657806336568abe1461055b578063395093511461056e5780633c7226e41461058157600080fd5b80630ec97c211161037d57806323b872dd1161034c57806323b872dd146104f4578063248a9ca3146105075780632a47d0391461052a5780632f2ff15d1461053357600080fd5b80630ec97c21146104885780631526fe271461049b578063168a0e0b146104d957806318160ddd146104ec57600080fd5b806306fdde03116103b957806306fdde0314610437578063095ea7b31461044c5780630c2804441461045f5780630e8242ff1461047557600080fd5b8062acb144146103ea57806301339c21146103f457806301ffc9a7146103fc578063068acf6c14610424575b600080fd5b6103f2610895565b005b6103f26109a2565b61040f61040a3660046149d4565b6109bd565b60405190151581526020015b60405180910390f35b6103f261043236600461475f565b6109f4565b61043f610a9a565b60405161041b9190614cb5565b61040f61045a3660046147f6565b610b2c565b610467610b44565b60405190815260200161041b565b6103f2610483366004614822565b610b78565b6103f2610496366004614a17565b61146f565b6104ae6104a9366004614996565b611550565b6040805182516001600160a01b0316815260208084015190820152918101519082015260600161041b565b6103f26104e73660046148c3565b6115d9565b600254610467565b61040f6105023660046147b5565b611708565b610467610515366004614996565b60009081526006602052604090206001015490565b61046760085481565b6103f26105413660046149af565b61172e565b60125b60405160ff909116815260200161041b565b6103f26105693660046149af565b611753565b61040f61057c3660046147f6565b6117cd565b61046761058f366004614a98565b6117ef565b6103f261191c565b610467670de0b6b3a764000081565b6104676201518081565b6103f26105c3366004614abb565b611932565b6103f26105d6366004614822565b6119b6565b6105ee6105e9366004614996565b611f01565b6040516001600160a01b03909116815260200161041b565b60055460ff1661040f565b61046761061f366004614996565b611f21565b6103f2610632366004614a44565b611f3e565b61046761064536600461475f565b6001600160a01b031660009081526020819052604090205490565b610549600381565b60155461040f9060ff1681565b6103f26122de565b61046761068b366004614996565b6122f1565b61040f61069e3660046149af565b612308565b61043f612333565b6104676106b93660046148df565b612342565b6103f26106cc366004614996565b6123e9565b6103f26106df366004614822565b612492565b610467600081565b6103f26128ca565b61040f6107023660046147f6565b61296c565b61046760145481565b61040f61071e3660046147f6565b6129f2565b6103f261073136600461475f565b612a00565b61046761271081565b6103f261074d36600461490c565b612a23565b600a546105499060ff1681565b6103f2336000908152601260205260408120818155600181018290556002810182905560030155565b6104676107963660046148c3565b612ec0565b6103f26107a93660046149af565b6131ae565b6104676107bc3660046147f6565b6131d3565b6104676103e881565b6103f26107d836600461475f565b613205565b6104676107eb36600461477c565b6133a7565b6104676133d2565b61080b61080636600461475f565b6134a1565b60405161041b9190614bfe565b61046760095481565b6103f261082f366004614996565b6134f3565b61084761084236600461475f565b613593565b60405161041b9190614dfb565b600754610467565b61046760008051602061500483398151915281565b6103f2613601565b6103f2610887366004614996565b6136c5565b61046760135481565b6000805b60075481101561096b57600781815481106108b6576108b6614fb4565b906000526020600020906003020160000160009054906101000a90046001600160a01b03166001600160a01b0316635c91bba06040518163ffffffff1660e01b8152600401602060405180830381600087803b15801561091557600080fd5b505af1158015610929573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061094d91906149fe565b6109579083614e7f565b91508061096381614f6d565b915050610899565b506040518181527f228916455433a556d3bb467eadcfbc1396db4a7982ef3b8f601248a5a48e07df9060200160405180910390a150565b60006109ad81613718565b506015805460ff19166001179055565b60006001600160e01b03198216637965db0b60e01b14806109ee57506301ffc9a760e01b6001600160e01b03198316145b92915050565b60006109ff81613718565b6040516370a0823160e01b81523060048201526000906001600160a01b038416906370a082319060240160206040518083038186803b158015610a4157600080fd5b505afa158015610a55573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7991906149fe565b90508015610a9557610a956001600160a01b0384163383613722565b505050565b606060038054610aa990614f32565b80601f0160208091040260200160405190810160405280929190818152602001828054610ad590614f32565b8015610b225780601f10610af757610100808354040283529160200191610b22565b820191906000526020600020905b815481529060010190602001808311610b0557829003601f168201915b5050505050905090565b600033610b3a818585613785565b5060019392505050565b6000610b4f60025490565b610b576133d2565b610b6990670de0b6b3a7640000614eb9565b610b739190614e97565b905090565b600080516020615004833981519152610b9081613718565b600754610bb85760405162461bcd60e51b8152600401610baf90614d80565b60405180910390fd5b600760085481548110610bcd57610bcd614fb4565b906000526020600020906003020160010154421015610bfe5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110610c1357610c13614fb4565b906000526020600020906003020160010154421015610c445760405162461bcd60e51b8152600401610baf90614db0565b6000825111610c655760405162461bcd60e51b8152600401610baf90614d32565b6000600760095481548110610c7c57610c7c614fb4565b600091825260208220600390910201546001600160a01b03169150610c9f6145d0565b600080610caa6145ee565b600092505b8751831015610e8d57878381518110610cca57610cca614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293965093909290840191600184019060039082845b815481526020019060010190808311610d195750505050508152505090508060000151610d5b836001600160a01b031660009081526020819052604090205490565b1015610dc957602081015181516040516001600160a01b0385169260008051602061502483398151915292610d8f92614c29565b60405180910390a26001600160a01b0382166000908152601260205260408120818155600181018290556002810182905560030155610e7b565b8051610dd59086614e7f565b6020820151518551919650908590610dee908390614e7f565b9052506020818101518101519085018051610e0a908390614e7f565b90525060208101516040908101519085018051610e28908390614e7f565b905250602081015181516040516001600160a01b038516927ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e792610e729260009291908390614c7c565b60405180910390a25b82610e8581614f6d565b935050610caf565b600760095481548110610ea257610ea2614fb4565b906000526020600020906003020160020154851115610f035760405162461bcd60e51b815260206004820181905260248201527f4453463a20496e73756666696369656e7420706f6f6c204c50207368617265736044820152606401610baf565b610f0b6145d0565b600093505b6003841015610fcf57600b8460038110610f2c57610f2c614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015610f6e57600080fd5b505afa158015610f82573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fa691906149fe565b818560038110610fb857610fb8614fb4565b602002015283610fc781614f6d565b945050610f10565b866001600160a01b03166378a59a253061100f89600760095481548110610ff857610ff8614fb4565b9060005260206000209060030201600201546138a9565b886000806040518663ffffffff1660e01b8152600401611033959493929190614bb4565b602060405180830381600087803b15801561104d57600080fd5b505af1158015611061573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110859190614979565b61119957600093505b885184101561118e578884815181106110a9576110a9614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293975093909290840191600184019060039082845b8154815260200190600101908083116110f8575050505050815250509150826001600160a01b031660008051602061502483398151915283602001518460000151604051611147929190614c29565b60405180910390a26001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301558361118681614f6d565b94505061108e565b505050505050505050565b6111a16145d0565b600094505b6003851015611286578185600381106111c1576111c1614fb4565b6020020151600b86600381106111d9576111d9614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b15801561121b57600080fd5b505afa15801561122f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061125391906149fe565b61125d9190614ed8565b81866003811061126f5761126f614fb4565b60200201528461127e81614f6d565b9550506111a6565b600094505b8951851015611462578985815181106112a6576112a6614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293985093909290840191600184019060039082845b8154815260200190600101908083116112f5575050505050815250509250600061131e60025490565b845160135461132d9190614eb9565b6113379190614e97565b905061134785856000015161392e565b836000015160076009548154811061136157611361614fb4565b906000526020600020906003020160020160008282546113819190614ed8565b92505081905550806013600082825461139a9190614ed8565b9091555060009050805b60038110156114205785518a908583600381106113c3576113c3614fb4565b60200201516113d29190614eb9565b6113dc9190614e97565b9150811561140e5761140e8783600b84600381106113fc576113fc614fb4565b01546001600160a01b03169190613722565b8061141881614f6d565b9150506113a4565b5050506001600160a01b03841660009081526012602052604081208181556001810182905560028101829055600301558461145a81614f6d565b95505061128b565b50505050505050505b5050565b611477613a60565b600082116114c75760405162461bcd60e51b815260206004820152601e60248201527f4453463a206c70416d6f756e74206d75737420626520686967686572203000006044820152606401610baf565b6114cf6145ee565b828152602080820183815233600081815260129093526040909220835181559051839190611503906001830190600361460d565b50905050806001600160a01b03167fc3c426c0e566ff35f20fbd76a596d6d93b093323996bf650dcae8643b9f522618585604051611542929190614e16565b60405180910390a250505050565b61157d604051806060016040528060006001600160a01b0316815260200160008152602001600081525090565b6007828154811061159057611590614fb4565b600091825260209182902060408051606081018252600390930290910180546001600160a01b031683526001810154938301939093526002909201549181019190915292915050565b6115e1613a60565b60005b60038110156116c357600082826003811061160157611601614fb4565b602002015111156116b15761164e333084846003811061162357611623614fb4565b6020020151600b856003811061163b5761163b614fb4565b01546001600160a01b0316929190613aa6565b81816003811061166057611660614fb4565b602002015160116000336001600160a01b03166001600160a01b03168152602001908152602001600020826003811061169b5761169b614fb4565b0160008282546116ab9190614e7f565b90915550505b806116bb81614f6d565b9150506115e4565b50336001600160a01b03167f2ae214f16931b89602eb4679edbc32b59935654512f74ff17de3f5cc611310db826040516116fd9190614bfe565b60405180910390a250565b600033611716858285613ae4565b611721858585613b58565b60019150505b9392505050565b60008281526006602052604090206001015461174981613718565b610a958383613cfc565b6001600160a01b03811633146117c35760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610baf565b61146b8282613d82565b600033610b3a8185856117e083836133a7565b6117ea9190614e7f565b613785565b60006117fa33610645565b8311156118495760405162461bcd60e51b815260206004820152601a60248201527f4453463a206e6f7420656e6f756768204c502062616c616e63650000000000006044820152606401610baf565b600061186484600760095481548110610ff857610ff8614fb4565b905060076009548154811061187b5761187b614fb4565b6000918252602090912060039091020154604051630f1c89b960e21b8152600481018390526001600160801b03851660248201526001600160a01b0390911690633c7226e49060440160206040518083038186803b1580156118dc57600080fd5b505afa1580156118f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061191491906149fe565b949350505050565b600061192781613718565b61192f613de9565b50565b600061193d81613718565b600360ff8316111561199f5760405162461bcd60e51b815260206004820152602560248201527f4453463a2077726f6e6720617661696c61626c65207769746864726177616c20604482015264747970657360d81b6064820152608401610baf565b50600a805460ff191660ff92909216919091179055565b6000805160206150048339815191526119ce81613718565b6007546119ed5760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110611a0257611a02614fb4565b906000526020600020906003020160010154421015611a335760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110611a4857611a48614fb4565b906000526020600020906003020160010154421015611a795760405162461bcd60e51b8152600401610baf90614db0565b6000600760085481548110611a9057611a90614fb4565b600091825260208220600390910201546001600160a01b03169150611ab36133d2565b90506000611abf6145d0565b6000865167ffffffffffffffff811115611adb57611adb614fca565b604051908082528060200260200182016040528015611b04578160200160208202803683370190505b50905060005b8751811015611c0f576000935060005b6003811015611bde576000601160008b8581518110611b3b57611b3b614fb4565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208260038110611b7457611b74614fb4565b0154905080858360038110611b8b57611b8b614fb4565b60200201818151611b9c9190614e7f565b905250600e8260038110611bb257611bb2614fb4565b0154611bbe9082614eb9565b611bc89087614e7f565b9550508080611bd690614f6d565b915050611b1a565b5083828281518110611bf257611bf2614fb4565b602090810291909101015280611c0781614f6d565b915050611b0a565b506000925060005b6003811015611c97576000838260038110611c3457611c34614fb4565b602002015190508015611c8457600e8260038110611c5457611c54614fb4565b0154611c609082614eb9565b611c6a9086614e7f565b9450611c848782600b85600381106113fc576113fc614fb4565b5080611c8f81614f6d565b915050611c17565b5060405163d4e20b0160e01b81526000906001600160a01b0387169063d4e20b0190611cc7908690600401614bfe565b602060405180830381600087803b158015611ce157600080fd5b505af1158015611cf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d1991906149fe565b905060008111611d635760405162461bcd60e51b81526020600482015260156024820152744453463a20746f6f206c6f77206465706f7369742160581b6044820152606401610baf565b6000806000805b8b51811015611edc5787868281518110611d8657611d86614fb4565b602002602001015186611d999190614eb9565b611da39190614e97565b915060008c8281518110611db957611db9614fb4565b60200260200101519050611dcc60025490565b611dd857829450611e03565b611de2848b614e7f565b83611dec60025490565b611df69190614eb9565b611e009190614e97565b94505b611e0d8385614e7f565b9350611e198186613e3b565b84600760085481548110611e2f57611e2f614fb4565b90600052602060002090600302016002016000828254611e4f9190614e7f565b90915550506001600160a01b0381166000818152601160205260409081902090517f6ddb5a571120963c2772a1b5ff7bdfaffaca3ee0278853932bbae407bbbcaba591611e9d918990614c44565b60405180910390a26001600160a01b03166000908152601160205260408120818155600181018290556002015580611ed481614f6d565b915050611d6a565b508160136000828254611eef9190614e7f565b90915550505050505050505050505050565b600b8160038110611f1157600080fd5b01546001600160a01b0316905081565b60006103e860145483611f349190614eb9565b6109ee9190614e97565b611f46613a60565b600754611f655760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110611f7a57611f7a614fb4565b906000526020600020906003020160010154421015611fab5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110611fc057611fc0614fb4565b906000526020600020906003020160010154421015611ff15760405162461bcd60e51b8152600401610baf90614db0565b600a5461201f9060ff1683600181111561200d5761200d614f9e565b600160ff9182161b9190911616151590565b6120765760405162461bcd60e51b815260206004820152602260248201527f4453463a207769746864726177616c2074797065206e6f7420617661696c61626044820152616c6560f01b6064820152608401610baf565b600060076009548154811061208d5761208d614fb4565b600091825260208220600390910201546001600160a01b031691506120af3390565b9050856120d1826001600160a01b031660009081526020819052604090205490565b101561211f5760405162461bcd60e51b815260206004820152601a60248201527f4453463a206e6f7420656e6f756768204c502062616c616e63650000000000006044820152606401610baf565b816001600160a01b03166378a59a258261214889600760095481548110610ff857610ff8614fb4565b8888886040518663ffffffff1660e01b815260040161216b959493929190614bb4565b602060405180830381600087803b15801561218557600080fd5b505af1158015612199573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906121bd9190614979565b6122095760405162461bcd60e51b815260206004820152601e60248201527f4453463a20696e636f727265637420776974686472617720706172616d7300006044820152606401610baf565b600061221460025490565b876013546122229190614eb9565b61222c9190614e97565b9050612238828861392e565b8660076009548154811061224e5761224e614fb4565b9060005260206000209060030201600201600082825461226e9190614ed8565b9250508190555080601360008282546122879190614ed8565b92505081905550816001600160a01b03167ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e786888a886040516122cd9493929190614c7c565b60405180910390a250505050505050565b60006122e981613718565b61192f613efa565b600e816003811061230157600080fd5b0154905081565b60009182526006602090815260408084206001600160a01b0393909316845291905290205460ff1690565b606060048054610aa990614f32565b600060076009548154811061235957612359614fb4565b6000918252602090912060039091020154604051639958527d60e01b81526001600160a01b0390911690639958527d906123999086908690600401614c0c565b60206040518083038186803b1580156123b157600080fd5b505afa1580156123c5573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061172791906149fe565b60006123f481613718565b60075482106124555760405162461bcd60e51b815260206004820152602760248201527f4453463a20696e636f72726563742064656661756c74207769746864726177206044820152661c1bdbdb081a5960ca1b6064820152608401610baf565b60098290556040518281527f0df37b4befe1955e495c9d20d1912039820f0738ac30c49cf4542ecf04c4fef5906020015b60405180910390a15050565b6000805160206150048339815191526124aa81613718565b6007546124c95760405162461bcd60e51b8152600401610baf90614d80565b6007600854815481106124de576124de614fb4565b90600052602060002090600302016001015442101561250f5760405162461bcd60e51b8152600401610baf90614ce8565b60076009548154811061252457612524614fb4565b9060005260206000209060030201600101544210156125555760405162461bcd60e51b8152600401610baf90614db0565b60008251116125765760405162461bcd60e51b8152600401610baf90614d32565b600060076009548154811061258d5761258d614fb4565b600091825260208220600390910201546001600160a01b031691506125b06145ee565b60005b85518110156128c2578581815181106125ce576125ce614fb4565b6020908102919091018101516001600160a01b03811660009081526012835260409081902081518083018352815481528251606081019384905293975093909290840191600184019060039082845b81548152602001906001019080831161261d575050505050815250509150816000015161265f846001600160a01b031660009081526020819052604090205490565b10156126cd57602082015182516040516001600160a01b038616926000805160206150248339815191529261269392614c29565b60405180910390a26001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301556128b0565b836001600160a01b03166378a59a25846126fa8560000151600760095481548110610ff857610ff8614fb4565b85602001516000806040518663ffffffff1660e01b8152600401612722959493929190614bb4565b602060405180830381600087803b15801561273c57600080fd5b505af1158015612750573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127749190614979565b6127a657602082015182516040516001600160a01b038616926000805160206150248339815191529261269392614c29565b60006127b160025490565b83516013546127c09190614eb9565b6127ca9190614e97565b90506127da84846000015161392e565b82600001516007600954815481106127f4576127f4614fb4565b906000526020600020906003020160020160008282546128149190614ed8565b92505081905550806013600082825461282d9190614ed8565b9091555050602083015183516040516001600160a01b038716927ff73eacd48eb3377f1f54c2ac8fc4031787d7d34782d57708b2d32b5a03fc83e7926128799260009291908390614c7c565b60405180910390a2506001600160a01b03831660009081526012602052604081208181556001810182905560028101829055600301555b806128ba81614f6d565b9150506125b3565b505050505050565b60005b600381101561294a5733600090815260116020526040812082600381106128f6576128f6614fb4565b01541115612938573360008181526011602052604090206129389190836003811061292357612923614fb4565b0154600b84600381106113fc576113fc614fb4565b8061294281614f6d565b9150506128cd565b503360009081526011602052604081208181556001810182905560020155565b565b6000338161297a82866133a7565b9050838110156129da5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610baf565b6129e78286868403613785565b506001949350505050565b600033610b3a818585613b58565b6000612a0b81613718565b61146b60008051602061500483398151915283613cfc565b6000612a2e81613718565b8251845114612a975760405162461bcd60e51b815260206004820152602f60248201527f4453463a20696e636f727265637420617267756d656e747320666f722074686560448201526e040dadeecca8ceadcc8e684c2e8c6d608b1b6064820152608401610baf565b6007548210612af45760405162461bcd60e51b8152602060048201526024808201527f4453463a20696e636f72726563742061207265636976657220737472617465676044820152631e48125160e21b6064820152608401610baf565b612afc6145d0565b60005b6003811015612bbe57600b8160038110612b1b57612b1b614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015612b5d57600080fd5b505afa158015612b71573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b9591906149fe565b828260038110612ba757612ba7614fb4565b602002015280612bb681614f6d565b915050612aff565b5060008060005b8751811015612c2b57878181518110612be057612be0614fb4565b60200260200101519250612c0d83888381518110612c0057612c00614fb4565b6020026020010151613f37565b612c179083614e7f565b915080612c2381614f6d565b915050612bc5565b50612c346145d0565b60005b6003811015612d9157848160038110612c5257612c52614fb4565b6020020151600b8260038110612c6a57612c6a614fb4565b01546040516370a0823160e01b81523060048201526001600160a01b03909116906370a082319060240160206040518083038186803b158015612cac57600080fd5b505afa158015612cc0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612ce491906149fe565b612cee9190614ed8565b828260038110612d0057612d00614fb4565b60200201526000828260038110612d1957612d19614fb4565b60200201511115612d7f57612d7f60078881548110612d3a57612d3a614fb4565b60009182526020909120600391820201546001600160a01b031690849084908110612d6757612d67614fb4565b6020020151600b84600381106113fc576113fc614fb4565b80612d8981614f6d565b915050612c37565b508160078781548110612da657612da6614fb4565b90600052602060002090600302016002016000828254612dc69190614e7f565b92505081905550600060078781548110612de257612de2614fb4565b600091825260209091206003909102015460405163d4e20b0160e01b81526001600160a01b039091169063d4e20b0190612e20908590600401614bfe565b602060405180830381600087803b158015612e3a57600080fd5b505af1158015612e4e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612e7291906149fe565b11612eb65760405162461bcd60e51b81526020600482015260146024820152734453463a20546f6f206c6f7720616d6f756e742160601b6044820152606401610baf565b5050505050505050565b6000612eca613a60565b600754612ee95760405162461bcd60e51b8152600401610baf90614d80565b600760085481548110612efe57612efe614fb4565b906000526020600020906003020160010154421015612f2f5760405162461bcd60e51b8152600401610baf90614ce8565b600760095481548110612f4457612f44614fb4565b906000526020600020906003020160010154421015612f755760405162461bcd60e51b8152600401610baf90614db0565b6000600760085481548110612f8c57612f8c614fb4565b600091825260208220600390910201546001600160a01b03169150612faf6133d2565b905060005b6003811015613005576000858260038110612fd157612fd1614fb4565b60200201511115612ff357612ff3338487846003811061162357611623614fb4565b80612ffd81614f6d565b915050612fb4565b5060405163d4e20b0160e01b81526000906001600160a01b0384169063d4e20b0190613035908890600401614bfe565b602060405180830381600087803b15801561304f57600080fd5b505af1158015613063573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061308791906149fe565b9050600081116130d15760405162461bcd60e51b81526020600482015260156024820152744453463a20746f6f206c6f77206465706f7369742160581b6044820152606401610baf565b60006130dc60025490565b6130e7575080613109565b82826130f260025490565b6130fc9190614eb9565b6131069190614e97565b90505b6131133382613e3b565b8060076008548154811061312957613129614fb4565b906000526020600020906003020160020160008282546131499190614e7f565b9250508190555081601360008282546131629190614e7f565b909155505060405133907f6ddb5a571120963c2772a1b5ff7bdfaffaca3ee0278853932bbae407bbbcaba59061319b9089908590614c29565b60405180910390a293505050505b919050565b6000828152600660205260409020600101546131c981613718565b610a958383613d82565b6001600160a01b038216600090815260116020526040812082600381106131fc576131fc614fb4565b01549392505050565b600061321081613718565b6001600160a01b0382166132665760405162461bcd60e51b815260206004820152601760248201527f4453463a207a65726f20737472617465677920616464720000000000000000006044820152606401610baf565b60155460009060ff1661327a57600061327f565b620151805b6132899042614e7f565b604080516060810182526001600160a01b03868116825260208201848152600093830184815260078054600180820183559682905294517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c688600390960295860180546001600160a01b031916919095161790935590517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c689840155517fa66cc928b5edb82af9bd49922954155ab7b0942694bea4ce44661d9a8736c68a90920191909155549192507f1496d53b2abcedd3c10f20ce28c997e2b25a426e63ab8913ad6e962697c0d7be9161337c9190614ed8565b604080519182526001600160a01b0386166020830152810183905260600160405180910390a1505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b60075460009081805b8281101561349a57600781815481106133f6576133f6614fb4565b6000918252602091829020600390910201546040805163e9ec2e9960e01b815290516001600160a01b039092169263e9ec2e9992600480840193829003018186803b15801561344457600080fd5b505afa158015613458573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061347c91906149fe565b6134869083614e7f565b91508061349281614f6d565b9150506133db565b5092915050565b6134a96145d0565b6001600160a01b03821660009081526011602052604090819020815160608101928390529160039082845b8154815260200190600101908083116134d45750505050509050919050565b60006134fe81613718565b600754821061355e5760405162461bcd60e51b815260206004820152602660248201527f4453463a20696e636f72726563742064656661756c74206465706f73697420706044820152651bdbdb081a5960d21b6064820152608401610baf565b60088290556040518281527fecef23c1a5909f263ee74730200856ecdaaf8f02c2e2cf36ab21c84dca23770f90602001612486565b61359b6145ee565b6001600160a01b03821660009081526012602090815260409182902082518084018452815481528351606081019485905290939192840191600184019060039082845b8154815260200190600101908083116135de575050505050815250509050919050565b60005b600754811015613699576007818154811061362157613621614fb4565b600091825260208220600390910201546040805163410e02bb60e11b815290516001600160a01b039092169263821c05769260048084019382900301818387803b15801561366e57600080fd5b505af1158015613682573d6000803e3d6000fd5b50505050808061369190614f6d565b915050613604565b506040517f29aeb662d3fc5de1cd1fa30d59f63ca51e5c9e0fa6e79df5844b294be9cbaab790600090a1565b60006136d081613718565b6103e882106137125760405162461bcd60e51b815260206004820152600e60248201526d4453463a2077726f6e672066656560901b6044820152606401610baf565b50601455565b61192f813361418e565b6040516001600160a01b038316602482015260448101829052610a9590849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b0319909316929092179091526141e7565b6001600160a01b0383166137e75760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610baf565b6001600160a01b0382166138485760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610baf565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000816138be670de0b6b3a764000085614eb9565b6138c89190614e97565b90506000811180156138e25750670de0b6b3a76400008111155b6109ee5760405162461bcd60e51b815260206004820152601760248201527f4453463a2057726f6e67206f7574206c7020526174696f0000000000000000006044820152606401610baf565b6001600160a01b03821661398e5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610baf565b6001600160a01b03821660009081526020819052604090205481811015613a025760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610baf565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b60055460ff161561296a5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610baf565b6040516001600160a01b0380851660248301528316604482015260648101829052613ade9085906323b872dd60e01b9060840161374e565b50505050565b6000613af084846133a7565b90506000198114613ade5781811015613b4b5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610baf565b613ade8484848403613785565b6001600160a01b038316613bbc5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610baf565b6001600160a01b038216613c1e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610baf565b6001600160a01b03831660009081526020819052604090205481811015613c965760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610baf565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3613ade565b613d068282612308565b61146b5760008281526006602090815260408083206001600160a01b03851684529091529020805460ff19166001179055613d3e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b613d8c8282612308565b1561146b5760008281526006602090815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b613df16142b9565b6005805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6001600160a01b038216613e915760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610baf565b8060026000828254613ea39190614e7f565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b613f02613a60565b6005805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613e1e3390565b6000806127108314156140125760078481548110613f5757613f57614fb4565b600091825260208220600390910201546040805163429c145b60e11b815290516001600160a01b039092169263853828b69260048084019382900301818387803b158015613fa457600080fd5b505af1158015613fb8573d6000803e3d6000fd5b5050505060078481548110613fcf57613fcf614fb4565b9060005260206000209060030201600201549050600060078581548110613ff857613ff8614fb4565b906000526020600020906003020160020181905550611727565b612710836007868154811061402957614029614fb4565b9060005260206000209060030201600201546140459190614eb9565b61404f9190614e97565b90506140596145d0565b6007858154811061406c5761406c614fb4565b906000526020600020906003020160000160009054906101000a90046001600160a01b03166001600160a01b03166378a59a25306140b78560078a81548110610ff857610ff8614fb4565b846000806040518663ffffffff1660e01b81526004016140db959493929190614bb4565b602060405180830381600087803b1580156140f557600080fd5b505af1158015614109573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061412d9190614979565b50816007868154811061414257614142614fb4565b90600052602060002090600302016002015461415e9190614ed8565b6007868154811061417157614171614fb4565b906000526020600020906003020160020181905550509392505050565b6141988282612308565b61146b576141a581614302565b6141b0836020614314565b6040516020016141c1929190614b3f565b60408051601f198184030181529082905262461bcd60e51b8252610baf91600401614cb5565b600061423c826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166144b09092919063ffffffff16565b805190915015610a95578080602001905181019061425a9190614979565b610a955760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610baf565b60055460ff1661296a5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610baf565b60606109ee6001600160a01b03831660145b60606000614323836002614eb9565b61432e906002614e7f565b67ffffffffffffffff81111561434657614346614fca565b6040519080825280601f01601f191660200182016040528015614370576020820181803683370190505b509050600360fc1b8160008151811061438b5761438b614fb4565b60200101906001600160f81b031916908160001a905350600f60fb1b816001815181106143ba576143ba614fb4565b60200101906001600160f81b031916908160001a90535060006143de846002614eb9565b6143e9906001614e7f565b90505b6001811115614461576f181899199a1a9b1b9c1cb0b131b232b360811b85600f166010811061441d5761441d614fb4565b1a60f81b82828151811061443357614433614fb4565b60200101906001600160f81b031916908160001a90535060049490941c9361445a81614f1b565b90506143ec565b5083156117275760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610baf565b6060611914848460008585600080866001600160a01b031685876040516144d79190614b23565b60006040518083038185875af1925050503d8060008114614514576040519150601f19603f3d011682016040523d82523d6000602084013e614519565b606091505b509150915061452a87838387614535565b979650505050505050565b606083156145a157825161459a576001600160a01b0385163b61459a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610baf565b5081611914565b61191483838151156145b65781518083602001fd5b8060405162461bcd60e51b8152600401610baf9190614cb5565b60405180606001604052806003906020820280368337509192915050565b6040518060400160405280600081526020016146086145d0565b905290565b826003810192821561463b579160200282015b8281111561463b578251825591602001919060010190614620565b5061464792915061464b565b5090565b5b80821115614647576000815560010161464c565b600082601f83011261467157600080fd5b6040516060810181811067ffffffffffffffff8211171561469457614694614fca565b6040528083606081018610156146a957600080fd5b60005b60038110156146cb5781358352602092830192909101906001016146ac565b509195945050505050565b600082601f8301126146e757600080fd5b813560206146fc6146f783614e5b565b614e2a565b80838252828201915082860187848660051b890101111561471c57600080fd5b60005b8581101561473b5781358452928401929084019060010161471f565b5090979650505050505050565b80356001600160801b03811681146131a957600080fd5b60006020828403121561477157600080fd5b813561172781614fe0565b6000806040838503121561478f57600080fd5b823561479a81614fe0565b915060208301356147aa81614fe0565b809150509250929050565b6000806000606084860312156147ca57600080fd5b83356147d581614fe0565b925060208401356147e581614fe0565b929592945050506040919091013590565b6000806040838503121561480957600080fd5b823561481481614fe0565b946020939093013593505050565b6000602080838503121561483557600080fd5b823567ffffffffffffffff81111561484c57600080fd5b8301601f8101851361485d57600080fd5b803561486b6146f782614e5b565b80828252848201915084840188868560051b870101111561488b57600080fd5b600094505b838510156148b75780356148a381614fe0565b835260019490940193918501918501614890565b50979650505050505050565b6000606082840312156148d557600080fd5b6117278383614660565b600080608083850312156148f257600080fd5b6148fc8484614660565b915060608301356147aa81614ff5565b60008060006060848603121561492157600080fd5b833567ffffffffffffffff8082111561493957600080fd5b614945878388016146d6565b9450602086013591508082111561495b57600080fd5b50614968868287016146d6565b925050604084013590509250925092565b60006020828403121561498b57600080fd5b815161172781614ff5565b6000602082840312156149a857600080fd5b5035919050565b600080604083850312156149c257600080fd5b8235915060208301356147aa81614fe0565b6000602082840312156149e657600080fd5b81356001600160e01b03198116811461172757600080fd5b600060208284031215614a1057600080fd5b5051919050565b60008060808385031215614a2a57600080fd5b82359150614a3b8460208501614660565b90509250929050565b60008060008060c08587031215614a5a57600080fd5b84359350614a6b8660208701614660565b9250608085013560028110614a7f57600080fd5b9150614a8d60a08601614748565b905092959194509250565b60008060408385031215614aab57600080fd5b82359150614a3b60208401614748565b600060208284031215614acd57600080fd5b813560ff8116811461172757600080fd5b8060005b6003811015613ade578151845260209384019390910190600101614ae2565b60028110614b1f57634e487b7160e01b600052602160045260246000fd5b9052565b60008251614b35818460208701614eef565b9190910192915050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614b77816017850160208801614eef565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614ba8816028840160208801614eef565b01602801949350505050565b6001600160a01b03861681526020810185905260e08101614bd86040830186614ade565b614be560a0830185614b01565b6001600160801b03831660c08301529695505050505050565b606081016109ee8284614ade565b60808101614c1a8285614ade565b82151560608301529392505050565b60808101614c378285614ade565b8260608301529392505050565b60808101818460005b6003811015614c6c578154835260209092019160019182019101614c4d565b5050508260608301529392505050565b60c08101614c8a8287614b01565b614c976020830186614ade565b8360808301526001600160801b03831660a083015295945050505050565b6020815260008251806020840152614cd4816040850160208701614eef565b601f01601f19169190910160400192915050565b6020808252602a908201527f4453463a2064656661756c74206465706f73697420706f6f6c206e6f742073746040820152696172746564207965742160b01b606082015260800190565b6020808252602e908201527f4453463a20746865726520617265206e6f2070656e64696e672077697468647260408201526d6177616c7320726571756573747360901b606082015260800190565b6020808252601690820152754453463a20706f6f6c206e6f7420657869737465642160501b604082015260600190565b6020808252602b908201527f4453463a2064656661756c7420776974686472617720706f6f6c206e6f74207360408201526a746172746564207965742160a81b606082015260800190565b81518152602080830151608083019161349a90840182614ade565b828152608081016117276020830184614ade565b604051601f8201601f1916810167ffffffffffffffff81118282101715614e5357614e53614fca565b604052919050565b600067ffffffffffffffff821115614e7557614e75614fca565b5060051b60200190565b60008219821115614e9257614e92614f88565b500190565b600082614eb457634e487b7160e01b600052601260045260246000fd5b500490565b6000816000190483118215151615614ed357614ed3614f88565b500290565b600082821015614eea57614eea614f88565b500390565b60005b83811015614f0a578181015183820152602001614ef2565b83811115613ade5750506000910152565b600081614f2a57614f2a614f88565b506000190190565b600181811c90821680614f4657607f821691505b60208210811415614f6757634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614f8157614f81614f88565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461192f57600080fd5b801515811461192f57600080fdfe97667070c54ef182b0f5858b034beac1b6f3089aa2d3188bb1e8929f4fa9b92931fcea09cd978e6d200e464511ab1e9d45ccb1bbeeb8c13df67061492b643cc0a26469706673582212204b55ea8810f164cb0de04f8990e6ea3fa40924c118fab035e86dc96455123bc864736f6c63430008070033

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

0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7

-----Decoded View---------------
Arg [0] : _tokens (address[3]): 0x6B175474E89094C44Da98b954EedeAC495271d0F,0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48,0xdAC17F958D2ee523a2206206994597C13D831ec7

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000006b175474e89094c44da98b954eedeac495271d0f
Arg [1] : 000000000000000000000000a0b86991c6218b36c1d19d4a2e9eb0ce3606eb48
Arg [2] : 000000000000000000000000dac17f958d2ee523a2206206994597c13d831ec7


Deployed Bytecode Sourcemap

1521:26023:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6869:282;;;:::i;:::-;;23056:90;;;:::i;2606:202:0:-;;;;;;:::i;:::-;;:::i;:::-;;;13703:14:16;;13696:22;13678:41;;13666:2;13651:18;2606:202:0;;;;;;;;26773:267:14;;;;;;:::i;:::-;;:::i;2154:98:3:-;;;:::i;:::-;;;;;;;:::i;4431:197::-;;;;;;:::i;:::-;;:::i;7931:117:14:-;;;:::i;:::-;;;13876:25:16;;;13864:2;13849:18;7931:117:14;13730:177:16;14753:3386:14;;;;;;:::i;:::-;;:::i;9209:529::-;;;;;;:::i;:::-;;:::i;4867:111::-;;;;;;:::i;:::-;;:::i;:::-;;;;29813:13:16;;-1:-1:-1;;;;;29809:39:16;29791:58;;29905:4;29893:17;;;29887:24;29865:20;;;29858:54;29956:17;;;29950:24;29928:20;;;29921:54;29779:2;29764:18;4867:111:14;29593:388:16;8456:438:14;;;;;;:::i;:::-;;:::i;3242:106:3:-;3329:12;;3242:106;;5190:286;;;;;;:::i;:::-;;:::i;4378:129:0:-;;;;;;:::i;:::-;4452:7;4478:12;;;:6;:12;;;;;:22;;;;4378:129;2278:32:14;;;;;;4803:145:0;;;;;;:::i;:::-;;:::i;3091:91:3:-;3173:2;3091:91;;;31302:4:16;31290:17;;;31272:36;;31260:2;31245:18;3091:91:3;31130:184:16;5912:214:0;;;;;;:::i;:::-;;:::i;5871:234:3:-;;;;;;:::i;:::-;;:::i;20931:439:14:-;;;;;;:::i;:::-;;:::i;5537:86::-;;;:::i;1955:50::-;;2001:4;1955:50;;2065:46;;2105:6;2065:46;;5631:360;;;;;;:::i;:::-;;:::i;9917:2274::-;;;;;;:::i;:::-;;:::i;2403:34::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;10111:32:16;;;10093:51;;10081:2;10066:18;2403:34:14;9947:203:16;1615:84:2;1685:7;;;;1615:84;;6639:143:14;;;;;;:::i;:::-;;:::i;19718:1205::-;;;;;;:::i;:::-;;:::i;3406:125:3:-;;;;;;:::i;:::-;-1:-1:-1;;;;;3506:18:3;3480:7;3506:18;;;;;;;;;;;;3406:125;1911:37:14;;1947:1;1911:37;;2744:28;;;;;;;;;5447:82;;;:::i;2444:47::-;;;;;;:::i;:::-;;:::i;2895:145:0:-;;;;;;:::i;:::-;;:::i;2365:102:3:-;;;:::i;21378:253:14:-;;;;;;:::i;:::-;;:::i;22766:282::-;;;;;;:::i;:::-;;:::i;12373:1988::-;;;;;;:::i;:::-;;:::i;2027:49:0:-;;2072:4;2027:49;;26080:401:14;;;:::i;6592:427:3:-;;;;;;:::i;:::-;;:::i;2688:34:14:-;;;;;;3727:189:3;;;;;;:::i;:::-;;:::i;27236:142:14:-;;;;;;:::i;:::-;;:::i;2118:50::-;;2162:6;2118:50;;23512:1588;;;;;;:::i;:::-;;:::i;2357:37::-;;;;;;;;;26489:103;;719:10:9;26551:33:14;;;;:19;:33;;;;;26544:40;;;;;;-1:-1:-1;;;;;;;;;;;;14753:3386:14;18357:1126;;;;;;:::i;:::-;;:::i;5228:147:0:-;;;;;;:::i;:::-;;:::i;5133:156:14:-;;;;;;:::i;:::-;;:::i;2012:46::-;;2054:4;2012:46;;21809:446;;;;;;:::i;:::-;;:::i;3974:149:3:-;;;;;;:::i;:::-;;:::i;7502:298:14:-;;;:::i;4986:139::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;2317:33::-;;;;;;22371:278;;;;;;:::i;:::-;;:::i;5297:142::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;8143:95::-;8214:9;:16;8143:95;;1618:66;;-1:-1:-1;;;;;;;;;;;1618:66:14;;7159:197;;;:::i;6176:213::-;;;;;;:::i;:::-;;:::i;2648:33::-;;;;;;6869:282;6922:21;;6954:134;6978:9;:16;6974:20;;6954:134;;;7033:9;7043:1;7033:12;;;;;;;;:::i;:::-;;;;;;;;;;;:21;;;;;;;;;;-1:-1:-1;;;;;7033:21:14;-1:-1:-1;;;;;7033:41:14;;:43;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7016:60;;;;:::i;:::-;;-1:-1:-1;6996:3:14;;;;:::i;:::-;;;;6954:134;;;-1:-1:-1;7105:38:14;;13876:25:16;;;7105:38:14;;13864:2:16;13849:18;7105:38:14;;;;;;;6911:240;6869:282::o;23056:90::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;-1:-1:-1;23123:8:14::1;:15:::0;;-1:-1:-1;;23123:15:14::1;23134:4;23123:15;::::0;;23056:90::o;2606:202:0:-;2691:4;-1:-1:-1;;;;;;2714:47:0;;-1:-1:-1;;;2714:47:0;;:87;;-1:-1:-1;;;;;;;;;;937:40:11;;;2765:36:0;2707:94;2606:202;-1:-1:-1;;2606:202:0:o;26773:267:14:-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;26896:31:14::1;::::0;-1:-1:-1;;;26896:31:14;;26921:4:::1;26896:31;::::0;::::1;10093:51:16::0;26873:20:14::1;::::0;-1:-1:-1;;;;;26896:16:14;::::1;::::0;::::1;::::0;10066:18:16;;26896:31:14::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;26873:54:::0;-1:-1:-1;26941:16:14;;26938:95:::1;;26974:47;-1:-1:-1::0;;;;;26974:19:14;::::1;719:10:9::0;27008:12:14;26974:19:::1;:47::i;:::-;26862:178;26773:267:::0;;:::o;2154:98:3:-;2208:13;2240:5;2233:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2154:98;:::o;4431:197::-;4514:4;719:10:9;4568:32:3;719:10:9;4584:7:3;4593:6;4568:8;:32::i;:::-;-1:-1:-1;4617:4:3;;4431:197;-1:-1:-1;;;4431:197:3:o;7931:117:14:-;7973:7;8027:13;3329:12:3;;;3242:106;8027:13:14;8001:15;:13;:15::i;:::-;:22;;8019:4;8001:22;:::i;:::-;8000:40;;;;:::i;:::-;7993:47;;7931:117;:::o;14753:3386::-;-1:-1:-1;;;;;;;;;;;2505:16:0;2516:4;2505:10;:16::i;:::-;3876:9:14::1;:16:::0;3868:56:::1;;;;-1:-1:-1::0;;;3868:56:14::1;;;;;;;:::i;:::-;;;;;;;;;3976:9;3986:17;;3976:28;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;3957:15;:57;;3935:149;;;;-1:-1:-1::0;;;3935:149:14::1;;;;;;;:::i;:::-;4136:9;4146:18;;4136:29;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;4117:15;:58;;4095:151;;;;-1:-1:-1::0;;;4095:151:14::1;;;;;;;:::i;:::-;14942:1:::2;14924:8;:15;:19;14916:78;;;;-1:-1:-1::0;;;14916:78:14::2;;;;;;;:::i;:::-;15007:18;15028:9;15038:18;;15028:29;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;;::::2;;:38:::0;-1:-1:-1;;;;;15028:38:14::2;::::0;-1:-1:-1;15111:43:14::2;;:::i;:::-;15167:9;15187:12:::0;15210:35:::2;;:::i;:::-;15265:1;15261:5;;15256:840;15272:8;:15;15268:1;:19;15256:840;;;15316:8;15325:1;15316:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;15355:25:14;::::2;;::::0;;;:19:::2;:25:::0;;;;;;;15342:38;;;;::::2;::::0;;;;;;;;;;::::2;::::0;;;;15316:11;;-1:-1:-1;15342:38:14;15355:25;;15342:38;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;15419:10;:19;;;15401:15;15411:4;-1:-1:-1::0;;;;;3506:18:3;3480:7;3506:18;;;;;;;;;;;;3406:125;15401:15:14::2;:37;15397:229;;;15487:23;::::0;::::2;::::0;15512:19;;15464:68:::2;::::0;-1:-1:-1;;;;;15464:68:14;::::2;::::0;-1:-1:-1;;;;;;;;;;;15464:68:14;::::2;::::0;::::2;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;15558:25:14;::::2;;::::0;;;:19:::2;:25;::::0;;;;15551:32;;;::::2;::::0;::::2;-1:-1:-1::0;;;;;;;;;;;;15602:8:14::2;;15397:229;15659:19:::0;;15642:36:::2;::::0;;::::2;:::i;:::-;15715:23;::::0;::::2;::::0;:26;15693:48;;15642:36;;-1:-1:-1;15715:26:14;15693:15;;:48:::2;::::0;15715:26;;15693:48:::2;:::i;:::-;::::0;;-1:-1:-1;15778:23:14::2;::::0;;::::2;::::0;:26;::::2;::::0;15756:18;;::::2;:48:::0;;::::2;::::0;15778:26;;15756:48:::2;:::i;:::-;::::0;;-1:-1:-1;15841:23:14::2;::::0;::::2;::::0;:26;;;::::2;::::0;15819:18;;::::2;:48:::0;;::::2;::::0;15841:26;;15819:48:::2;:::i;:::-;::::0;;-1:-1:-1;15988:23:14::2;::::0;::::2;::::0;16030:19;;15889:195:::2;::::0;-1:-1:-1;;;;;15889:195:14;::::2;::::0;::::2;::::0;::::2;::::0;15940:29:::2;::::0;15988:23;16030:19;15940:29;;15889:195:::2;:::i;:::-;;;;;;;;15256:840;15289:3:::0;::::2;::::0;::::2;:::i;:::-;;;;15256:840;;;16147:9;16157:18;;16147:29;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;16130:13;:55;;16108:137;;;::::0;-1:-1:-1;;;16108:137:14;;22773:2:16;16108:137:14::2;::::0;::::2;22755:21:16::0;;;22792:18;;;22785:30;22851:34;22831:18;;;22824:62;22903:18;;16108:137:14::2;22571:356:16::0;16108:137:14::2;16258:40;;:::i;:::-;16318:1;16314:5;;16309:119;16325:1;16321;:5;16309:119;;;16381:6;16388:1;16381:9;;;;;;;:::i;:::-;;::::0;16366:50:::2;::::0;-1:-1:-1;;;16366:50:14;;16410:4:::2;16366:50;::::0;::::2;10093:51:16::0;-1:-1:-1;;;;;16381:9:14;;::::2;::::0;16366:35:::2;::::0;10066:18:16;;16366:50:14::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16348:12;16361:1;16348:15;;;;;;;:::i;:::-;;;;:68:::0;16328:3;::::2;::::0;::::2;:::i;:::-;;;;16309:119;;;16459:8;-1:-1:-1::0;;;;;16459:17:14::2;;16503:4;16527:70;16543:13;16558:9;16568:18;;16558:29;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;16527:15;:70::i;:::-;16616:15;16650:29;16698:1:::0;16459:255:::2;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;16440:626;;16750:1;16746:5;;16741:293;16757:8;:15;16753:1;:19;16741:293;;;16805:8;16814:1;16805:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;16848:25:14;::::2;;::::0;;;:19:::2;:25:::0;;;;;;;16835:38;;;;::::2;::::0;;;;;;;;;;::::2;::::0;;;;16805:11;;-1:-1:-1;16835:38:14;16848:25;;16835:38;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;16916:4;-1:-1:-1::0;;;;;16899:68:14::2;-1:-1:-1::0;;;;;;;;;;;16922:10:14::2;:23;;;16947:10;:19;;;16899:68;;;;;;;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;16993:25:14;::::2;;::::0;;;:19:::2;:25;::::0;;;;16986:32;;;::::2;::::0;::::2;-1:-1:-1::0;;;;;;;;;;;;16774:3:14;::::2;::::0;::::2;:::i;:::-;;;;16741:293;;;17048:7;;;;;;;14753:3386:::0;;:::o;16440:626::-:2;17078:40;;:::i;:::-;17138:1;17134:5;;17129:137;17145:1;17141;:5;17129:137;;;17239:12;17252:1;17239:15;;;;;;;:::i;:::-;;;;;17201:6;17208:1;17201:9;;;;;;;:::i;:::-;;::::0;17186:50:::2;::::0;-1:-1:-1;;;17186:50:14;;17230:4:::2;17186:50;::::0;::::2;10093:51:16::0;-1:-1:-1;;;;;17201:9:14;;::::2;::::0;17186:35:::2;::::0;10066:18:16;;17186:50:14::2;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;;;;:::i;:::-;17168:12;17181:1;17168:15;;;;;;;:::i;:::-;;;;:86:::0;17148:3;::::2;::::0;::::2;:::i;:::-;;;;17129:137;;;17287:1;17283:5;;17278:854;17294:8;:15;17290:1;:19;17278:854;;;17338:8;17347:1;17338:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;17377:25:14;::::2;;::::0;;;:19:::2;:25:::0;;;;;;;17364:38;;;;::::2;::::0;;;;;;;;;;::::2;::::0;;;;17338:11;;-1:-1:-1;17364:38:14;17377:25;;17364:38;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;17419:19;17482:13;3329:12:3::0;;;3242:106;17482:13:14::2;17459:19:::0;;17442:14:::2;::::0;:36:::2;::::0;17459:19;17442:36:::2;:::i;:::-;17441:54;;;;:::i;:::-;17419:76;;17510:32;17516:4;17522:10;:19;;;17510:5;:32::i;:::-;17599:10;:19;;;17557:9;17567:18;;17557:29;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:61;;;;;;;:::i;:::-;;;;;;;;17651:11;17633:14;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;17679:22:14::2;::::0;-1:-1:-1;17679:22:14;17716:356:::2;17740:1;17736;:5;17716:356;;;17803:19:::0;;17826:13;;17785:12;17798:1;17785:15:::2;::::0;::::2;;;;;:::i;:::-;;;;;:37;;;;:::i;:::-;17784:55;;;;:::i;:::-;17767:72:::0;-1:-1:-1;17861:18:14;;17858:199:::2;;17904:133;17969:4;18000:14;17919:6;17926:1;17919:9;;;;;;;:::i;:::-;;::::0;-1:-1:-1;;;;;17919:9:14::2;::::0;17904:133;:38:::2;:133::i;:::-;17743:3:::0;::::2;::::0;::::2;:::i;:::-;;;;17716:356;;;-1:-1:-1::0;;;;;;;;18095:25:14;::::2;;::::0;;;:19:::2;:25;::::0;;;;18088:32;;;::::2;::::0;::::2;-1:-1:-1::0;;;;;;;;;;;;17311:3:14;::::2;::::0;::::2;:::i;:::-;;;;17278:854;;;14905:3234;;;;;;;;4257:1;14753:3386:::0;;:::o;9209:529::-;1239:19:2;:17;:19::i;:::-;9381:1:14::1;9370:8;:12;9362:55;;;::::0;-1:-1:-1;;;9362:55:14;;15598:2:16;9362:55:14::1;::::0;::::1;15580:21:16::0;15637:2;15617:18;;;15610:30;15676:32;15656:18;;;15649:60;15726:18;;9362:55:14::1;15396:354:16::0;9362:55:14::1;9430:35;;:::i;:::-;9520:30:::0;;;9561:23:::1;::::0;;::::1;:38:::0;;;719:10:9;9476:16:14::1;9612:29:::0;;;:19:::1;:29:::0;;;;;;;:42;;;;;;9520:30;;9612:29;:42:::1;::::0;::::1;::::0;::::1;::::0;::::1;;:::i;:::-;;;;;9697:8;-1:-1:-1::0;;;;;9672:58:14::1;;9707:8;9717:12;9672:58;;;;;;;:::i;:::-;;;;;;;;9351:387;;9209:529:::0;;:::o;4867:111::-;4921:15;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4921:15:14;4956:9;4966:3;4956:14;;;;;;;;:::i;:::-;;;;;;;;;;4949:21;;;;;;;;4956:14;;;;;;;4949:21;;-1:-1:-1;;;;;4949:21:14;;;;;;;;;;;;;;;;;;;;;;;;;;;4867:111;-1:-1:-1;;4867:111:14:o;8456:438::-;1239:19:2;:17;:19::i;:::-;8555:9:14::1;8550:275;8574:14;8570:1;:18;8550:275;;;8627:1;8614:7;8622:1;8614:10;;;;;;;:::i;:::-;;;;;:14;8610:204;;;8649:83;719:10:9::0;8714:4:14::1;8721:7;8729:1;8721:10;;;;;;;:::i;:::-;;;;;8664:6;8671:1;8664:9;;;;;;;:::i;:::-;;::::0;-1:-1:-1;;;;;8664:9:14::1;::::0;8649:83;;:42:::1;:83::i;:::-;8788:7;8796:1;8788:10;;;;;;;:::i;:::-;;;;::::0;8751:16:::1;:30;719:10:9::0;-1:-1:-1;;;;;8751:30:14::1;-1:-1:-1::0;;;;;8751:30:14::1;;;;;;;;;;;;8782:1;8751:33;;;;;;;:::i;:::-;;;:47;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;8610:204:14::1;8590:3:::0;::::1;::::0;::::1;:::i;:::-;;;;8550:275;;;-1:-1:-1::0;719:10:9;-1:-1:-1;;;;;8842:44:14::1;;8878:7;8842:44;;;;;;:::i;:::-;;;;;;;;8456:438:::0;:::o;5190:286:3:-;5317:4;719:10:9;5373:38:3;5389:4;719:10:9;5404:6:3;5373:15;:38::i;:::-;5421:27;5431:4;5437:2;5441:6;5421:9;:27::i;:::-;5465:4;5458:11;;;5190:286;;;;;;:::o;4803:145:0:-;4452:7;4478:12;;;:6;:12;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;4916:25:::1;4927:4;4933:7;4916:10;:25::i;5912:214::-:0;-1:-1:-1;;;;;6007:23:0;;719:10:9;6007:23:0;5999:83;;;;-1:-1:-1;;;5999:83:0;;28637:2:16;5999:83:0;;;28619:21:16;28676:2;28656:18;;;28649:30;28715:34;28695:18;;;28688:62;-1:-1:-1;;;28766:18:16;;;28759:45;28821:19;;5999:83:0;28435:411:16;5999:83:0;6093:26;6105:4;6111:7;6093:11;:26::i;5871:234:3:-;5959:4;719:10:9;6013:64:3;719:10:9;6029:7:3;6066:10;6038:25;719:10:9;6029:7:3;6038:9;:25::i;:::-;:38;;;;:::i;:::-;6013:8;:64::i;20931:439:14:-;21048:19;21105:23;719:10:9;21115:12:14;640:96:9;21105:23:14;21093:8;:35;;21085:74;;;;-1:-1:-1;;;21085:74:14;;26704:2:16;21085:74:14;;;26686:21:16;26743:2;26723:18;;;26716:30;26782:28;26762:18;;;26755:56;26828:18;;21085:74:14;26502:350:16;21085:74:14;21172:20;21195:65;21211:8;21221:9;21231:18;;21221:29;;;;;;;;:::i;21195:65::-;21172:88;;21278:9;21288:18;;21278:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:38;:84;;-1:-1:-1;;;21278:84:14;;;;;31010:25:16;;;-1:-1:-1;;;;;31071:47:16;;31051:18;;;31044:75;-1:-1:-1;;;;;21278:38:14;;;;:58;;30983:18:16;;21278:84:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;21271:91;20931:439;-1:-1:-1;;;;20931:439:14:o;5537:86::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;5605:10:14::1;:8;:10::i;:::-;5537:86:::0;:::o;5631:360::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;2231:1:14::1;5797:56;::::0;::::1;;;5775:143;;;::::0;-1:-1:-1;;;5775:143:14;;23549:2:16;5775:143:14::1;::::0;::::1;23531:21:16::0;23588:2;23568:18;;;23561:30;23627:34;23607:18;;;23600:62;-1:-1:-1;;;23678:18:16;;;23671:35;23723:19;;5775:143:14::1;23347:401:16::0;5775:143:14::1;-1:-1:-1::0;5929:24:14::1;:54:::0;;-1:-1:-1;;5929:54:14::1;;::::0;;;::::1;::::0;;;::::1;::::0;;5631:360::o;9917:2274::-;-1:-1:-1;;;;;;;;;;;2505:16:0;2516:4;2505:10;:16::i;:::-;3876:9:14::1;:16:::0;3868:56:::1;;;;-1:-1:-1::0;;;3868:56:14::1;;;;;;;:::i;:::-;3976:9;3986:17;;3976:28;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;3957:15;:57;;3935:149;;;;-1:-1:-1::0;;;3935:149:14::1;;;;;;;:::i;:::-;4136:9;4146:18;;4136:29;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;4117:15;:58;;4095:151;;;;-1:-1:-1::0;;;4095:151:14::1;;;;;;;:::i;:::-;10074:18:::2;10095:9;10105:17;;10095:28;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;;::::2;;:37:::0;-1:-1:-1;;;;;10095:37:14::2;::::0;-1:-1:-1;10174:15:14::2;:13;:15::i;:::-;10143:46;;10202:19;10236:30;;:::i;:::-;10277:37;10331:8;:15;10317:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;-1:-1:-1;10317:30:14::2;;10277:70;;10363:9;10358:429;10382:8;:15;10378:1;:19;10358:429;;;10433:1;10419:15;;10456:9;10451:273;10475:19;10471:1;:23;10451:273;;;10520:24;10547:16;:29;10564:8;10573:1;10564:11;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;10547:29:14::2;-1:-1:-1::0;;;;;10547:29:14::2;;;;;;;;;;;;10577:1;10547:32;;;;;;;:::i;:::-;;;10520:59;;10617:16;10598:12;10611:1;10598:15;;;;;;;:::i;:::-;;;;:35;;;;;;;:::i;:::-;::::0;;-1:-1:-1;10686:19:14::2;10706:1:::0;10686:22:::2;::::0;::::2;;;;;:::i;:::-;;::::0;10667:41:::2;::::0;:16;:41:::2;:::i;:::-;10652:56;::::0;;::::2;:::i;:::-;;;10501:223;10496:3;;;;;:::i;:::-;;;;10451:273;;;;10764:11;10738:20;10759:1;10738:23;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;:37;10399:3;::::2;::::0;::::2;:::i;:::-;;;;10358:429;;;;10813:1;10799:15;;10830:9;10825:336;1947:1;10845:15:::0;::::2;10825:336;;;10882:24;10909:12;10922:1;10909:15;;;;;;;:::i;:::-;;;;::::0;;-1:-1:-1;10943:20:14;;10939:211:::2;;11018:19;11038:1;11018:22;;;;;;;:::i;:::-;;::::0;10999:41:::2;::::0;:16;:41:::2;:::i;:::-;10984:56;::::0;;::::2;:::i;:::-;;;11059:75;11106:8;11117:16;11074:6;11081:1;11074:9;;;;;;;:::i;11059:75::-;-1:-1:-1::0;10862:3:14;::::2;::::0;::::2;:::i;:::-;;;;10825:336;;;-1:-1:-1::0;11199:30:14::2;::::0;-1:-1:-1;;;11199:30:14;;11171:25:::2;::::0;-1:-1:-1;;;;;11199:16:14;::::2;::::0;::::2;::::0;:30:::2;::::0;11216:12;;11199:30:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11171:58;;11268:1;11248:17;:21;11240:55;;;::::0;-1:-1:-1;;;11240:55:14;;21721:2:16;11240:55:14::2;::::0;::::2;21703:21:16::0;21760:2;21740:18;;;21733:30;-1:-1:-1;;;21779:18:16;;;21772:51;21840:18;;11240:55:14::2;21519:345:16::0;11240:55:14::2;11306:16;11337:21:::0;11373::::2;11416:9:::0;11411:731:::2;11435:8;:15;11431:1;:19;11411:731;;;11536:11;11509:20;11530:1;11509:23;;;;;;;;:::i;:::-;;;;;;;11489:17;:43;;;;:::i;:::-;11488:59;;;;:::i;:::-;11472:75;;11562:16;11581:8;11590:1;11581:11;;;;;;;;:::i;:::-;;;;;;;11562:30;;11611:13;3329:12:3::0;;;3242:106;11611:13:14::2;11607:207;;11661:13;11650:24;;11607:207;;;11761:36;11784:13:::0;11761:20;:36:::2;:::i;:::-;11743:13;11727;3329:12:3::0;;;3242:106;11727:13:14::2;:29;;;;:::i;:::-;11726:72;;;;:::i;:::-;11715:83;;11607:207;11828:30;11845:13:::0;11828:30;::::2;:::i;:::-;;;11873:25;11879:8;11889;11873:5;:25::i;:::-;11954:8;11913:9;11923:17;;11913:28;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;:49;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;11982:57:14;::::2;12002:26;::::0;;;:16:::2;:26;::::0;;;;;;11982:57;;::::2;::::0;::::2;::::0;12030:8;;11982:57:::2;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;12104:26:14::2;;::::0;;;:16:::2;:26;::::0;;;;-1:-1:-1;;;;;;;;;;;;11452:3:14;::::2;::::0;::::2;:::i;:::-;;;;11411:731;;;;12170:13;12152:14;;:31;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;;;;;;;;;;;;9917:2274:14:o;2403:34::-;;;;;;;;;;;;;;-1:-1:-1;;;;;2403:34:14;;-1:-1:-1;2403:34:14;:::o;6639:143::-;6705:7;2054:4;6742:13;;6733:6;:22;;;;:::i;:::-;6732:42;;;;:::i;19718:1205::-;1239:19:2;:17;:19::i;:::-;3876:9:14::1;:16:::0;3868:56:::1;;;;-1:-1:-1::0;;;3868:56:14::1;;;;;;;:::i;:::-;3976:9;3986:17;;3976:28;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;3957:15;:57;;3935:149;;;;-1:-1:-1::0;;;3935:149:14::1;;;;;;;:::i;:::-;4136:9;4146:18;;4136:29;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;4117:15;:58;;4095:151;;;;-1:-1:-1::0;;;4095:151:14::1;;;;;;;:::i;:::-;19977:24:::2;::::0;19968:57:::2;::::0;19977:24:::2;;20009:14:::0;19977:24;20003:21;::::2;;;;;;:::i;:::-;27516:4:::0;:11;;;;;27508:20;;;;;:25;;;27420:121;19968:57:::2;19946:141;;;::::0;-1:-1:-1;;;19946:141:14;;20272:2:16;19946:141:14::2;::::0;::::2;20254:21:16::0;20311:2;20291:18;;;20284:30;20350:34;20330:18;;;20323:62;-1:-1:-1;;;20401:18:16;;;20394:32;20443:19;;19946:141:14::2;20070:398:16::0;19946:141:14::2;20098:18;20119:9;20129:18;;20119:29;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;;::::2;;:38:::0;-1:-1:-1;;;;;20119:38:14::2;::::0;-1:-1:-1;20187:12:14::2;719:10:9::0;;640:96;20187:12:14::2;20168:31;;20243:8;20220:19;20230:8;-1:-1:-1::0;;;;;3506:18:3;3480:7;3506:18;;;;;;;;;;;;3406:125;20220:19:14::2;:31;;20212:70;;;::::0;-1:-1:-1;;;20212:70:14;;26704:2:16;20212:70:14::2;::::0;::::2;26686:21:16::0;26743:2;26723:18;;;26716:30;26782:28;26762:18;;;26755:56;26828:18;;20212:70:14::2;26502:350:16::0;20212:70:14::2;20315:8;-1:-1:-1::0;;;;;20315:17:14::2;;20351:8;20378:65;20394:8;20404:9;20414:18;;20404:29;;;;;;;;:::i;20378:65::-;20462:12;20493:14;20526:10;20315:236;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;20293:316;;;::::0;-1:-1:-1;;;20293:316:14;;22414:2:16;20293:316:14::2;::::0;::::2;22396:21:16::0;22453:2;22433:18;;;22426:30;22492:32;22472:18;;;22465:60;22542:18;;20293:316:14::2;22212:354:16::0;20293:316:14::2;20622:19;20674:13;3329:12:3::0;;;3242:106;20674:13:14::2;20662:8;20645:14;;:25;;;;:::i;:::-;20644:43;;;;:::i;:::-;20622:65;;20698:25;20704:8;20714;20698:5;:25::i;:::-;20776:8;20734:9;20744:18;;20734:29;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:50;;;;;;;:::i;:::-;;;;;;;;20815:11;20797:14;;:29;;;;;;;:::i;:::-;;;;;;;;20854:8;-1:-1:-1::0;;;;;20844:71:14::2;;20864:14;20880:12;20894:8;20904:10;20844:71;;;;;;;;;:::i;:::-;;;;;;;;19935:988;;;19718:1205:::0;;;;:::o;5447:82::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;5513:8:14::1;:6;:8::i;2444:47::-:0;;;;;;;;;;;;;;;-1:-1:-1;2444:47:14;:::o;2895:145:0:-;2981:4;3004:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;3004:29:0;;;;;;;;;;;;;;;2895:145::o;2365:102:3:-;2421:13;2453:7;2446:14;;;;;:::i;21378:253:14:-;21502:16;21543:9;21553:18;;21543:29;;;;;;;;:::i;:::-;;;;;;;;;;;;;;:38;:80;;-1:-1:-1;;;21543:80:14;;-1:-1:-1;;;;;21543:38:14;;;;:55;;:80;;21599:12;;21613:9;;21543:80;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;22766:282::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;22887:9:14::1;:16:::0;22874:29;::::1;22866:81;;;::::0;-1:-1:-1;;;22866:81:14;;27471:2:16;22866:81:14::1;::::0;::::1;27453:21:16::0;27510:2;27490:18;;;27483:30;27549:34;27529:18;;;27522:62;-1:-1:-1;;;27600:18:16;;;27593:37;27647:19;;22866:81:14::1;27269:403:16::0;22866:81:14::1;22960:18;:31:::0;;;23007:33:::1;::::0;13876:25:16;;;23007:33:14::1;::::0;13864:2:16;13849:18;23007:33:14::1;;;;;;;;22766:282:::0;;:::o;12373:1988::-;-1:-1:-1;;;;;;;;;;;2505:16:0;2516:4;2505:10;:16::i;:::-;3876:9:14::1;:16:::0;3868:56:::1;;;;-1:-1:-1::0;;;3868:56:14::1;;;;;;;:::i;:::-;3976:9;3986:17;;3976:28;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;3957:15;:57;;3935:149;;;;-1:-1:-1::0;;;3935:149:14::1;;;;;;;:::i;:::-;4136:9;4146:18;;4136:29;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;4117:15;:58;;4095:151;;;;-1:-1:-1::0;;;4095:151:14::1;;;;;;;:::i;:::-;12559:1:::2;12541:8;:15;:19;12533:78;;;;-1:-1:-1::0;;;12533:78:14::2;;;;;;;:::i;:::-;12624:18;12645:9;12655:18;;12645:29;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;;::::2;;:38:::0;-1:-1:-1;;;;;12645:38:14::2;::::0;-1:-1:-1;12719:35:14::2;;:::i;:::-;12770:9;12765:1589;12789:8;:15;12785:1;:19;12765:1589;;;12833:8;12842:1;12833:11;;;;;;;;:::i;:::-;;::::0;;::::2;::::0;;;;;;;-1:-1:-1;;;;;12872:25:14;::::2;;::::0;;;:19:::2;:25:::0;;;;;;;12859:38;;;;::::2;::::0;;;;;;;;;;::::2;::::0;;;;12833:11;;-1:-1:-1;12859:38:14;12872:25;;12859:38;;::::2;::::0;::::2;::::0;::::2;::::0;::::2;::::0;;;::::2;;;;;;;;;;;;;;;;;;;;;;;::::0;::::2;;;12936:10;:19;;;12918:15;12928:4;-1:-1:-1::0;;;;;3506:18:3;3480:7;3506:18;;;;;;;;;;;;3406:125;12918:15:14::2;:37;12914:229;;;13004:23;::::0;::::2;::::0;13029:19;;12981:68:::2;::::0;-1:-1:-1;;;;;12981:68:14;::::2;::::0;-1:-1:-1;;;;;;;;;;;12981:68:14;::::2;::::0;::::2;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;13075:25:14;::::2;;::::0;;;:19:::2;:25;::::0;;;;13068:32;;;::::2;::::0;::::2;-1:-1:-1::0;;;;;;;;;;;;13119:8:14::2;;12914:229;13205:8;-1:-1:-1::0;;;;;13205:17:14::2;;13249:4;13280:161;13326:10;:19;;;13376:9;13386:18;;13376:29;;;;;;;;:::i;13280:161::-;13468:10;:23;;;13518:29;13574:1:::0;13205:393:::2;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;13159:660;;13680:23;::::0;::::2;::::0;13705:19;;13657:68:::2;::::0;-1:-1:-1;;;;;13657:68:14;::::2;::::0;-1:-1:-1;;;;;;;;;;;13657:68:14;::::2;::::0;::::2;:::i;13159:660::-;13835:19;13898:13;3329:12:3::0;;;3242:106;13898:13:14::2;13875:19:::0;;13858:14:::2;::::0;:36:::2;::::0;13875:19;13858:36:::2;:::i;:::-;13857:54;;;;:::i;:::-;13835:76;;13926:32;13932:4;13938:10;:19;;;13926:5;:32::i;:::-;14015:10;:19;;;13973:9;13983:18;;13973:29;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;:61;;;;;;;:::i;:::-;;;;;;;;14067:11;14049:14;;:29;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;14199:23:14::2;::::0;::::2;::::0;14241:19;;14100:195:::2;::::0;-1:-1:-1;;;;;14100:195:14;::::2;::::0;::::2;::::0;::::2;::::0;14151:29:::2;::::0;14199:23;14241:19;14151:29;;14100:195:::2;:::i;:::-;;;;;;;;-1:-1:-1::0;;;;;;14317:25:14;::::2;;::::0;;;:19:::2;:25;::::0;;;;14310:32;;;::::2;::::0;::::2;-1:-1:-1::0;;;;;;;;;;;;12765:1589:14::2;12806:3:::0;::::2;::::0;::::2;:::i;:::-;;;;12765:1589;;;;12522:1839;;;12373:1988:::0;;:::o;26080:401::-;26137:9;26132:294;1947:1;26152:15;;26132:294;;;719:10:9;26229:1:14;26193:30;;;:16;:30;;;;;26224:1;26193:33;;;;;;;:::i;:::-;;;:37;26189:226;;;719:10:9;26347:30:14;;;;:16;:30;;;;;26251:148;;719:10:9;26378:1:14;26347:33;;;;;;;:::i;:::-;;;26266:6;26273:1;26266:9;;;;;;;:::i;26251:148::-;26169:3;;;;:::i;:::-;;;;26132:294;;;-1:-1:-1;719:10:9;26443:30:14;;;;:16;:30;;;;;-1:-1:-1;;;;;;;;;;;;26080:401:14:o;26436:37::-;26080:401::o;6592:427:3:-;6685:4;719:10:9;6685:4:3;6766:25;719:10:9;6783:7:3;6766:9;:25::i;:::-;6739:52;;6829:15;6809:16;:35;;6801:85;;;;-1:-1:-1;;;6801:85:3;;27879:2:16;6801:85:3;;;27861:21:16;27918:2;27898:18;;;27891:30;27957:34;27937:18;;;27930:62;-1:-1:-1;;;28008:18:16;;;28001:35;28053:19;;6801:85:3;27677:401:16;6801:85:3;6920:60;6929:5;6936:7;6964:15;6945:16;:34;6920:8;:60::i;:::-;-1:-1:-1;7008:4:3;;6592:427;-1:-1:-1;;;;6592:427:3:o;3727:189::-;3806:4;719:10:9;3860:28:3;719:10:9;3877:2:3;3881:6;3860:9;:28::i;27236:142:14:-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;27331:39:14::1;-1:-1:-1::0;;;;;;;;;;;27357:12:14::1;27331:10;:39::i;23512:1588::-:0;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;23760:19:14::1;:26;23738:11;:18;:48;23716:145;;;::::0;-1:-1:-1;;;23716:145:14;;23955:2:16;23716:145:14::1;::::0;::::1;23937:21:16::0;23994:2;23974:18;;;23967:30;24033:34;24013:18;;;24006:62;-1:-1:-1;;;24084:18:16;;;24077:45;24139:19;;23716:145:14::1;23753:411:16::0;23716:145:14::1;23902:9;:16:::0;23880:38;::::1;23872:87;;;::::0;-1:-1:-1;;;23872:87:14;;18288:2:16;23872:87:14::1;::::0;::::1;18270:21:16::0;18327:2;18307:18;;;18300:30;18366:34;18346:18;;;18339:62;-1:-1:-1;;;18417:18:16;;;18410:34;18461:19;;23872:87:14::1;18086:400:16::0;23872:87:14::1;23972:40;;:::i;:::-;24028:9;24023:137;1947:1;24043:15:::0;::::1;24023:137;;;24113:6;24120:1;24113:9;;;;;;;:::i;:::-;;::::0;24098:50:::1;::::0;-1:-1:-1;;;24098:50:14;;24142:4:::1;24098:50;::::0;::::1;10093:51:16::0;-1:-1:-1;;;;;24113:9:14;;::::1;::::0;24098:35:::1;::::0;10066:18:16;;24098:50:14::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;24080:12;24093:1;24080:15;;;;;;;:::i;:::-;;;;:68:::0;24060:3;::::1;::::0;::::1;:::i;:::-;;;;24023:137;;;;24172:11;24194:13:::0;24223:9:::1;24218:159;24242:11;:18;24238:1;:22;24218:159;;;24288:11;24300:1;24288:14;;;;;;;;:::i;:::-;;;;;;;24282:20;;24326:39;24337:3;24342:19;24362:1;24342:22;;;;;;;;:::i;:::-;;;;;;;24326:10;:39::i;:::-;24317:48;::::0;;::::1;:::i;:::-;::::0;-1:-1:-1;24262:3:14;::::1;::::0;::::1;:::i;:::-;;;;24218:159;;;;24389:43;;:::i;:::-;24448:9;24443:438;1947:1;24463:15:::0;::::1;24443:438;;;24608:12;24621:1;24608:15;;;;;;;:::i;:::-;;;;;24553:6;24560:1;24553:9;;;;;;;:::i;:::-;;::::0;24538:50:::1;::::0;-1:-1:-1;;;24538:50:14;;24582:4:::1;24538:50;::::0;::::1;10093:51:16::0;-1:-1:-1;;;;;24553:9:14;;::::1;::::0;24538:35:::1;::::0;10066:18:16;;24538:50:14::1;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:85;;;;:::i;:::-;24500:15;24516:1;24500:18;;;;;;;:::i;:::-;;;;:123:::0;24663:1:::1;24642:15:::0;24658:1;24642:18:::1;::::0;::::1;;;;;:::i;:::-;;;;;:22;24638:232;;;24685:169;24754:9;24764:19;24754:30;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:39:::0;-1:-1:-1;;;;;24754:39:14::1;::::0;24817:15;;24833:1;;24817:18;::::1;;;;;:::i;:::-;;;;;24700:6;24707:1;24700:9;;;;;;;:::i;24685:169::-;24480:3:::0;::::1;::::0;::::1;:::i;:::-;;;;24443:438;;;;24936:5;24893:9;24903:19;24893:30;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;:48;;;;;;;:::i;:::-;;;;;;;;25043:1;24976:9;24986:19;24976:30;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;;::::1;;:39:::0;:64:::1;::::0;-1:-1:-1;;;24976:64:14;;-1:-1:-1;;;;;24976:39:14;;::::1;::::0;:47:::1;::::0;:64:::1;::::0;25024:15;;24976:64:::1;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:68;24954:138;;;::::0;-1:-1:-1;;;24954:138:14;;20675:2:16;24954:138:14::1;::::0;::::1;20657:21:16::0;20714:2;20694:18;;;20687:30;-1:-1:-1;;;20733:18:16;;;20726:50;20793:18;;24954:138:14::1;20473:344:16::0;24954:138:14::1;23705:1395;;;;23512:1588:::0;;;;:::o;18357:1126::-;18491:7;1239:19:2;:17;:19::i;:::-;3876:9:14::1;:16:::0;3868:56:::1;;;;-1:-1:-1::0;;;3868:56:14::1;;;;;;;:::i;:::-;3976:9;3986:17;;3976:28;;;;;;;;:::i;:::-;;;;;;;;;;;:38;;;3957:15;:57;;3935:149;;;;-1:-1:-1::0;;;3935:149:14::1;;;;;;;:::i;:::-;4136:9;4146:18;;4136:29;;;;;;;;:::i;:::-;;;;;;;;;;;:39;;;4117:15;:58;;4095:151;;;;-1:-1:-1::0;;;4095:151:14::1;;;;;;;:::i;:::-;18516:18:::2;18537:9;18547:17;;18537:28;;;;;;;;:::i;:::-;;::::0;;;::::2;::::0;;::::2;::::0;;::::2;;:37:::0;-1:-1:-1;;;;;18537:37:14::2;::::0;-1:-1:-1;18604:15:14::2;:13;:15::i;:::-;18585:34;;18637:9;18632:295;18656:14;18652:1;:18;18632:295;;;18709:1;18696:7;18704:1;18696:10;;;;;;;:::i;:::-;;;;;:14;18692:224;;;18731:169;719:10:9::0;18839:8:14::2;18871:7;18879:1;18871:10;;;;;;;:::i;18731:169::-;18672:3:::0;::::2;::::0;::::2;:::i;:::-;;;;18632:295;;;-1:-1:-1::0;18960:25:14::2;::::0;-1:-1:-1;;;18960:25:14;;18937:20:::2;::::0;-1:-1:-1;;;;;18960:16:14;::::2;::::0;::::2;::::0;:25:::2;::::0;18977:7;;18960:25:::2;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;18937:48;;19019:1;19004:12;:16;18996:50;;;::::0;-1:-1:-1;;;18996:50:14;;21721:2:16;18996:50:14::2;::::0;::::2;21703:21:16::0;21760:2;21740:18;;;21733:30;-1:-1:-1;;;21779:18:16;;;21772:51;21840:18;;18996:50:14::2;21519:345:16::0;18996:50:14::2;19059:16;19094:13;3329:12:3::0;;;3242:106;19094:13:14::2;19090:159;;-1:-1:-1::0;19140:12:14;19090:159:::2;;;19229:8;19213:12;19197:13;3329:12:3::0;;;3242:106;19197:13:14::2;:28;;;;:::i;:::-;19196:41;;;;:::i;:::-;19185:52;;19090:159;19259:29;719:10:9::0;19279:8:14::2;19259:5;:29::i;:::-;19340:8;19299:9;19309:17;;19299:28;;;;;;;;:::i;:::-;;;;;;;;;;;:37;;;:49;;;;;;;:::i;:::-;;;;;;;;19377:12;19359:14;;:30;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;19407:42:14::2;::::0;719:10:9;;19407:42:14::2;::::0;::::2;::::0;19431:7;;19440:8;;19407:42:::2;:::i;:::-;;;;;;;;19467:8:::0;-1:-1:-1;;;;4257:1:14::2;18357:1126:::0;;;:::o;5228:147:0:-;4452:7;4478:12;;;:6;:12;;;;;:22;;;2505:16;2516:4;2505:10;:16::i;:::-;5342:26:::1;5354:4;5360:7;5342:11;:26::i;5133:156:14:-:0;-1:-1:-1;;;;;5247:22:14;;5220:7;5247:22;;;:16;:22;;;;;5270:10;5247:34;;;;;;;:::i;:::-;;;;5133:156;-1:-1:-1;;;5133:156:14:o;21809:446::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;-1:-1:-1;;;;;21906:27:14;::::1;21898:63;;;::::0;-1:-1:-1;;;21898:63:14;;28285:2:16;21898:63:14::1;::::0;::::1;28267:21:16::0;28324:2;28304:18;;;28297:30;28363:25;28343:18;;;28336:53;28406:18;;21898:63:14::1;28083:347:16::0;21898:63:14::1;22011:8;::::0;21972:17:::1;::::0;22011:8:::1;;:28;;22038:1;22011:28;;;2105:6;22011:28;21992:48;::::0;:15:::1;:48;:::i;:::-;22080:83;::::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;;;;;22080:83:14;;::::1;::::0;;::::1;::::0;::::1;::::0;;;-1:-1:-1;22080:83:14;;;;;;22051:9:::1;:123:::0;;::::1;::::0;;::::1;::::0;;;;;;;;;::::1;::::0;;::::1;::::0;;::::1;::::0;;-1:-1:-1;;;;;;22051:123:14::1;::::0;;;::::1;;::::0;;;;;;;;;;;;;;;;;;22200:16;22080:83;;-1:-1:-1;22190:57:14::1;::::0;22200:20:::1;::::0;22051:123;22200:20:::1;:::i;:::-;22190:57;::::0;;30370:25:16;;;-1:-1:-1;;;;;30431:32:16;;30426:2;30411:18;;30404:60;30480:18;;30473:34;;;30358:2;30343:18;22190:57:14::1;;;;;;;21887:368;21809:446:::0;;:::o;3974:149:3:-;-1:-1:-1;;;;;4089:18:3;;;4063:7;4089:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;3974:149::o;7502:298:14:-;7585:9;:16;7548:7;;;;7644:122;7672:6;7666:3;:12;7644:122;;;7715:9;7725:3;7715:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:23;:39;;;-1:-1:-1;;;7715:39:14;;;;-1:-1:-1;;;;;7715:23:14;;;;:37;;:39;;;;;;;;;;:23;:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;7702:52;;;;:::i;:::-;;-1:-1:-1;7680:5:14;;;;:::i;:::-;;;;7644:122;;;-1:-1:-1;7783:9:14;7502:298;-1:-1:-1;;7502:298:14:o;4986:139::-;5048:27;;:::i;:::-;-1:-1:-1;;;;;5095:22:14;;;;;;:16;:22;;;;;;;5088:29;;;;;;;;;;;;5095:22;5088:29;;;;;;;;;;;;;;;;;;;;;;;;4986:139;;;:::o;22371:278::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;22491:9:14::1;:16:::0;22478:29;::::1;22470:80;;;::::0;-1:-1:-1;;;22470:80:14;;19458:2:16;22470:80:14::1;::::0;::::1;19440:21:16::0;19497:2;19477:18;;;19470:30;19536:34;19516:18;;;19509:62;-1:-1:-1;;;19587:18:16;;;19580:36;19633:19;;22470:80:14::1;19256:402:16::0;22470:80:14::1;22563:17;:30:::0;;;22609:32:::1;::::0;13876:25:16;;;22609:32:14::1;::::0;13864:2:16;13849:18;22609:32:14::1;13730:177:16::0;5297:142:14;5362:24;;:::i;:::-;-1:-1:-1;;;;;5406:25:14;;;;;;:19;:25;;;;;;;;;5399:32;;;;;;;;;;;;;;;;;;;;;;5406:25;;5399:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5297:142;;;:::o;7159:197::-;7211:9;7206:110;7230:9;:16;7226:20;;7206:110;;;7268:9;7278:1;7268:12;;;;;;;;:::i;:::-;;;;;;;;;;;;;:21;:36;;;-1:-1:-1;;;7268:36:14;;;;-1:-1:-1;;;;;7268:21:14;;;;:34;;:36;;;;;;;;;;:12;:21;:36;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7248:3;;;;;:::i;:::-;;;;7206:110;;;-1:-1:-1;7331:17:14;;;;;;;7159:197::o;6176:213::-;2072:4:0;2505:16;2072:4;2505:10;:16::i;:::-;2054:4:14::1;6285:16;:34;6277:61;;;::::0;-1:-1:-1;;;6277:61:14;;22071:2:16;6277:61:14::1;::::0;::::1;22053:21:16::0;22110:2;22090:18;;;22083:30;-1:-1:-1;;;22129:18:16;;;22122:44;22183:18;;6277:61:14::1;21869:338:16::0;6277:61:14::1;-1:-1:-1::0;6349:13:14::1;:32:::0;6176:213::o;3334:103:0:-;3400:30;3411:4;719:10:9;3400::0;:30::i;763:205:7:-;902:58;;-1:-1:-1;;;;;10727:32:16;;902:58:7;;;10709:51:16;10776:18;;;10769:34;;;875:86:7;;895:5;;-1:-1:-1;;;925:23:7;10682:18:16;;902:58:7;;;;-1:-1:-1;;902:58:7;;;;;;;;;;;;;;-1:-1:-1;;;;;902:58:7;-1:-1:-1;;;;;;902:58:7;;;;;;;;;;875:19;:86::i;10504:370:3:-;-1:-1:-1;;;;;10635:19:3;;10627:68;;;;-1:-1:-1;;;10627:68:3;;25530:2:16;10627:68:3;;;25512:21:16;25569:2;25549:18;;;25542:30;25608:34;25588:18;;;25581:62;-1:-1:-1;;;25659:18:16;;;25652:34;25703:19;;10627:68:3;25328:400:16;10627:68:3;-1:-1:-1;;;;;10713:21:3;;10705:68;;;;-1:-1:-1;;;10705:68:3;;17474:2:16;10705:68:3;;;17456:21:16;17513:2;17493:18;;;17486:30;17552:34;17532:18;;;17525:62;-1:-1:-1;;;17603:18:16;;;17596:32;17645:19;;10705:68:3;17272:398:16;10705:68:3;-1:-1:-1;;;;;10784:18:3;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;10835:32;;13876:25:16;;;10835:32:3;;13849:18:16;10835:32:3;;;;;;;10504:370;;;:::o;14369:376:14:-;14491:20;14582:16;14545:33;2001:4;14545:11;:33;:::i;:::-;14544:54;;;;:::i;:::-;14529:69;;14646:1;14631:12;:16;:55;;;;;2001:4;14651:12;:35;;14631:55;14609:128;;;;-1:-1:-1;;;14609:128:14;;21024:2:16;14609:128:14;;;21006:21:16;21063:2;21043:18;;;21036:30;21102:25;21082:18;;;21075:53;21145:18;;14609:128:14;20822:347:16;9422:659:3;-1:-1:-1;;;;;9505:21:3;;9497:67;;;;-1:-1:-1;;;9497:67:3;;24371:2:16;9497:67:3;;;24353:21:16;24410:2;24390:18;;;24383:30;24449:34;24429:18;;;24422:62;-1:-1:-1;;;24500:18:16;;;24493:31;24541:19;;9497:67:3;24169:397:16;9497:67:3;-1:-1:-1;;;;;9660:18:3;;9635:22;9660:18;;;;;;;;;;;9696:24;;;;9688:71;;;;-1:-1:-1;;;9688:71:3;;17071:2:16;9688:71:3;;;17053:21:16;17110:2;17090:18;;;17083:30;17149:34;17129:18;;;17122:62;-1:-1:-1;;;17200:18:16;;;17193:32;17242:19;;9688:71:3;16869:398:16;9688:71:3;-1:-1:-1;;;;;9793:18:3;;:9;:18;;;;;;;;;;;9814:23;;;9793:44;;9930:12;:22;;;;;;;9978:37;13876:25:16;;;9793:9:3;;:18;9978:37;;13849:18:16;9978:37:3;;;;;;;26862:178:14::1;26773:267:::0;;:::o;1767:106:2:-;1685:7;;;;1836:9;1828:38;;;;-1:-1:-1;;;1828:38:2;;21376:2:16;1828:38:2;;;21358:21:16;21415:2;21395:18;;;21388:30;-1:-1:-1;;;21434:18:16;;;21427:46;21490:18;;1828:38:2;21174:340:16;974:241:7;1139:68;;-1:-1:-1;;;;;10413:15:16;;;1139:68:7;;;10395:34:16;10465:15;;10445:18;;;10438:43;10497:18;;;10490:34;;;1112:96:7;;1132:5;;-1:-1:-1;;;1162:27:7;10330:18:16;;1139:68:7;10155:375:16;1112:96:7;974:241;;;;:::o;11155:441:3:-;11285:24;11312:25;11322:5;11329:7;11312:9;:25::i;:::-;11285:52;;-1:-1:-1;;11351:16:3;:37;11347:243;;11432:6;11412:16;:26;;11404:68;;;;-1:-1:-1;;;11404:68:3;;18693:2:16;11404:68:3;;;18675:21:16;18732:2;18712:18;;;18705:30;18771:31;18751:18;;;18744:59;18820:18;;11404:68:3;18491:353:16;11404:68:3;11514:51;11523:5;11530:7;11558:6;11539:16;:25;11514:8;:51::i;7473:818::-;-1:-1:-1;;;;;7599:18:3;;7591:68;;;;-1:-1:-1;;;7591:68:3;;24773:2:16;7591:68:3;;;24755:21:16;24812:2;24792:18;;;24785:30;24851:34;24831:18;;;24824:62;-1:-1:-1;;;24902:18:16;;;24895:35;24947:19;;7591:68:3;24571:401:16;7591:68:3;-1:-1:-1;;;;;7677:16:3;;7669:64;;;;-1:-1:-1;;;7669:64:3;;16318:2:16;7669:64:3;;;16300:21:16;16357:2;16337:18;;;16330:30;16396:34;16376:18;;;16369:62;-1:-1:-1;;;16447:18:16;;;16440:33;16490:19;;7669:64:3;16116:399:16;7669:64:3;-1:-1:-1;;;;;7815:15:3;;7793:19;7815:15;;;;;;;;;;;7848:21;;;;7840:72;;;;-1:-1:-1;;;7840:72:3;;19051:2:16;7840:72:3;;;19033:21:16;19090:2;19070:18;;;19063:30;19129:34;19109:18;;;19102:62;-1:-1:-1;;;19180:18:16;;;19173:36;19226:19;;7840:72:3;18849:402:16;7840:72:3;-1:-1:-1;;;;;7946:15:3;;;:9;:15;;;;;;;;;;;7964:20;;;7946:38;;8161:13;;;;;;;;;;:23;;;;;;8210:26;;13876:25:16;;;8161:13:3;;8210:26;;13849:18:16;8210:26:3;;;;;;;8247:37;26773:267:14;7461:233:0;7544:22;7552:4;7558:7;7544;:22::i;:::-;7539:149;;7582:12;;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7582:29:0;;;;;;;;;:36;;-1:-1:-1;;7582:36:0;7614:4;7582:36;;;7664:12;719:10:9;;640:96;7664:12:0;-1:-1:-1;;;;;7637:40:0;7655:7;-1:-1:-1;;;;;7637:40:0;7649:4;7637:40;;;;;;;;;;7461:233;;:::o;7865:234::-;7948:22;7956:4;7962:7;7948;:22::i;:::-;7944:149;;;8018:5;7986:12;;;:6;:12;;;;;;;;-1:-1:-1;;;;;7986:29:0;;;;;;;;;;:37;;-1:-1:-1;;7986:37:0;;;8042:40;719:10:9;;7986:12:0;;8042:40;;8018:5;8042:40;7865:234;;:::o;2433:117:2:-;1486:16;:14;:16::i;:::-;2491:7:::1;:15:::0;;-1:-1:-1;;2491:15:2::1;::::0;;2521:22:::1;719:10:9::0;2530:12:2::1;2521:22;::::0;-1:-1:-1;;;;;10111:32:16;;;10093:51;;10081:2;10066:18;2521:22:2::1;;;;;;;2433:117::o:0;8567:535:3:-;-1:-1:-1;;;;;8650:21:3;;8642:65;;;;-1:-1:-1;;;8642:65:3;;29053:2:16;8642:65:3;;;29035:21:16;29092:2;29072:18;;;29065:30;29131:33;29111:18;;;29104:61;29182:18;;8642:65:3;28851:355:16;8642:65:3;8794:6;8778:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;8946:18:3;;:9;:18;;;;;;;;;;;:28;;;;;;8999:37;13876:25:16;;;8999:37:3;;13849:18:16;8999:37:3;;;;;;;14753:3386:14;;:::o;2186:115:2:-;1239:19;:17;:19::i;:::-;2245:7:::1;:14:::0;;-1:-1:-1;;2245:14:2::1;2255:4;2245:14;::::0;;2274:20:::1;2281:12;719:10:9::0;;640:96;25108:894:14;25182:7;25202:23;2162:6;25242:14;:35;25238:722;;;25294:9;25304:3;25294:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;:23;:37;;;-1:-1:-1;;;25294:37:14;;;;-1:-1:-1;;;;;25294:23:14;;;;:35;;:37;;;;;;;;;;:14;:23;:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25366:9;25376:3;25366:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;25348:41;;25430:1;25404:9;25414:3;25404:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;:27;;;;25238:722;;;2162:6;25509:14;25483:9;25493:3;25483:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;:40;;;;:::i;:::-;25482:62;;;;:::i;:::-;25464:80;;25559:38;;:::i;:::-;25614:9;25624:3;25614:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;;;;;;;;-1:-1:-1;;;;;25614:23:14;-1:-1:-1;;;;;25614:32:14;;25673:4;25697:57;25713:15;25730:9;25740:3;25730:14;;;;;;;;:::i;25697:57::-;25773:10;25802:29;25850:1;25614:252;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25933:15;25907:9;25917:3;25907:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;;:41;;;;:::i;:::-;25881:9;25891:3;25881:14;;;;;;;;:::i;:::-;;;;;;;;;;;:23;;:67;;;;25449:511;25979:15;25108:894;-1:-1:-1;;;25108:894:14:o;3718:479:0:-;3806:22;3814:4;3820:7;3806;:22::i;:::-;3801:390;;3989:28;4009:7;3989:19;:28::i;:::-;4088:38;4116:4;4123:2;4088:19;:38::i;:::-;3896:252;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;3896:252:0;;;;;;;;;;-1:-1:-1;;;3844:336:0;;;;;;;:::i;3747:706:7:-;4166:23;4192:69;4220:4;4192:69;;;;;;;;;;;;;;;;;4200:5;-1:-1:-1;;;;;4192:27:7;;;:69;;;;;:::i;:::-;4275:17;;4166:95;;-1:-1:-1;4275:21:7;4271:176;;4370:10;4359:30;;;;;;;;;;;;:::i;:::-;4351:85;;;;-1:-1:-1;;;4351:85:7;;26293:2:16;4351:85:7;;;26275:21:16;26332:2;26312:18;;;26305:30;26371:34;26351:18;;;26344:62;-1:-1:-1;;;26422:18:16;;;26415:40;26472:19;;4351:85:7;26091:406:16;1945:106:2;1685:7;;;;2003:41;;;;-1:-1:-1;;;2003:41:2;;16722:2:16;2003:41:2;;;16704:21:16;16761:2;16741:18;;;16734:30;-1:-1:-1;;;16780:18:16;;;16773:50;16840:18;;2003:41:2;16520:344:16;2102:149:10;2160:13;2192:52;-1:-1:-1;;;;;2204:22:10;;311:2;1513:437;1588:13;1613:19;1645:10;1649:6;1645:1;:10;:::i;:::-;:14;;1658:1;1645:14;:::i;:::-;1635:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1635:25:10;;1613:47;;-1:-1:-1;;;1670:6:10;1677:1;1670:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1670:15:10;;;;;;;;;-1:-1:-1;;;1695:6:10;1702:1;1695:9;;;;;;;;:::i;:::-;;;;:15;-1:-1:-1;;;;;1695:15:10;;;;;;;;-1:-1:-1;1725:9:10;1737:10;1741:6;1737:1;:10;:::i;:::-;:14;;1750:1;1737:14;:::i;:::-;1725:26;;1720:128;1757:1;1753;:5;1720:128;;;-1:-1:-1;;;1800:5:10;1808:3;1800:11;1791:21;;;;;;;:::i;:::-;;;;1779:6;1786:1;1779:9;;;;;;;;:::i;:::-;;;;:33;-1:-1:-1;;;;;1779:33:10;;;;;;;;-1:-1:-1;1836:1:10;1826:11;;;;;1760:3;;;:::i;:::-;;;1720:128;;;-1:-1:-1;1865:10:10;;1857:55;;;;-1:-1:-1;;;1857:55:10;;15957:2:16;1857:55:10;;;15939:21:16;;;15976:18;;;15969:30;16035:34;16015:18;;;16008:62;16087:18;;1857:55:10;15755:356:16;3873:223:8;4006:12;4037:52;4059:6;4067:4;4073:1;4076:12;4006;5241;5255:23;5282:6;-1:-1:-1;;;;;5282:11:8;5301:5;5308:4;5282:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5240:73;;;;5330:69;5357:6;5365:7;5374:10;5386:12;5330:26;:69::i;:::-;5323:76;4960:446;-1:-1:-1;;;;;;;4960:446:8:o;7466:628::-;7646:12;7674:7;7670:418;;;7701:17;;7697:286;;-1:-1:-1;;;;;1465:19:8;;;7908:60;;;;-1:-1:-1;;;7908:60:8;;25935:2:16;7908:60:8;;;25917:21:16;25974:2;25954:18;;;25947:30;26013:31;25993:18;;;25986:59;26062:18;;7908:60:8;25733:353:16;7908:60:8;-1:-1:-1;8003:10:8;7996:17;;7670:418;8044:33;8052:10;8064:12;8775:17;;:21;8771:379;;9003:10;8997:17;9059:15;9046:10;9042:2;9038:19;9031:44;8771:379;9126:12;9119:20;;-1:-1:-1;;;9119:20:8;;;;;;;;:::i;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;:::i;:::-;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:682:16;64:5;117:3;110:4;102:6;98:17;94:27;84:55;;135:1;132;125:12;84:55;168:2;162:9;210:2;202:6;198:15;279:6;267:10;264:22;243:18;231:10;228:34;225:62;222:88;;;290:18;;:::i;:::-;326:2;319:22;361:6;387;420:2;408:15;;405:24;-1:-1:-1;402:44:16;;;442:1;439;432:12;402:44;464:1;474:192;488:4;485:1;482:11;474:192;;;547:17;;535:30;;588:4;612:12;;;;644;;;;508:1;501:9;474:192;;;-1:-1:-1;684:6:16;;14:682;-1:-1:-1;;;;;14:682:16:o;701:673::-;755:5;808:3;801:4;793:6;789:17;785:27;775:55;;826:1;823;816:12;775:55;862:6;849:20;888:4;912:60;928:43;968:2;928:43;:::i;:::-;912:60;:::i;:::-;994:3;1018:2;1013:3;1006:15;1046:2;1041:3;1037:12;1030:19;;1081:2;1073:6;1069:15;1133:3;1128:2;1122;1119:1;1115:10;1107:6;1103:23;1099:32;1096:41;1093:61;;;1150:1;1147;1140:12;1093:61;1172:1;1182:163;1196:2;1193:1;1190:9;1182:163;;;1253:17;;1241:30;;1291:12;;;;1323;;;;1214:1;1207:9;1182:163;;;-1:-1:-1;1363:5:16;;701:673;-1:-1:-1;;;;;;;701:673:16:o;1379:188::-;1447:20;;-1:-1:-1;;;;;1496:46:16;;1486:57;;1476:85;;1557:1;1554;1547:12;1572:247;1631:6;1684:2;1672:9;1663:7;1659:23;1655:32;1652:52;;;1700:1;1697;1690:12;1652:52;1739:9;1726:23;1758:31;1783:5;1758:31;:::i;1824:388::-;1892:6;1900;1953:2;1941:9;1932:7;1928:23;1924:32;1921:52;;;1969:1;1966;1959:12;1921:52;2008:9;1995:23;2027:31;2052:5;2027:31;:::i;:::-;2077:5;-1:-1:-1;2134:2:16;2119:18;;2106:32;2147:33;2106:32;2147:33;:::i;:::-;2199:7;2189:17;;;1824:388;;;;;:::o;2217:456::-;2294:6;2302;2310;2363:2;2351:9;2342:7;2338:23;2334:32;2331:52;;;2379:1;2376;2369:12;2331:52;2418:9;2405:23;2437:31;2462:5;2437:31;:::i;:::-;2487:5;-1:-1:-1;2544:2:16;2529:18;;2516:32;2557:33;2516:32;2557:33;:::i;:::-;2217:456;;2609:7;;-1:-1:-1;;;2663:2:16;2648:18;;;;2635:32;;2217:456::o;2678:315::-;2746:6;2754;2807:2;2795:9;2786:7;2782:23;2778:32;2775:52;;;2823:1;2820;2813:12;2775:52;2862:9;2849:23;2881:31;2906:5;2881:31;:::i;:::-;2931:5;2983:2;2968:18;;;;2955:32;;-1:-1:-1;;;2678:315:16:o;2998:977::-;3082:6;3113:2;3156;3144:9;3135:7;3131:23;3127:32;3124:52;;;3172:1;3169;3162:12;3124:52;3212:9;3199:23;3245:18;3237:6;3234:30;3231:50;;;3277:1;3274;3267:12;3231:50;3300:22;;3353:4;3345:13;;3341:27;-1:-1:-1;3331:55:16;;3382:1;3379;3372:12;3331:55;3418:2;3405:16;3441:60;3457:43;3497:2;3457:43;:::i;3441:60::-;3523:3;3547:2;3542:3;3535:15;3575:2;3570:3;3566:12;3559:19;;3606:2;3602;3598:11;3654:7;3649:2;3643;3640:1;3636:10;3632:2;3628:19;3624:28;3621:41;3618:61;;;3675:1;3672;3665:12;3618:61;3697:1;3688:10;;3707:238;3721:2;3718:1;3715:9;3707:238;;;3792:3;3779:17;3809:31;3834:5;3809:31;:::i;:::-;3853:18;;3739:1;3732:9;;;;;3891:12;;;;3923;;3707:238;;;-1:-1:-1;3964:5:16;2998:977;-1:-1:-1;;;;;;;2998:977:16:o;3980:224::-;4062:6;4115:2;4103:9;4094:7;4090:23;4086:32;4083:52;;;4131:1;4128;4121:12;4083:52;4154:44;4190:7;4179:9;4154:44;:::i;4209:354::-;4297:6;4305;4358:3;4346:9;4337:7;4333:23;4329:33;4326:53;;;4375:1;4372;4365:12;4326:53;4398:44;4434:7;4423:9;4398:44;:::i;:::-;4388:54;;4492:2;4481:9;4477:18;4464:32;4505:28;4527:5;4505:28;:::i;4568:663::-;4695:6;4703;4711;4764:2;4752:9;4743:7;4739:23;4735:32;4732:52;;;4780:1;4777;4770:12;4732:52;4820:9;4807:23;4849:18;4890:2;4882:6;4879:14;4876:34;;;4906:1;4903;4896:12;4876:34;4929:61;4982:7;4973:6;4962:9;4958:22;4929:61;:::i;:::-;4919:71;;5043:2;5032:9;5028:18;5015:32;4999:48;;5072:2;5062:8;5059:16;5056:36;;;5088:1;5085;5078:12;5056:36;;5111:63;5166:7;5155:8;5144:9;5140:24;5111:63;:::i;:::-;5101:73;;;5221:2;5210:9;5206:18;5193:32;5183:42;;4568:663;;;;;:::o;5236:245::-;5303:6;5356:2;5344:9;5335:7;5331:23;5327:32;5324:52;;;5372:1;5369;5362:12;5324:52;5404:9;5398:16;5423:28;5445:5;5423:28;:::i;5486:180::-;5545:6;5598:2;5586:9;5577:7;5573:23;5569:32;5566:52;;;5614:1;5611;5604:12;5566:52;-1:-1:-1;5637:23:16;;5486:180;-1:-1:-1;5486:180:16:o;5671:315::-;5739:6;5747;5800:2;5788:9;5779:7;5775:23;5771:32;5768:52;;;5816:1;5813;5806:12;5768:52;5852:9;5839:23;5829:33;;5912:2;5901:9;5897:18;5884:32;5925:31;5950:5;5925:31;:::i;5991:286::-;6049:6;6102:2;6090:9;6081:7;6077:23;6073:32;6070:52;;;6118:1;6115;6108:12;6070:52;6144:23;;-1:-1:-1;;;;;;6196:32:16;;6186:43;;6176:71;;6243:1;6240;6233:12;6742:184;6812:6;6865:2;6853:9;6844:7;6840:23;6836:32;6833:52;;;6881:1;6878;6871:12;6833:52;-1:-1:-1;6904:16:16;;6742:184;-1:-1:-1;6742:184:16:o;6931:293::-;7022:6;7030;7083:3;7071:9;7062:7;7058:23;7054:33;7051:53;;;7100:1;7097;7090:12;7051:53;7136:9;7123:23;7113:33;;7165:53;7210:7;7205:2;7194:9;7190:18;7165:53;:::i;:::-;7155:63;;6931:293;;;;;:::o;7229:532::-;7357:6;7365;7373;7381;7434:3;7422:9;7413:7;7409:23;7405:33;7402:53;;;7451:1;7448;7441:12;7402:53;7487:9;7474:23;7464:33;;7516:53;7561:7;7556:2;7545:9;7541:18;7516:53;:::i;:::-;7506:63;;7619:3;7608:9;7604:19;7591:33;7653:1;7646:5;7643:12;7633:40;;7669:1;7666;7659:12;7633:40;7692:5;-1:-1:-1;7716:39:16;7750:3;7735:19;;7716:39;:::i;:::-;7706:49;;7229:532;;;;;;;:::o;7766:254::-;7834:6;7842;7895:2;7883:9;7874:7;7870:23;7866:32;7863:52;;;7911:1;7908;7901:12;7863:52;7947:9;7934:23;7924:33;;7976:38;8010:2;7999:9;7995:18;7976:38;:::i;8025:269::-;8082:6;8135:2;8123:9;8114:7;8110:23;8106:32;8103:52;;;8151:1;8148;8141:12;8103:52;8190:9;8177:23;8240:4;8233:5;8229:16;8222:5;8219:27;8209:55;;8260:1;8257;8250:12;8299:326;8392:5;8415:1;8425:194;8439:4;8436:1;8433:11;8425:194;;;8498:13;;8486:26;;8535:4;8559:12;;;;8594:15;;;;8459:1;8452:9;8425:194;;8630:242;8716:1;8709:5;8706:12;8696:143;;8761:10;8756:3;8752:20;8749:1;8742:31;8796:4;8793:1;8786:15;8824:4;8821:1;8814:15;8696:143;8848:18;;8630:242::o;8877:274::-;9006:3;9044:6;9038:13;9060:53;9106:6;9101:3;9094:4;9086:6;9082:17;9060:53;:::i;:::-;9129:16;;;;;8877:274;-1:-1:-1;;8877:274:16:o;9156:786::-;9567:25;9562:3;9555:38;9537:3;9622:6;9616:13;9638:62;9693:6;9688:2;9683:3;9679:12;9672:4;9664:6;9660:17;9638:62;:::i;:::-;-1:-1:-1;;;9759:2:16;9719:16;;;9751:11;;;9744:40;9809:13;;9831:63;9809:13;9880:2;9872:11;;9865:4;9853:17;;9831:63;:::i;:::-;9914:17;9933:2;9910:26;;9156:786;-1:-1:-1;;;;9156:786:16:o;10814:644::-;-1:-1:-1;;;;;11162:32:16;;11144:51;;11226:2;11211:18;;11204:34;;;11131:3;11116:19;;11247:52;11295:2;11280:18;;11272:6;11247:52;:::i;:::-;11308:59;11362:3;11351:9;11347:19;11339:6;11308:59;:::i;:::-;-1:-1:-1;;;;;11408:6:16;11404:47;11398:3;11387:9;11383:19;11376:76;10814:644;;;;;;;;:::o;12104:241::-;12284:2;12269:18;;12296:43;12273:9;12321:6;12296:43;:::i;12350:323::-;12552:3;12537:19;;12565:43;12541:9;12590:6;12565:43;:::i;:::-;12658:6;12651:14;12644:22;12639:2;12628:9;12624:18;12617:50;12350:323;;;;;:::o;12678:313::-;12886:3;12871:19;;12899:43;12875:9;12924:6;12899:43;:::i;:::-;12978:6;12973:2;12962:9;12958:18;12951:34;12678:313;;;;;:::o;12996:537::-;13201:3;13186:19;;13190:9;13282:6;13159:4;13316:168;13330:4;13327:1;13324:11;13316:168;;;13389:13;;13377:26;;13432:4;13423:14;;;;13472:1;13460:14;;;;13343:9;13316:168;;;13320:3;;;13520:6;13515:2;13504:9;13500:18;13493:34;12996:537;;;;;:::o;13912:547::-;14201:3;14186:19;;14214:49;14190:9;14245:6;14214:49;:::i;:::-;14272:52;14320:2;14309:9;14305:18;14297:6;14272:52;:::i;:::-;14361:6;14355:3;14344:9;14340:19;14333:35;-1:-1:-1;;;;;14409:6:16;14405:47;14399:3;14388:9;14384:19;14377:76;13912:547;;;;;;;:::o;15008:383::-;15157:2;15146:9;15139:21;15120:4;15189:6;15183:13;15232:6;15227:2;15216:9;15212:18;15205:34;15248:66;15307:6;15302:2;15291:9;15287:18;15282:2;15274:6;15270:15;15248:66;:::i;:::-;15375:2;15354:15;-1:-1:-1;;15350:29:16;15335:45;;;;15382:2;15331:54;;15008:383;-1:-1:-1;;15008:383:16:o;17675:406::-;17877:2;17859:21;;;17916:2;17896:18;;;17889:30;17955:34;17950:2;17935:18;;17928:62;-1:-1:-1;;;18021:2:16;18006:18;;17999:40;18071:3;18056:19;;17675:406::o;22932:410::-;23134:2;23116:21;;;23173:2;23153:18;;;23146:30;23212:34;23207:2;23192:18;;23185:62;-1:-1:-1;;;23278:2:16;23263:18;;23256:44;23332:3;23317:19;;22932:410::o;24977:346::-;25179:2;25161:21;;;25218:2;25198:18;;;25191:30;-1:-1:-1;;;25252:2:16;25237:18;;25230:52;25314:2;25299:18;;24977:346::o;26857:407::-;27059:2;27041:21;;;27098:2;27078:18;;;27071:30;27137:34;27132:2;27117:18;;27110:62;-1:-1:-1;;;27203:2:16;27188:18;;27181:41;27254:3;27239:19;;26857:407::o;29211:377::-;29446:13;;29428:32;;29507:4;29495:17;;;29489:24;29415:3;29400:19;;;29522:60;;29561:20;;29489:24;29522:60;:::i;30518:313::-;30739:25;;;30726:3;30711:19;;30773:52;30821:2;30806:18;;30798:6;30773:52;:::i;31319:275::-;31390:2;31384:9;31455:2;31436:13;;-1:-1:-1;;31432:27:16;31420:40;;31490:18;31475:34;;31511:22;;;31472:62;31469:88;;;31537:18;;:::i;:::-;31573:2;31566:22;31319:275;;-1:-1:-1;31319:275:16:o;31599:183::-;31659:4;31692:18;31684:6;31681:30;31678:56;;;31714:18;;:::i;:::-;-1:-1:-1;31759:1:16;31755:14;31771:4;31751:25;;31599:183::o;31787:128::-;31827:3;31858:1;31854:6;31851:1;31848:13;31845:39;;;31864:18;;:::i;:::-;-1:-1:-1;31900:9:16;;31787:128::o;31920:217::-;31960:1;31986;31976:132;;32030:10;32025:3;32021:20;32018:1;32011:31;32065:4;32062:1;32055:15;32093:4;32090:1;32083:15;31976:132;-1:-1:-1;32122:9:16;;31920:217::o;32142:168::-;32182:7;32248:1;32244;32240:6;32236:14;32233:1;32230:21;32225:1;32218:9;32211:17;32207:45;32204:71;;;32255:18;;:::i;:::-;-1:-1:-1;32295:9:16;;32142:168::o;32315:125::-;32355:4;32383:1;32380;32377:8;32374:34;;;32388:18;;:::i;:::-;-1:-1:-1;32425:9:16;;32315:125::o;32445:258::-;32517:1;32527:113;32541:6;32538:1;32535:13;32527:113;;;32617:11;;;32611:18;32598:11;;;32591:39;32563:2;32556:10;32527:113;;;32658:6;32655:1;32652:13;32649:48;;;-1:-1:-1;;32693:1:16;32675:16;;32668:27;32445:258::o;32708:136::-;32747:3;32775:5;32765:39;;32784:18;;:::i;:::-;-1:-1:-1;;;32820:18:16;;32708:136::o;32849:380::-;32928:1;32924:12;;;;32971;;;32992:61;;33046:4;33038:6;33034:17;33024:27;;32992:61;33099:2;33091:6;33088:14;33068:18;33065:38;33062:161;;;33145:10;33140:3;33136:20;33133:1;33126:31;33180:4;33177:1;33170:15;33208:4;33205:1;33198:15;33062:161;;32849:380;;;:::o;33234:135::-;33273:3;-1:-1:-1;;33294:17:16;;33291:43;;;33314:18;;:::i;:::-;-1:-1:-1;33361:1:16;33350:13;;33234:135::o;33374:127::-;33435:10;33430:3;33426:20;33423:1;33416:31;33466:4;33463:1;33456:15;33490:4;33487:1;33480:15;33506:127;33567:10;33562:3;33558:20;33555:1;33548:31;33598:4;33595:1;33588:15;33622:4;33619:1;33612:15;33638:127;33699:10;33694:3;33690:20;33687:1;33680:31;33730:4;33727:1;33720:15;33754:4;33751:1;33744:15;33770:127;33831:10;33826:3;33822:20;33819:1;33812:31;33862:4;33859:1;33852:15;33886:4;33883:1;33876:15;33902:131;-1:-1:-1;;;;;33977:31:16;;33967:42;;33957:70;;34023:1;34020;34013:12;34038:118;34124:5;34117:13;34110:21;34103:5;34100:32;34090:60;;34146:1;34143;34136:12

Swarm Source

ipfs://4b55ea8810f164cb0de04f8990e6ea3fa40924c118fab035e86dc96455123bc8
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.