ETH Price: $2,676.49 (-0.70%)

Contract

0x219Bd2d1449F3813c01204EE455D11B41D5051e9
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Swap Exact Token...205967952024-08-24 6:53:2335 days ago1724482403IN
0x219Bd2d1...41D5051e9
0 ETH0.000178821.3278979
Swap Exact Token...205527682024-08-18 3:17:1141 days ago1723951031IN
0x219Bd2d1...41D5051e9
0 ETH0.000163671.27684814
Swap Exact Token...204018452024-07-28 1:44:5962 days ago1722131099IN
0x219Bd2d1...41D5051e9
0 ETH0.000266871.83515425
Swap Exact Token...203458622024-07-20 6:10:1170 days ago1721455811IN
0x219Bd2d1...41D5051e9
0 ETH0.000403983.29634128
Swap Exact Token...203458502024-07-20 6:07:4770 days ago1721455667IN
0x219Bd2d1...41D5051e9
0 ETH0.000412812.74740566
Swap Exact Token...202589422024-07-08 2:54:3582 days ago1720407275IN
0x219Bd2d1...41D5051e9
0 ETH0.000197511.42736372
Swap Exact Token...202483212024-07-06 15:19:4784 days ago1720279187IN
0x219Bd2d1...41D5051e9
0 ETH0.000807986
Swap Exact Token...202227882024-07-03 1:45:2387 days ago1719971123IN
0x219Bd2d1...41D5051e9
0 ETH0.000313582.6673959
Swap Exact Token...202227842024-07-03 1:44:3587 days ago1719971075IN
0x219Bd2d1...41D5051e9
0 ETH0.002022092.86182344
Swap Exact Token...201821812024-06-27 9:38:3593 days ago1719481115IN
0x219Bd2d1...41D5051e9
0 ETH0.000660085.1405774
Swap Exact Token...200941922024-06-15 2:21:59105 days ago1718418119IN
0x219Bd2d1...41D5051e9
0 ETH0.000400963.01462686
Swap Exact Token...200941842024-06-15 2:20:23105 days ago1718418023IN
0x219Bd2d1...41D5051e9
0 ETH0.000341932.78920761
Swap Exact Token...200941712024-06-15 2:17:47105 days ago1718417867IN
0x219Bd2d1...41D5051e9
0 ETH0.000352812.65282281
Swap Exact Token...200724582024-06-12 1:26:35108 days ago1718155595IN
0x219Bd2d1...41D5051e9
0 ETH0.000752035.64381389
Swap Exact Token...199866312024-05-31 1:47:59120 days ago1717120079IN
0x219Bd2d1...41D5051e9
0 ETH0.00112578.78120312
Swap Exact Token...199495122024-05-25 21:15:47126 days ago1716671747IN
0x219Bd2d1...41D5051e9
0 ETH0.000556774.1860633
Swap Exact Token...199495072024-05-25 21:14:47126 days ago1716671687IN
0x219Bd2d1...41D5051e9
0 ETH0.000632654.75654652
Swap Exact Token...199449742024-05-25 6:03:11126 days ago1716616991IN
0x219Bd2d1...41D5051e9
0 ETH0.00052933.64325642
Swap Exact Token...199156072024-05-21 3:30:23130 days ago1716262223IN
0x219Bd2d1...41D5051e9
0 ETH0.0014158710.62289377
Swap Exact Token...199153382024-05-21 2:35:59130 days ago1716258959IN
0x219Bd2d1...41D5051e9
0 ETH0.0015165211.82870231
Swap Exact Token...199024412024-05-19 7:17:47132 days ago1716103067IN
0x219Bd2d1...41D5051e9
0 ETH0.000419793.11291856
Remove Liquidity...199023172024-05-19 6:52:47132 days ago1716101567IN
0x219Bd2d1...41D5051e9
0 ETH0.000728163.01070486
Swap Exact Token...198970622024-05-18 13:15:23133 days ago1716038123IN
0x219Bd2d1...41D5051e9
0 ETH0.000460293.16876604
Swap Exact Token...198873872024-05-17 4:43:23134 days ago1715921003IN
0x219Bd2d1...41D5051e9
0 ETH0.000485294.12792325
Swap Exact Token...198256612024-05-08 13:32:35143 days ago1715175155IN
0x219Bd2d1...41D5051e9
0 ETH0.00094146.98016484
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
UniswapV2Router02

Compiler Version
v0.6.6+commit.6c089d02

Optimization Enabled:
Yes with 999999 runs

Other Settings:
default evmVersion
File 1 of 1 : UniswapV2Router02.sol
// Dependency file: @uniswap/v2-core/contracts/interfaces/IApprovedTokenManager.sol

// pragma solidity >=0.5.0;

interface IApprovedTokenManager {
    function isApprovedToken(address) external view returns (bool);
}


// Dependency file: @uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol

// pragma solidity >=0.5.0;
// import '/Users/cuijl/solityProjects/swap-periphery/node_modules/@uniswap/v2-core/contracts/interfaces/IApprovedTokenManager.sol';

interface IUniswapV2Factory {
    event PairCreated(address indexed token0, address indexed token1, address pair, uint);
    event SetFeeTo(address);
    event SetFeeToSetter(address);
    event SetFeeRateNumerator(address, address, uint32);
    event SetApprovedTokenManager(IApprovedTokenManager);

    function feeTo() external view returns (address);
    function feeToSetter() external view returns (address);

    function getPair(address tokenA, address tokenB) external view returns (address pair);
    function allPairs(uint) external view returns (address pair);
    function allPairsLength() external view returns (uint);

    function createPair(address tokenA, address tokenB) external returns (address pair);

    function setFeeTo(address) external;
    function setFeeToSetter(address) external;
    function setApprovedTokenManager(IApprovedTokenManager _approvedTokenManager) external;
    function setFeeRateNumerator(address tokenA, address tokenB, uint32 feeRateNumerator) external;
    function getLightRewardParams(address pair) external view returns (address _stHope, address _minter, address _ltToken, address _pairGauge);
}


// Dependency file: @uniswap/lib/contracts/libraries/TransferHelper.sol

// SPDX-License-Identifier: GPL-3.0-or-later

// pragma solidity >=0.6.0;

// helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false
library TransferHelper {
    function safeApprove(
        address token,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('approve(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeApprove: approve failed'
        );
    }

    function safeTransfer(
        address token,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('transfer(address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::safeTransfer: transfer failed'
        );
    }

    function safeTransferFrom(
        address token,
        address from,
        address to,
        uint256 value
    ) internal {
        // bytes4(keccak256(bytes('transferFrom(address,address,uint256)')));
        (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value));
        require(
            success && (data.length == 0 || abi.decode(data, (bool))),
            'TransferHelper::transferFrom: transferFrom failed'
        );
    }

    function safeTransferETH(address to, uint256 value) internal {
        (bool success, ) = to.call{value: value}(new bytes(0));
        require(success, 'TransferHelper::safeTransferETH: ETH transfer failed');
    }
}


// Dependency file: contracts/interfaces/IUniswapV2Router01.sol

// pragma solidity >=0.6.2;

interface IUniswapV2Router01 {
    function factory() external pure returns (address);
    function WETH() external pure returns (address);

    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB, uint liquidity);
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external payable returns (uint amountToken, uint amountETH, uint liquidity);
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountToken, uint amountETH);
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountA, uint amountB);
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountToken, uint amountETH);
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external returns (uint[] memory amounts);
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        returns (uint[] memory amounts);
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        payable
        returns (uint[] memory amounts);

    function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB);
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint32 feeRateNumerator) external pure returns (uint amountOut);
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint32 feeRateNumerator) external pure returns (uint amountIn);
    function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts);
    function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts);
}


// Dependency file: contracts/interfaces/IUniswapV2Router02.sol

// pragma solidity >=0.6.2;

// import 'contracts/interfaces/IUniswapV2Router01.sol';

interface IUniswapV2Router02 is IUniswapV2Router01 {
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external returns (uint amountETH);
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external returns (uint amountETH);

    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external payable;
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external;
}


// Dependency file: @uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol

// pragma solidity >=0.5.0;

interface IUniswapV2Pair {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external pure returns (string memory);
    function symbol() external pure returns (string memory);
    function decimals() external pure returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);

    function DOMAIN_SEPARATOR() external view returns (bytes32);
    function PERMIT_TYPEHASH() external pure returns (bytes32);
    function nonces(address owner) external view returns (uint);

    function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external;

    event Mint(address indexed sender, uint amount0, uint amount1);
    event Burn(address indexed sender, uint amount0, uint amount1, address indexed to);
    event Swap(
        address indexed sender,
        uint amount0In,
        uint amount1In,
        uint amount0Out,
        uint amount1Out,
        address indexed to
    );
    event Sync(uint112 reserve0, uint112 reserve1);

    function MINIMUM_LIQUIDITY() external pure returns (uint);
    function factory() external view returns (address);
    function token0() external view returns (address);
    function token1() external view returns (address);
    function getFeeRateNumerator() external view returns (uint32);
    function setFeeRateNumerator(uint32) external;
    function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast);
    function price0CumulativeLast() external view returns (uint);
    function price1CumulativeLast() external view returns (uint);
    function kLast() external view returns (uint);

    function mint(address to) external returns (uint liquidity);
    function mintFee() external;
    function burn(address to) external returns (uint amount0, uint amount1);
    function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external;
    function skim(address to) external;
    function sync() external;

    function initialize(address, address) external;
}


// Dependency file: contracts/libraries/SafeMath.sol

// pragma solidity =0.6.6;

// a library for performing overflow-safe math, courtesy of DappHub (https://github.com/dapphub/ds-math)

library SafeMath {
    function add(uint x, uint y) internal pure returns (uint z) {
        require((z = x + y) >= x, 'ds-math-add-overflow');
    }

    function sub(uint x, uint y) internal pure returns (uint z) {
        require((z = x - y) <= x, 'ds-math-sub-underflow');
    }

    function mul(uint x, uint y) internal pure returns (uint z) {
        require(y == 0 || (z = x * y) / y == x, 'ds-math-mul-overflow');
    }
}


// Dependency file: contracts/libraries/UniswapV2Library.sol

// pragma solidity >=0.5.0;

// import '/Users/cuijl/solityProjects/swap-periphery/node_modules/@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol';

// import "contracts/libraries/SafeMath.sol";

library UniswapV2Library {
    using SafeMath for uint;
    uint32 public constant FeeRateDenominator= 10000;

    // returns sorted token addresses, used to handle return values from pairs sorted in this order
    function sortTokens(address tokenA, address tokenB) internal pure returns (address token0, address token1) {
        require(tokenA != tokenB, 'HopeSwapLibrary: IDENTICAL_ADDRESSES');
        (token0, token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA);
        require(token0 != address(0), 'HopeSwapLibrary: ZERO_ADDRESS');
    }

    // calculates the CREATE2 address for a pair without making any external calls
    function pairFor(address factory, address tokenA, address tokenB) internal pure returns (address pair) {
        (address token0, address token1) = sortTokens(tokenA, tokenB);
        pair = address(uint(keccak256(abi.encodePacked(
                hex'ff',
                factory,
                keccak256(abi.encodePacked(token0, token1)),
                hex'0fe0976a8394a59cb43ce8ed266ed3ad7b48c0538114ef1bea17c3f7f4138f2c' // init code hash
            ))));
    }

    // fetches and sorts the reserves for a pair
    function getReserves(address factory, address tokenA, address tokenB) internal view returns (uint reserveA, uint reserveB) {
        (address token0,) = sortTokens(tokenA, tokenB);
        (uint reserve0, uint reserve1,) = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getReserves();
        (reserveA, reserveB) = tokenA == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
    }

    function getFeeRateNumerator(address factory, address tokenA, address tokenB) internal view returns (uint32 feeRateNumerator) {
        feeRateNumerator = IUniswapV2Pair(pairFor(factory, tokenA, tokenB)).getFeeRateNumerator();
    }

    // given some amount of an asset and pair reserves, returns an equivalent amount of the other asset
    function quote(uint amountA, uint reserveA, uint reserveB) internal pure returns (uint amountB) {
        require(amountA > 0, 'HopeSwapLibrary: INSUFFICIENT_AMOUNT');
        require(reserveA > 0 && reserveB > 0, 'HopeSwapLibrary: INSUFFICIENT_LIQUIDITY');
        amountB = amountA.mul(reserveB) / reserveA;
    }

    // given an input amount of an asset and pair reserves, returns the maximum output amount of the other asset
    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint32 feeRateNumerator) internal pure returns (uint amountOut) {
        require(amountIn > 0, 'HopeSwapLibrary: INSUFFICIENT_INPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'HopeSwapLibrary: INSUFFICIENT_LIQUIDITY');
        uint amountInWithFee = amountIn.mul(feeRateNumerator);
        uint numerator = amountInWithFee.mul(reserveOut);
        uint denominator = reserveIn.mul(FeeRateDenominator).add(amountInWithFee);
        amountOut = numerator / denominator;
    }

    // given an output amount of an asset and pair reserves, returns a required input amount of the other asset
    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint32 feeRateNumerator) internal pure returns (uint amountIn) {
        require(amountOut > 0, 'HopeSwapLibrary: INSUFFICIENT_OUTPUT_AMOUNT');
        require(reserveIn > 0 && reserveOut > 0, 'HopeSwapLibrary: INSUFFICIENT_LIQUIDITY');
        uint numerator = reserveIn.mul(amountOut).mul(FeeRateDenominator);
        uint denominator = reserveOut.sub(amountOut).mul(feeRateNumerator);
        amountIn = (numerator / denominator).add(1);
    }

    // performs chained getAmountOut calculations on any number of pairs
    function getAmountsOut(address factory, uint amountIn, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'HopeSwapLibrary: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[0] = amountIn;
        for (uint i; i < path.length - 1; i++) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i], path[i + 1]);
            uint32 feeRateNumerator = getFeeRateNumerator(factory, path[i], path[i + 1]);
            amounts[i + 1] = getAmountOut(amounts[i], reserveIn, reserveOut, feeRateNumerator);
        }
    }

    // performs chained getAmountIn calculations on any number of pairs
    function getAmountsIn(address factory, uint amountOut, address[] memory path) internal view returns (uint[] memory amounts) {
        require(path.length >= 2, 'HopeSwapLibrary: INVALID_PATH');
        amounts = new uint[](path.length);
        amounts[amounts.length - 1] = amountOut;
        for (uint i = path.length - 1; i > 0; i--) {
            (uint reserveIn, uint reserveOut) = getReserves(factory, path[i - 1], path[i]);
            uint32 feeRateNumerator = getFeeRateNumerator(factory, path[i-1], path[i]);
            amounts[i - 1] = getAmountIn(amounts[i], reserveIn, reserveOut, feeRateNumerator);
        }
    }
}


// Dependency file: contracts/interfaces/IERC20.sol

// pragma solidity >=0.5.0;

interface IERC20 {
    event Approval(address indexed owner, address indexed spender, uint value);
    event Transfer(address indexed from, address indexed to, uint value);

    function name() external view returns (string memory);
    function symbol() external view returns (string memory);
    function decimals() external view returns (uint8);
    function totalSupply() external view returns (uint);
    function balanceOf(address owner) external view returns (uint);
    function allowance(address owner, address spender) external view returns (uint);

    function approve(address spender, uint value) external returns (bool);
    function transfer(address to, uint value) external returns (bool);
    function transferFrom(address from, address to, uint value) external returns (bool);
}


// Dependency file: contracts/interfaces/IWETH.sol

// pragma solidity >=0.5.0;

interface IWETH {
    function deposit() external payable;
    function transfer(address to, uint value) external returns (bool);
    function withdraw(uint) external;
}


// Root file: contracts/UniswapV2Router02.sol

pragma solidity =0.6.6;

// import '/Users/cuijl/solityProjects/swap-periphery/node_modules/@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol';
// import '/Users/cuijl/solityProjects/swap-periphery/node_modules/@uniswap/lib/contracts/libraries/TransferHelper.sol';

// import 'contracts/interfaces/IUniswapV2Router02.sol';
// import 'contracts/libraries/UniswapV2Library.sol';
// import 'contracts/libraries/SafeMath.sol';
// import 'contracts/interfaces/IERC20.sol';
// import 'contracts/interfaces/IWETH.sol';

contract UniswapV2Router02 is IUniswapV2Router02 {
    using SafeMath for uint;

    address public immutable override factory;
    address public immutable override WETH;

    modifier ensure(uint deadline) {
        require(deadline >= block.timestamp, 'HopeSwapRouter: EXPIRED');
        _;
    }

    constructor(address _factory, address _WETH) public {
        require(_factory!=address(0), "HopeSwapRouter: ZERO_ADDRESS");
        require(_WETH!=address(0), "HopeSwapRouter: ZERO_ADDRESS");
        factory = _factory;
        WETH = _WETH;
    }

    receive() external payable {
        assert(msg.sender == WETH); // only accept ETH via fallback from the WETH contract
    }

    // **** ADD LIQUIDITY ****
    function _addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin
    ) internal virtual returns (uint amountA, uint amountB) {
        // create the pair if it doesn't exist yet
        if (IUniswapV2Factory(factory).getPair(tokenA, tokenB) == address(0)) {
            IUniswapV2Factory(factory).createPair(tokenA, tokenB);
        }
        (uint reserveA, uint reserveB) = UniswapV2Library.getReserves(factory, tokenA, tokenB);
        if (reserveA == 0 && reserveB == 0) {
            (amountA, amountB) = (amountADesired, amountBDesired);
        } else {
            uint amountBOptimal = UniswapV2Library.quote(amountADesired, reserveA, reserveB);
            if (amountBOptimal <= amountBDesired) {
                require(amountBOptimal >= amountBMin, 'HopeSwapRouter: INSUFFICIENT_B_AMOUNT');
                (amountA, amountB) = (amountADesired, amountBOptimal);
            } else {
                uint amountAOptimal = UniswapV2Library.quote(amountBDesired, reserveB, reserveA);
                assert(amountAOptimal <= amountADesired);
                require(amountAOptimal >= amountAMin, 'HopeSwapRouter: INSUFFICIENT_A_AMOUNT');
                (amountA, amountB) = (amountAOptimal, amountBDesired);
            }
        }
    }
    function addLiquidity(
        address tokenA,
        address tokenB,
        uint amountADesired,
        uint amountBDesired,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint amountA, uint amountB, uint liquidity) {
        (amountA, amountB) = _addLiquidity(tokenA, tokenB, amountADesired, amountBDesired, amountAMin, amountBMin);
        address pair = UniswapV2Library.pairFor(factory, tokenA, tokenB);
        TransferHelper.safeTransferFrom(tokenA, msg.sender, pair, amountA);
        TransferHelper.safeTransferFrom(tokenB, msg.sender, pair, amountB);
        liquidity = IUniswapV2Pair(pair).mint(to);
    }
    function addLiquidityETH(
        address token,
        uint amountTokenDesired,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) external virtual override payable ensure(deadline) returns (uint amountToken, uint amountETH, uint liquidity) {
        (amountToken, amountETH) = _addLiquidity(
            token,
            WETH,
            amountTokenDesired,
            msg.value,
            amountTokenMin,
            amountETHMin
        );
        address pair = UniswapV2Library.pairFor(factory, token, WETH);
        TransferHelper.safeTransferFrom(token, msg.sender, pair, amountToken);
        IWETH(WETH).deposit{value: amountETH}();
        assert(IWETH(WETH).transfer(pair, amountETH));
        liquidity = IUniswapV2Pair(pair).mint(to);
        // refund dust eth, if any
        if (msg.value > amountETH) TransferHelper.safeTransferETH(msg.sender, msg.value - amountETH);
    }

    // **** REMOVE LIQUIDITY ****
    function removeLiquidity(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountA, uint amountB) {
        address pair = UniswapV2Library.pairFor(factory, tokenA, tokenB);
        IUniswapV2Pair(pair).transferFrom(msg.sender, pair, liquidity); // send liquidity to pair
        (uint amount0, uint amount1) = IUniswapV2Pair(pair).burn(to);
        (address token0,) = UniswapV2Library.sortTokens(tokenA, tokenB);
        (amountA, amountB) = tokenA == token0 ? (amount0, amount1) : (amount1, amount0);
        require(amountA >= amountAMin, 'HopeSwapRouter: INSUFFICIENT_A_AMOUNT');
        require(amountB >= amountBMin, 'HopeSwapRouter: INSUFFICIENT_B_AMOUNT');
    }
    function removeLiquidityETH(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountToken, uint amountETH) {
        (amountToken, amountETH) = removeLiquidity(
            token,
            WETH,
            liquidity,
            amountTokenMin,
            amountETHMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, amountToken);
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }
    function removeLiquidityWithPermit(
        address tokenA,
        address tokenB,
        uint liquidity,
        uint amountAMin,
        uint amountBMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountA, uint amountB) {
        address pair = UniswapV2Library.pairFor(factory, tokenA, tokenB);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountA, amountB) = removeLiquidity(tokenA, tokenB, liquidity, amountAMin, amountBMin, to, deadline);
    }
    function removeLiquidityETHWithPermit(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountToken, uint amountETH) {
        address pair = UniswapV2Library.pairFor(factory, token, WETH);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        (amountToken, amountETH) = removeLiquidityETH(token, liquidity, amountTokenMin, amountETHMin, to, deadline);
    }

    // **** REMOVE LIQUIDITY (supporting fee-on-transfer tokens) ****
    function removeLiquidityETHSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline
    ) public virtual override ensure(deadline) returns (uint amountETH) {
        (, amountETH) = removeLiquidity(
            token,
            WETH,
            liquidity,
            amountTokenMin,
            amountETHMin,
            address(this),
            deadline
        );
        TransferHelper.safeTransfer(token, to, IERC20(token).balanceOf(address(this)));
        IWETH(WETH).withdraw(amountETH);
        TransferHelper.safeTransferETH(to, amountETH);
    }
    function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens(
        address token,
        uint liquidity,
        uint amountTokenMin,
        uint amountETHMin,
        address to,
        uint deadline,
        bool approveMax, uint8 v, bytes32 r, bytes32 s
    ) external virtual override returns (uint amountETH) {
        address pair = UniswapV2Library.pairFor(factory, token, WETH);
        uint value = approveMax ? uint(-1) : liquidity;
        IUniswapV2Pair(pair).permit(msg.sender, address(this), value, deadline, v, r, s);
        amountETH = removeLiquidityETHSupportingFeeOnTransferTokens(
            token, liquidity, amountTokenMin, amountETHMin, to, deadline
        );
    }

    // **** SWAP ****
    // requires the initial amount to have already been sent to the first pair
    function _swap(uint[] memory amounts, address[] memory path, address _to) internal virtual {
        for (uint i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0,) = UniswapV2Library.sortTokens(input, output);
            uint amountOut = amounts[i + 1];
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOut) : (amountOut, uint(0));
            address to = i < path.length - 2 ? UniswapV2Library.pairFor(factory, output, path[i + 2]) : _to;
            IUniswapV2Pair(UniswapV2Library.pairFor(factory, input, output)).swap(
                amount0Out, amount1Out, to, new bytes(0)
            );
        }
    }
    function swapExactTokensForTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint[] memory amounts) {
        amounts = UniswapV2Library.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, to);
    }
    function swapTokensForExactTokens(
        uint amountOut,
        uint amountInMax,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) returns (uint[] memory amounts) {
        amounts = UniswapV2Library.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'HopeSwapRouter: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, to);
    }
    function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WETH, 'HopeSwapRouter: INVALID_PATH');
        amounts = UniswapV2Library.getAmountsOut(factory, msg.value, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
    }
    function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[path.length - 1] == WETH, 'HopeSwapRouter: INVALID_PATH');
        amounts = UniswapV2Library.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= amountInMax, 'HopeSwapRouter: EXCESSIVE_INPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[path.length - 1] == WETH, 'HopeSwapRouter: INVALID_PATH');
        amounts = UniswapV2Library.getAmountsOut(factory, amountIn, path);
        require(amounts[amounts.length - 1] >= amountOutMin, 'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]
        );
        _swap(amounts, path, address(this));
        IWETH(WETH).withdraw(amounts[amounts.length - 1]);
        TransferHelper.safeTransferETH(to, amounts[amounts.length - 1]);
    }
    function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline)
        external
        virtual
        override
        payable
        ensure(deadline)
        returns (uint[] memory amounts)
    {
        require(path[0] == WETH, 'HopeSwapRouter: INVALID_PATH');
        amounts = UniswapV2Library.getAmountsIn(factory, amountOut, path);
        require(amounts[0] <= msg.value, 'HopeSwapRouter: EXCESSIVE_INPUT_AMOUNT');
        IWETH(WETH).deposit{value: amounts[0]}();
        assert(IWETH(WETH).transfer(UniswapV2Library.pairFor(factory, path[0], path[1]), amounts[0]));
        _swap(amounts, path, to);
        // refund dust eth, if any
        if (msg.value > amounts[0]) TransferHelper.safeTransferETH(msg.sender, msg.value - amounts[0]);
    }

    // **** SWAP (supporting fee-on-transfer tokens) ****
    // requires the initial amount to have already been sent to the first pair
    function _swapSupportingFeeOnTransferTokens(address[] memory path, address _to) internal virtual {
        for (uint i; i < path.length - 1; i++) {
            (address input, address output) = (path[i], path[i + 1]);
            (address token0,) = UniswapV2Library.sortTokens(input, output);
            IUniswapV2Pair pair = IUniswapV2Pair(UniswapV2Library.pairFor(factory, input, output));
            uint amountInput;
            uint amountOutput;
            { // scope to avoid stack too deep errors
            (uint reserve0, uint reserve1,) = pair.getReserves();
            uint32 feeRateNumerator = pair.getFeeRateNumerator();
            (uint reserveInput, uint reserveOutput) = input == token0 ? (reserve0, reserve1) : (reserve1, reserve0);
            amountInput = IERC20(input).balanceOf(address(pair)).sub(reserveInput);
            amountOutput = UniswapV2Library.getAmountOut(amountInput, reserveInput, reserveOutput, feeRateNumerator);
            }
            (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0));
            address to = i < path.length - 2 ? UniswapV2Library.pairFor(factory, output, path[i + 2]) : _to;
            pair.swap(amount0Out, amount1Out, to, new bytes(0));
        }
    }
    function swapExactTokensForTokensSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    ) external virtual override ensure(deadline) {
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amountIn
        );
        uint balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactETHForTokensSupportingFeeOnTransferTokens(
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        payable
        ensure(deadline)
    {
        require(path[0] == WETH, 'HopeSwapRouter: INVALID_PATH');
        uint amountIn = msg.value;
        IWETH(WETH).deposit{value: amountIn}();
        assert(IWETH(WETH).transfer(UniswapV2Library.pairFor(factory, path[0], path[1]), amountIn));
        uint balanceBefore = IERC20(path[path.length - 1]).balanceOf(to);
        _swapSupportingFeeOnTransferTokens(path, to);
        require(
            IERC20(path[path.length - 1]).balanceOf(to).sub(balanceBefore) >= amountOutMin,
            'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT'
        );
    }
    function swapExactTokensForETHSupportingFeeOnTransferTokens(
        uint amountIn,
        uint amountOutMin,
        address[] calldata path,
        address to,
        uint deadline
    )
        external
        virtual
        override
        ensure(deadline)
    {
        require(path[path.length - 1] == WETH, 'HopeSwapRouter: INVALID_PATH');
        TransferHelper.safeTransferFrom(
            path[0], msg.sender, UniswapV2Library.pairFor(factory, path[0], path[1]), amountIn
        );
        _swapSupportingFeeOnTransferTokens(path, address(this));
        uint amountOut = IERC20(WETH).balanceOf(address(this));
        require(amountOut >= amountOutMin, 'HopeSwapRouter: INSUFFICIENT_OUTPUT_AMOUNT');
        IWETH(WETH).withdraw(amountOut);
        TransferHelper.safeTransferETH(to, amountOut);
    }

    // **** LIBRARY FUNCTIONS ****
    function quote(uint amountA, uint reserveA, uint reserveB) public pure virtual override returns (uint amountB) {
        return UniswapV2Library.quote(amountA, reserveA, reserveB);
    }

    function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut, uint32 feeRateNumerator)
        public
        pure
        virtual
        override
        returns (uint amountOut)
    {
        return UniswapV2Library.getAmountOut(amountIn, reserveIn, reserveOut, feeRateNumerator);
    }

    function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut, uint32 feeRateNumerator)
        public
        pure
        virtual
        override
        returns (uint amountIn)
    {
        return UniswapV2Library.getAmountIn(amountOut, reserveIn, reserveOut, feeRateNumerator);
    }

    function getAmountsOut(uint amountIn, address[] memory path)
        public
        view
        virtual
        override
        returns (uint[] memory amounts)
    {
        return UniswapV2Library.getAmountsOut(factory, amountIn, path);
    }

    function getAmountsIn(uint amountOut, address[] memory path)
        public
        view
        virtual
        override
        returns (uint[] memory amounts)
    {
        return UniswapV2Library.getAmountsIn(factory, amountOut, path);
    }
}

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_WETH","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint256","name":"amountADesired","type":"uint256"},{"internalType":"uint256","name":"amountBDesired","type":"uint256"},{"internalType":"uint256","name":"amountAMin","type":"uint256"},{"internalType":"uint256","name":"amountBMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidity","outputs":[{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"amountB","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"amountTokenDesired","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"addLiquidityETH","outputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"},{"internalType":"uint256","name":"liquidity","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"reserveIn","type":"uint256"},{"internalType":"uint256","name":"reserveOut","type":"uint256"},{"internalType":"uint32","name":"feeRateNumerator","type":"uint32"}],"name":"getAmountIn","outputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"reserveIn","type":"uint256"},{"internalType":"uint256","name":"reserveOut","type":"uint256"},{"internalType":"uint32","name":"feeRateNumerator","type":"uint32"}],"name":"getAmountOut","outputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"}],"name":"getAmountsIn","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"}],"name":"getAmountsOut","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"reserveA","type":"uint256"},{"internalType":"uint256","name":"reserveB","type":"uint256"}],"name":"quote","outputs":[{"internalType":"uint256","name":"amountB","type":"uint256"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountAMin","type":"uint256"},{"internalType":"uint256","name":"amountBMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidity","outputs":[{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"amountB","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETH","outputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"removeLiquidityETHSupportingFeeOnTransferTokens","outputs":[{"internalType":"uint256","name":"amountETH","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bool","name":"approveMax","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermit","outputs":[{"internalType":"uint256","name":"amountToken","type":"uint256"},{"internalType":"uint256","name":"amountETH","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountTokenMin","type":"uint256"},{"internalType":"uint256","name":"amountETHMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bool","name":"approveMax","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityETHWithPermitSupportingFeeOnTransferTokens","outputs":[{"internalType":"uint256","name":"amountETH","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenA","type":"address"},{"internalType":"address","name":"tokenB","type":"address"},{"internalType":"uint256","name":"liquidity","type":"uint256"},{"internalType":"uint256","name":"amountAMin","type":"uint256"},{"internalType":"uint256","name":"amountBMin","type":"uint256"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"bool","name":"approveMax","type":"bool"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"removeLiquidityWithPermit","outputs":[{"internalType":"uint256","name":"amountA","type":"uint256"},{"internalType":"uint256","name":"amountB","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapETHForExactTokens","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokens","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactETHForTokensSupportingFeeOnTransferTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETH","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForETHSupportingFeeOnTransferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokens","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountIn","type":"uint256"},{"internalType":"uint256","name":"amountOutMin","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapExactTokensForTokensSupportingFeeOnTransferTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMax","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactETH","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amountOut","type":"uint256"},{"internalType":"uint256","name":"amountInMax","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"swapTokensForExactTokens","outputs":[{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040523480156200001157600080fd5b50604051620059c9380380620059c9833981810160405260408110156200003757600080fd5b5080516020909101516001600160a01b0382166200009c576040805162461bcd60e51b815260206004820152601c60248201527f486f706553776170526f757465723a205a45524f5f4144445245535300000000604482015290519081900360640190fd5b6001600160a01b038116620000f8576040805162461bcd60e51b815260206004820152601c60248201527f486f706553776170526f757465723a205a45524f5f4144445245535300000000604482015290519081900360640190fd5b6001600160601b0319606092831b8116608052911b1660a05260805160601c60a05160601c61578a6200023f600039806101ac5280610e755280610eb05280610fd8528061129b52806116f552806118f05280611e385280611fbc528061208c5280612193528061234652806123db528061268e528061273d5280612812528061291752806129ff5280612a80528061310f5280613445528061349b52806134cf5280613550528061376a528061391a52806139af5250806110ca52806111c8528061136e52806113a7528061155252806117e752806118ce5280611abb5280612279528061241a52806125b65280612abf5280612e02528061309452806130bd52806130ed52806132ca5280613479528061385052806139ee528061436d52806143b0528061485d5280614ad75280615054528061513552806151b5525061578a6000f3fe60806040526004361061018f5760003560e01c80639cd07615116100d6578063c45a01551161007f578063e8e3370011610059578063e8e3370014610c89578063f305d71914610d16578063fb3bdb4114610d69576101d5565b8063c45a015514610b3d578063d06ca61f14610b52578063ded9382a14610c09576101d5565b8063af2979eb116100b0578063af2979eb146109e0578063b6f9de9514610a40578063baa2abde14610ad3576101d5565b80639cd076151461092a578063ad5c46481461096c578063ad615dec146109aa576101d5565b80635106046411610138578063791ac94711610112578063791ac9471461074d5780637ff36ab5146107f25780638803dbee14610885576101d5565b806351060464146105d45780635b0d5984146106285780635c11d795146106a8576101d5565b80632195995c116101695780632195995c146103ff57806338ed17391461048a5780634a25d94a1461052f576101d5565b806302751cec146101da57806318cbafe5146102535780631f00ca7414610348576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016146101d357fe5b005b600080fd5b3480156101e657600080fd5b5061023a600480360360c08110156101fd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610dfc565b6040805192835260208301919091528051918290030190f35b34801561025f57600080fd5b506102f8600480360360a081101561027657600080fd5b81359160208101359181019060608101604082013564010000000081111561029d57600080fd5b8201836020820111156102af57600080fd5b803590602001918460208302840111640100000000831117156102d157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f4f565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561033457818101518382015260200161031c565b505050509050019250505060405180910390f35b34801561035457600080fd5b506102f86004803603604081101561036b57600080fd5b8135919081019060408101602082013564010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611367945050505050565b34801561040b57600080fd5b5061023a600480360361016081101561042357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff610100820135169061012081013590610140013561139d565b34801561049657600080fd5b506102f8600480360360a08110156104ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156104d457600080fd5b8201836020820111156104e657600080fd5b8035906020019184602083028401116401000000008311171561050857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356114db565b34801561053b57600080fd5b506102f8600480360360a081101561055257600080fd5b81359160208101359181019060608101604082013564010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460208302840111640100000000831117156105ad57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561166c565b3480156105e057600080fd5b50610616600480360360808110156105f757600080fd5b508035906020810135906040810135906060013563ffffffff166118af565b60408051918252519081900360200190f35b34801561063457600080fd5b50610616600480360361014081101561064c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356118c6565b3480156106b457600080fd5b506101d3600480360360a08110156106cb57600080fd5b8135916020810135918101906060810160408201356401000000008111156106f257600080fd5b82018360208201111561070457600080fd5b8035906020019184602083028401116401000000008311171561072657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a18565b34801561075957600080fd5b506101d3600480360360a081101561077057600080fd5b81359160208101359181019060608101604082013564010000000081111561079757600080fd5b8201836020820111156107a957600080fd5b803590602001918460208302840111640100000000831117156107cb57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611db1565b6102f86004803603608081101561080857600080fd5b8135919081019060408101602082013564010000000081111561082a57600080fd5b82018360208201111561083c57600080fd5b8035906020019184602083028401116401000000008311171561085e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561211f565b34801561089157600080fd5b506102f8600480360360a08110156108a857600080fd5b8135916020810135918101906060810160408201356401000000008111156108cf57600080fd5b8201836020820111156108e157600080fd5b8035906020019184602083028401116401000000008311171561090357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561253f565b34801561093657600080fd5b506106166004803603608081101561094d57600080fd5b508035906020810135906040810135906060013563ffffffff1661267e565b34801561097857600080fd5b5061098161268c565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156109b657600080fd5b50610616600480360360608110156109cd57600080fd5b50803590602081013590604001356126b0565b3480156109ec57600080fd5b50610616600480360360c0811015610a0357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356126c5565b6101d360048036036080811015610a5657600080fd5b81359190810190604081016020820135640100000000811115610a7857600080fd5b820183602082011115610a8a57600080fd5b80359060200191846020830284011164010000000083111715610aac57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356128a5565b348015610adf57600080fd5b5061023a600480360360e0811015610af657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612d88565b348015610b4957600080fd5b50610981613092565b348015610b5e57600080fd5b506102f860048036036040811015610b7557600080fd5b81359190810190604081016020820135640100000000811115610b9757600080fd5b820183602082011115610ba957600080fd5b80359060200191846020830284011164010000000083111715610bcb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506130b6945050505050565b348015610c1557600080fd5b5061023a6004803603610140811015610c2d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356130e3565b348015610c9557600080fd5b50610cf86004803603610100811015610cad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e0013561323b565b60408051938452602084019290925282820152519081900360600190f35b610cf8600480360360c0811015610d2c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356133ca565b6102f860048036036080811015610d7f57600080fd5b81359190810190604081016020820135640100000000811115610da157600080fd5b820183602082011115610db357600080fd5b80359060200191846020830284011164010000000083111715610dd557600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356136f6565b6000808242811015610e6f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b610e9e897f00000000000000000000000000000000000000000000000000000000000000008a8a8a308a612d88565b9093509150610eae898685613b45565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610f2157600080fd5b505af1158015610f35573d6000803e3d6000fd5b50505050610f438583613d0c565b50965096945050505050565b60608142811015610fc157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061102657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6111237f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b9150868260018451038151811061113657fe5b60200260200101511015611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b61125a868660008181106111a557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336112407f00000000000000000000000000000000000000000000000000000000000000008a8a60008181106111f457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061121e57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613fe9565b8560008151811061124d57fe5b60200260200101516140d4565b611299828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152503092506142a4915050565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106112e557fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561132357600080fd5b505af1158015611337573d6000803e3d6000fd5b5050505061135c848360018551038151811061134f57fe5b6020026020010151613d0c565b509695505050505050565b60606113947f0000000000000000000000000000000000000000000000000000000000000000848461452b565b90505b92915050565b60008060006113cd7f00000000000000000000000000000000000000000000000000000000000000008f8f613fe9565b90506000876113dc578c6113fe565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561149a57600080fd5b505af11580156114ae573d6000803e3d6000fd5b505050506114c18f8f8f8f8f8f8f612d88565b809450819550505050509b509b9950505050505050505050565b6060814281101561154d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6115ab7f000000000000000000000000000000000000000000000000000000000000000089888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b915086826001845103815181106115be57fe5b6020026020010151101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b61162d868660008181106111a557fe5b61135c828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b606081428110156116de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061174357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6118407f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b9150868260008151811061185057fe5b60200260200101511115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b60006118bd858585856146e6565b95945050505050565b6000806119147f00000000000000000000000000000000000000000000000000000000000000008d7f0000000000000000000000000000000000000000000000000000000000000000613fe9565b9050600086611923578b611945565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50505050611a078d8d8d8d8d8d6126c5565b9d9c50505050505050505050505050565b8042811015611a8857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b611b1785856000818110611a9857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611b117f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061121e57fe5b8a6140d4565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b4757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be057600080fd5b505afa158015611bf4573d6000803e3d6000fd5b505050506040513d6020811015611c0a57600080fd5b50516040805160208881028281018201909352888252929350611c4c929091899189918291850190849080828437600092019190915250889250614806915050565b86611d508288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611c7f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d6020811015611d4257600080fd5b50519063ffffffff614c3216565b1015611da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b5050505050505050565b8042811015611e2157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f00000000000000000000000000000000000000000000000000000000000000001685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f2557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b611f3585856000818110611a9857fe5b611f73858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614806915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016916370a0823191602480820192602092909190829003018186803b15801561200357600080fd5b505afa158015612017573d6000803e3d6000fd5b505050506040513d602081101561202d57600080fd5b505190508681101561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156120fd57600080fd5b505af1158015612111573d6000803e3d6000fd5b50505050611da78482613d0c565b6060814281101561219157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16868660008181106121d557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6122d27f000000000000000000000000000000000000000000000000000000000000000034888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b915086826001845103815181106122e557fe5b60200260200101511015612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061238d57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156123c057600080fd5b505af11580156123d4573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6124467f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae757fe5b8460008151811061245357fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124c457600080fd5b505af11580156124d8573d6000803e3d6000fd5b505050506040513d60208110156124ee57600080fd5b50516124f657fe5b612535828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b5095945050505050565b606081428110156125b157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61260f7f00000000000000000000000000000000000000000000000000000000000000008988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b9150868260008151811061261f57fe5b6020026020010151111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b60006118bd85858585614ca4565b7f000000000000000000000000000000000000000000000000000000000000000081565b60006126bd848484614dca565b949350505050565b6000814281101561273757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b612766887f00000000000000000000000000000000000000000000000000000000000000008989893089612d88565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191945061281092508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156127df57600080fd5b505afa1580156127f3573d6000803e3d6000fd5b505050506040513d602081101561280957600080fd5b5051613b45565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561288357600080fd5b505af1158015612897573d6000803e3d6000fd5b5050505061135c8483613d0c565b804281101561291557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168585600081811061295957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b60003490507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612a6557600080fd5b505af1158015612a79573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612aeb7f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae757fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612b5557600080fd5b505af1158015612b69573d6000803e3d6000fd5b505050506040513d6020811015612b7f57600080fd5b5051612b8757fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612bb757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c5057600080fd5b505afa158015612c64573d6000803e3d6000fd5b505050506040513d6020811015612c7a57600080fd5b50516040805160208981028281018201909352898252929350612cbc9290918a918a918291850190849080828437600092019190915250899250614806915050565b87611d508289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612cef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b6000808242811015612dfb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6000612e287f00000000000000000000000000000000000000000000000000000000000000008c8c613fe9565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612ea957600080fd5b505af1158015612ebd573d6000803e3d6000fd5b505050506040513d6020811015612ed357600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612f4657600080fd5b505af1158015612f5a573d6000803e3d6000fd5b505050506040513d6040811015612f7057600080fd5b50805160209091015190925090506000612f8a8e8e614eaa565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612fc7578183612fca565b82825b90975095508a871015613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061570a6025913960400191505060405180910390fd5b89861015613081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156436025913960400191505060405180910390fd5b505050505097509795505050505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60606113947f00000000000000000000000000000000000000000000000000000000000000008484613e49565b60008060006131337f00000000000000000000000000000000000000000000000000000000000000008e7f0000000000000000000000000000000000000000000000000000000000000000613fe9565b9050600087613142578c613164565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561320057600080fd5b505af1158015613214573d6000803e3d6000fd5b505050506132268e8e8e8e8e8e610dfc565b909f909e509c50505050505050505050505050565b600080600083428110156132b057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6132be8c8c8c8c8c8c614ffd565b909450925060006132f07f00000000000000000000000000000000000000000000000000000000000000008e8e613fe9565b90506132fe8d3383886140d4565b61330a8c3383876140d4565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b505050506040513d60208110156133b357600080fd5b5051949d939c50939a509198505050505050505050565b6000806000834281101561343f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61346d8a7f00000000000000000000000000000000000000000000000000000000000000008b348c8c614ffd565b909450925060006134bf7f00000000000000000000000000000000000000000000000000000000000000008c7f0000000000000000000000000000000000000000000000000000000000000000613fe9565b90506134cd8b3383886140d4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561353557600080fd5b505af1158015613549573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135f557600080fd5b505af1158015613609573d6000803e3d6000fd5b505050506040513d602081101561361f57600080fd5b505161362757fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156136a657600080fd5b505af11580156136ba573d6000803e3d6000fd5b505050506040513d60208110156136d057600080fd5b50519250348410156136e8576136e833853403613d0c565b505096509650969350505050565b6060814281101561376857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff16868660008181106137ac57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461384b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6138a97f00000000000000000000000000000000000000000000000000000000000000008888888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b915034826000815181106138b957fe5b60200260200101511115613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061396157fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561399457600080fd5b505af11580156139a8573d6000803e3d6000fd5b50505050507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613a1a7f000000000000000000000000000000000000000000000000000000000000000089896000818110611ae757fe5b84600081518110613a2757fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a9857600080fd5b505af1158015613aac573d6000803e3d6000fd5b505050506040513d6020811015613ac257600080fd5b5051613aca57fe5b613b09828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b81600081518110613b1657fe5b6020026020010151341115612535576125353383600081518110613b3657fe5b60200260200101513403613d0c565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613c1b57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613bde565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c7d576040519150601f19603f3d011682016040523d82523d6000602084013e613c82565b606091505b5091509150818015613cb0575080511580613cb05750808060200190516020811015613cad57600080fd5b50515b613d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061568f602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310613d8357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613d46565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613de5576040519150601f19603f3d011682016040523d82523d6000602084013e613dea565b606091505b5050905080613e44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806155eb6034913960400191505060405180910390fd5b505050565b6060600282511015613ebc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a20494e56414c49445f50415448000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015613ed457600080fd5b50604051908082528060200260200182016040528015613efe578160200160208202803683370190505b5090508281600081518110613f0f57fe5b60200260200101818152505060005b6001835103811015613fe157600080613f6187868581518110613f3d57fe5b6020026020010151878660010181518110613f5457fe5b60200260200101516152fe565b915091506000613f9b88878681518110613f7757fe5b6020026020010151888760010181518110613f8e57fe5b60200260200101516153e6565b9050613fbc858581518110613fac57fe5b60200260200101518484846146e6565b858560010181518110613fcb57fe5b6020908102919091010152505050600101613f1e565b509392505050565b6000806000613ff88585614eaa565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f0fe0976a8394a59cb43ce8ed266ed3ad7b48c0538114ef1bea17c3f7f4138f2c609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b602083106141b257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614175565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614214576040519150601f19603f3d011682016040523d82523d6000602084013e614219565b606091505b5091509150818015614247575080511580614247575080806020019051602081101561424457600080fd5b50515b61429c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806155ba6031913960400191505060405180910390fd5b505050505050565b60005b6001835103811015614525576000808483815181106142c257fe5b60200260200101518584600101815181106142d957fe5b60200260200101519150915060006142f18383614eaa565b509050600087856001018151811061430557fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461434d57826000614351565b6000835b91509150600060028a5103881061436857886143a9565b6143a97f0000000000000000000000000000000000000000000000000000000000000000878c8b6002018151811061439c57fe5b6020026020010151613fe9565b90506143d67f00000000000000000000000000000000000000000000000000000000000000008888613fe9565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f191660200182016040528015614420576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156144ab578181015183820152602001614493565b50505050905090810190601f1680156144d85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156144fa57600080fd5b505af115801561450e573d6000803e3d6000fd5b5050600190990198506142a7975050505050505050565b50505050565b606060028251101561459e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a20494e56414c49445f50415448000000604482015290519081900360640190fd5b815167ffffffffffffffff811180156145b657600080fd5b506040519080825280602002602001820160405280156145e0578160200160208202803683370190505b50905082816001835103815181106145f457fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b8015613fe1576000806146548786600186038151811061464057fe5b6020026020010151878681518110613f5457fe5b9150915060006146818887600187038151811061466d57fe5b6020026020010151888781518110613f8e57fe5b90506146a285858151811061469257fe5b6020026020010151848484614ca4565b8560018603815181106146b157fe5b60209081029190910101525050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614624565b6000808511614740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806156bc602a913960400191505060405180910390fd5b6000841180156147505750600083115b6147a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b60006147ba8663ffffffff8086169061546c16565b905060006147ce828663ffffffff61546c16565b905060006147ee836147e28961271061546c565b9063ffffffff6154f216565b90508082816147f957fe5b0498975050505050505050565b60005b6001835103811015613e445760008084838151811061482457fe5b602002602001015185846001018151811061483b57fe5b60200260200101519150915060006148538383614eaa565b50905060006148837f00000000000000000000000000000000000000000000000000000000000000008585613fe9565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156148d157600080fd5b505afa1580156148e5573d6000803e3d6000fd5b505050506040513d60608110156148fb57600080fd5b508051602091820151604080517f3572a47d00000000000000000000000000000000000000000000000000000000815290516dffffffffffffffffffffffffffff938416965092909116935060009273ffffffffffffffffffffffffffffffffffffffff891692633572a47d926004808201939291829003018186803b15801561498457600080fd5b505afa158015614998573d6000803e3d6000fd5b505050506040513d60208110156149ae57600080fd5b5051905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a16146149dc5783856149df565b84845b91509150614a64828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b9650614a72878383866146e6565b955050505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614614ab757826000614abb565b6000835b91509150600060028c51038a10614ad2578a614b06565b614b067f0000000000000000000000000000000000000000000000000000000000000000898e8d6002018151811061439c57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015614bb6578181015183820152602001614b9e565b50505050905090810190601f168015614be35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614c0557600080fd5b505af1158015614c19573d6000803e3d6000fd5b50506001909b019a506148099950505050505050505050565b8082038281111561139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808511614cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061558f602b913960400191505060405180910390fd5b600084118015614d0e5750600083115b614d63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b6000614d81612710614d75878961546c565b9063ffffffff61546c16565b90506000614da28463ffffffff16614d758988614c3290919063ffffffff16565b9050614dbf6001828481614db257fe5b049063ffffffff6154f216565b979650505050505050565b6000808411614e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156e66024913960400191505060405180910390fd5b600083118015614e345750600082115b614e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b82614e9a858463ffffffff61546c16565b81614ea157fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061561f6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610614f6c578284614f6f565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff8216614ff657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a205a45524f5f41444452455353000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000000000000000000000000000000000000000000009092169163e6a4390591604480820192602092909190829003018186803b15801561509d57600080fd5b505afa1580156150b1573d6000803e3d6000fd5b505050506040513d60208110156150c757600080fd5b505173ffffffffffffffffffffffffffffffffffffffff1614156151ad57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000000000000000000000000000000000000000000009092169163c9c65396916044808201926020929091908290030181600087803b15801561518057600080fd5b505af1158015615194573d6000803e3d6000fd5b505050506040513d60208110156151aa57600080fd5b50505b6000806151db7f00000000000000000000000000000000000000000000000000000000000000008b8b6152fe565b915091508160001480156151ed575080155b156151fd578793508692506152f1565b600061520a898484614dca565b9050878111615277578581101561526c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156436025913960400191505060405180910390fd5b8894509250826152ef565b6000615284898486614dca565b90508981111561529057fe5b878110156152e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061570a6025913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b600080600061530d8585614eaa565b50905060008061531e888888613fe9565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561536357600080fd5b505afa158015615377573d6000803e3d6000fd5b505050506040513d606081101561538d57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146153d45780826153d7565b81815b90999098509650505050505050565b60006153f3848484613fe9565b73ffffffffffffffffffffffffffffffffffffffff16633572a47d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561543857600080fd5b505afa15801561544c573d6000803e3d6000fd5b505050506040513d602081101561546257600080fd5b5051949350505050565b60008115806154875750508082028282828161548457fe5b04145b61139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe486f706553776170526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c6564486f7065537761704c6962726172793a204944454e544943414c5f414444524553534553486f706553776170526f757465723a20494e53554646494349454e545f425f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f4c49515549444954595472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564486f7065537761704c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f414d4f554e54486f706553776170526f757465723a20494e53554646494349454e545f415f414d4f554e54486f706553776170526f757465723a204558434553534956455f494e5055545f414d4f554e54a2646970667358221220f2575f71cd2cb62d66548139de4b0d8065e72f908a5026cb14aea3b628a0f9e864736f6c6343000606003300000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

Deployed Bytecode

0x60806040526004361061018f5760003560e01c80639cd07615116100d6578063c45a01551161007f578063e8e3370011610059578063e8e3370014610c89578063f305d71914610d16578063fb3bdb4114610d69576101d5565b8063c45a015514610b3d578063d06ca61f14610b52578063ded9382a14610c09576101d5565b8063af2979eb116100b0578063af2979eb146109e0578063b6f9de9514610a40578063baa2abde14610ad3576101d5565b80639cd076151461092a578063ad5c46481461096c578063ad615dec146109aa576101d5565b80635106046411610138578063791ac94711610112578063791ac9471461074d5780637ff36ab5146107f25780638803dbee14610885576101d5565b806351060464146105d45780635b0d5984146106285780635c11d795146106a8576101d5565b80632195995c116101695780632195995c146103ff57806338ed17391461048a5780634a25d94a1461052f576101d5565b806302751cec146101da57806318cbafe5146102535780631f00ca7414610348576101d5565b366101d5573373ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216146101d357fe5b005b600080fd5b3480156101e657600080fd5b5061023a600480360360c08110156101fd57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a00135610dfc565b6040805192835260208301919091528051918290030190f35b34801561025f57600080fd5b506102f8600480360360a081101561027657600080fd5b81359160208101359181019060608101604082013564010000000081111561029d57600080fd5b8201836020820111156102af57600080fd5b803590602001918460208302840111640100000000831117156102d157600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135610f4f565b60408051602080825283518183015283519192839290830191858101910280838360005b8381101561033457818101518382015260200161031c565b505050509050019250505060405180910390f35b34801561035457600080fd5b506102f86004803603604081101561036b57600080fd5b8135919081019060408101602082013564010000000081111561038d57600080fd5b82018360208201111561039f57600080fd5b803590602001918460208302840111640100000000831117156103c157600080fd5b919080806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250929550611367945050505050565b34801561040b57600080fd5b5061023a600480360361016081101561042357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c08101359060e081013515159060ff610100820135169061012081013590610140013561139d565b34801561049657600080fd5b506102f8600480360360a08110156104ad57600080fd5b8135916020810135918101906060810160408201356401000000008111156104d457600080fd5b8201836020820111156104e657600080fd5b8035906020019184602083028401116401000000008311171561050857600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356114db565b34801561053b57600080fd5b506102f8600480360360a081101561055257600080fd5b81359160208101359181019060608101604082013564010000000081111561057957600080fd5b82018360208201111561058b57600080fd5b803590602001918460208302840111640100000000831117156105ad57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561166c565b3480156105e057600080fd5b50610616600480360360808110156105f757600080fd5b508035906020810135906040810135906060013563ffffffff166118af565b60408051918252519081900360200190f35b34801561063457600080fd5b50610616600480360361014081101561064c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356118c6565b3480156106b457600080fd5b506101d3600480360360a08110156106cb57600080fd5b8135916020810135918101906060810160408201356401000000008111156106f257600080fd5b82018360208201111561070457600080fd5b8035906020019184602083028401116401000000008311171561072657600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611a18565b34801561075957600080fd5b506101d3600480360360a081101561077057600080fd5b81359160208101359181019060608101604082013564010000000081111561079757600080fd5b8201836020820111156107a957600080fd5b803590602001918460208302840111640100000000831117156107cb57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff8135169060200135611db1565b6102f86004803603608081101561080857600080fd5b8135919081019060408101602082013564010000000081111561082a57600080fd5b82018360208201111561083c57600080fd5b8035906020019184602083028401116401000000008311171561085e57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561211f565b34801561089157600080fd5b506102f8600480360360a08110156108a857600080fd5b8135916020810135918101906060810160408201356401000000008111156108cf57600080fd5b8201836020820111156108e157600080fd5b8035906020019184602083028401116401000000008311171561090357600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff813516906020013561253f565b34801561093657600080fd5b506106166004803603608081101561094d57600080fd5b508035906020810135906040810135906060013563ffffffff1661267e565b34801561097857600080fd5b5061098161268c565b6040805173ffffffffffffffffffffffffffffffffffffffff9092168252519081900360200190f35b3480156109b657600080fd5b50610616600480360360608110156109cd57600080fd5b50803590602081013590604001356126b0565b3480156109ec57600080fd5b50610616600480360360c0811015610a0357600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356126c5565b6101d360048036036080811015610a5657600080fd5b81359190810190604081016020820135640100000000811115610a7857600080fd5b820183602082011115610a8a57600080fd5b80359060200191846020830284011164010000000083111715610aac57600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356128a5565b348015610adf57600080fd5b5061023a600480360360e0811015610af657600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359091169060c00135612d88565b348015610b4957600080fd5b50610981613092565b348015610b5e57600080fd5b506102f860048036036040811015610b7557600080fd5b81359190810190604081016020820135640100000000811115610b9757600080fd5b820183602082011115610ba957600080fd5b80359060200191846020830284011164010000000083111715610bcb57600080fd5b9190808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152509295506130b6945050505050565b348015610c1557600080fd5b5061023a6004803603610140811015610c2d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a08101359060c081013515159060ff60e082013516906101008101359061012001356130e3565b348015610c9557600080fd5b50610cf86004803603610100811015610cad57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135811691602081013582169160408201359160608101359160808201359160a08101359160c0820135169060e0013561323b565b60408051938452602084019290925282820152519081900360600190f35b610cf8600480360360c0811015610d2c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020810135916040820135916060810135916080820135169060a001356133ca565b6102f860048036036080811015610d7f57600080fd5b81359190810190604081016020820135640100000000811115610da157600080fd5b820183602082011115610db357600080fd5b80359060200191846020830284011164010000000083111715610dd557600080fd5b919350915073ffffffffffffffffffffffffffffffffffffffff81351690602001356136f6565b6000808242811015610e6f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b610e9e897f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28a8a8a308a612d88565b9093509150610eae898685613b45565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b158015610f2157600080fd5b505af1158015610f35573d6000803e3d6000fd5b50505050610f438583613d0c565b50965096945050505050565b60608142811015610fc157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061102657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6111237f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b9150868260018451038151811061113657fe5b60200260200101511015611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b61125a868660008181106111a557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16336112407f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8a8a60008181106111f457fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168b8b600181811061121e57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff16613fe9565b8560008151811061124d57fe5b60200260200101516140d4565b611299828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152503092506142a4915050565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836001855103815181106112e557fe5b60200260200101516040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561132357600080fd5b505af1158015611337573d6000803e3d6000fd5b5050505061135c848360018551038151811061134f57fe5b6020026020010151613d0c565b509695505050505050565b60606113947f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e848461452b565b90505b92915050565b60008060006113cd7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8f8f613fe9565b90506000876113dc578c6113fe565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561149a57600080fd5b505af11580156114ae573d6000803e3d6000fd5b505050506114c18f8f8f8f8f8f8f612d88565b809450819550505050509b509b9950505050505050505050565b6060814281101561154d57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6115ab7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b915086826001845103815181106115be57fe5b6020026020010151101561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b61162d868660008181106111a557fe5b61135c828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b606081428110156116de57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21686867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff810181811061174357fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146117e257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6118407f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b9150868260008151811061185057fe5b60200260200101511115611195576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b60006118bd858585856146e6565b95945050505050565b6000806119147f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8d7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2613fe9565b9050600086611923578b611945565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018b905260ff8916608482015260a4810188905260c48101879052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b1580156119e157600080fd5b505af11580156119f5573d6000803e3d6000fd5b50505050611a078d8d8d8d8d8d6126c5565b9d9c50505050505050505050505050565b8042811015611a8857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b611b1785856000818110611a9857fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1633611b117f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89896000818110611ae757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff168a8a600181811061121e57fe5b8a6140d4565b600085857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611b4757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231856040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611be057600080fd5b505afa158015611bf4573d6000803e3d6000fd5b505050506040513d6020811015611c0a57600080fd5b50516040805160208881028281018201909352888252929350611c4c929091899189918291850190849080828437600092019190915250889250614806915050565b86611d508288887fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611c7f57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b505afa158015611d2c573d6000803e3d6000fd5b505050506040513d6020811015611d4257600080fd5b50519063ffffffff614c3216565b1015611da7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b5050505050505050565b8042811015611e2157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21685857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110611e8657fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611f2557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b611f3585856000818110611a9857fe5b611f73858580806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250614806915050565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905160009173ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc216916370a0823191602480820192602092909190829003018186803b15801561200357600080fd5b505afa158015612017573d6000803e3d6000fd5b505050506040513d602081101561202d57600080fd5b505190508681101561208a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d826040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b1580156120fd57600080fd5b505af1158015612111573d6000803e3d6000fd5b50505050611da78482613d0c565b6060814281101561219157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16868660008181106121d557fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461227457604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6122d27f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e34888880806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250613e4992505050565b915086826001845103815181106122e557fe5b60200260200101511015612344576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a815260200180615565602a913960400191505060405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061238d57fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b1580156123c057600080fd5b505af11580156123d4573d6000803e3d6000fd5b50505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb6124467f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89896000818110611ae757fe5b8460008151811061245357fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156124c457600080fd5b505af11580156124d8573d6000803e3d6000fd5b505050506040513d60208110156124ee57600080fd5b50516124f657fe5b612535828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b5095945050505050565b606081428110156125b157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61260f7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8988888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b9150868260008151811061261f57fe5b6020026020010151111561161d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b60006118bd85858585614ca4565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b60006126bd848484614dca565b949350505050565b6000814281101561273757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b612766887f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28989893089612d88565b604080517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152905191945061281092508a91879173ffffffffffffffffffffffffffffffffffffffff8416916370a0823191602480820192602092909190829003018186803b1580156127df57600080fd5b505afa1580156127f3573d6000803e3d6000fd5b505050506040513d602081101561280957600080fd5b5051613b45565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d836040518263ffffffff1660e01b815260040180828152602001915050600060405180830381600087803b15801561288357600080fd5b505af1158015612897573d6000803e3d6000fd5b5050505061135c8483613d0c565b804281101561291557604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff168585600081811061295957fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146129f857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b60003490507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0826040518263ffffffff1660e01b81526004016000604051808303818588803b158015612a6557600080fd5b505af1158015612a79573d6000803e3d6000fd5b50505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb612aeb7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89896000818110611ae757fe5b836040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015612b5557600080fd5b505af1158015612b69573d6000803e3d6000fd5b505050506040513d6020811015612b7f57600080fd5b5051612b8757fe5b600086867fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612bb757fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231866040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015612c5057600080fd5b505afa158015612c64573d6000803e3d6000fd5b505050506040513d6020811015612c7a57600080fd5b50516040805160208981028281018201909352898252929350612cbc9290918a918a918291850190849080828437600092019190915250899250614806915050565b87611d508289897fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8101818110612cef57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231896040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b6000808242811015612dfb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6000612e287f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8c8c613fe9565b604080517f23b872dd00000000000000000000000000000000000000000000000000000000815233600482015273ffffffffffffffffffffffffffffffffffffffff831660248201819052604482018d9052915192935090916323b872dd916064808201926020929091908290030181600087803b158015612ea957600080fd5b505af1158015612ebd573d6000803e3d6000fd5b505050506040513d6020811015612ed357600080fd5b5050604080517f89afcb4400000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015282516000938493928616926389afcb44926024808301939282900301818787803b158015612f4657600080fd5b505af1158015612f5a573d6000803e3d6000fd5b505050506040513d6040811015612f7057600080fd5b50805160209091015190925090506000612f8a8e8e614eaa565b5090508073ffffffffffffffffffffffffffffffffffffffff168e73ffffffffffffffffffffffffffffffffffffffff1614612fc7578183612fca565b82825b90975095508a871015613028576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061570a6025913960400191505060405180910390fd5b89861015613081576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156436025913960400191505060405180910390fd5b505050505097509795505050505050565b7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e81565b60606113947f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8484613e49565b60008060006131337f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8e7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2613fe9565b9050600087613142578c613164565b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff5b604080517fd505accf00000000000000000000000000000000000000000000000000000000815233600482015230602482015260448101839052606481018c905260ff8a16608482015260a4810189905260c48101889052905191925073ffffffffffffffffffffffffffffffffffffffff84169163d505accf9160e48082019260009290919082900301818387803b15801561320057600080fd5b505af1158015613214573d6000803e3d6000fd5b505050506132268e8e8e8e8e8e610dfc565b909f909e509c50505050505050505050505050565b600080600083428110156132b057604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b6132be8c8c8c8c8c8c614ffd565b909450925060006132f07f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8e8e613fe9565b90506132fe8d3383886140d4565b61330a8c3383876140d4565b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b15801561338957600080fd5b505af115801561339d573d6000803e3d6000fd5b505050506040513d60208110156133b357600080fd5b5051949d939c50939a509198505050505050505050565b6000806000834281101561343f57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b61346d8a7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc28b348c8c614ffd565b909450925060006134bf7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8c7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2613fe9565b90506134cd8b3383886140d4565b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db0856040518263ffffffff1660e01b81526004016000604051808303818588803b15801561353557600080fd5b505af1158015613549573d6000803e3d6000fd5b50505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82866040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b1580156135f557600080fd5b505af1158015613609573d6000803e3d6000fd5b505050506040513d602081101561361f57600080fd5b505161362757fe5b8073ffffffffffffffffffffffffffffffffffffffff16636a627842886040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001915050602060405180830381600087803b1580156136a657600080fd5b505af11580156136ba573d6000803e3d6000fd5b505050506040513d60208110156136d057600080fd5b50519250348410156136e8576136e833853403613d0c565b505096509650969350505050565b6060814281101561376857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601760248201527f486f706553776170526f757465723a2045585049524544000000000000000000604482015290519081900360640190fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff16868660008181106137ac57fe5b9050602002013573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461384b57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601c60248201527f486f706553776170526f757465723a20494e56414c49445f5041544800000000604482015290519081900360640190fd5b6138a97f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8888888080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525061452b92505050565b915034826000815181106138b957fe5b60200260200101511115613918576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602681526020018061572f6026913960400191505060405180910390fd5b7f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663d0e30db08360008151811061396157fe5b60200260200101516040518263ffffffff1660e01b81526004016000604051808303818588803b15801561399457600080fd5b505af11580156139a8573d6000803e3d6000fd5b50505050507f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb613a1a7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e89896000818110611ae757fe5b84600081518110613a2757fe5b60200260200101516040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b158015613a9857600080fd5b505af1158015613aac573d6000803e3d6000fd5b505050506040513d6020811015613ac257600080fd5b5051613aca57fe5b613b09828787808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508992506142a4915050565b81600081518110613b1657fe5b6020026020010151341115612535576125353383600081518110613b3657fe5b60200260200101513403613d0c565b6040805173ffffffffffffffffffffffffffffffffffffffff8481166024830152604480830185905283518084039091018152606490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167fa9059cbb00000000000000000000000000000000000000000000000000000000178152925182516000946060949389169392918291908083835b60208310613c1b57805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613bde565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114613c7d576040519150601f19603f3d011682016040523d82523d6000602084013e613c82565b606091505b5091509150818015613cb0575080511580613cb05750808060200190516020811015613cad57600080fd5b50515b613d05576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d81526020018061568f602d913960400191505060405180910390fd5b5050505050565b6040805160008082526020820190925273ffffffffffffffffffffffffffffffffffffffff84169083906040518082805190602001908083835b60208310613d8357805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101613d46565b6001836020036101000a03801982511681845116808217855250505050505090500191505060006040518083038185875af1925050503d8060008114613de5576040519150601f19603f3d011682016040523d82523d6000602084013e613dea565b606091505b5050905080613e44576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260348152602001806155eb6034913960400191505060405180910390fd5b505050565b6060600282511015613ebc57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a20494e56414c49445f50415448000000604482015290519081900360640190fd5b815167ffffffffffffffff81118015613ed457600080fd5b50604051908082528060200260200182016040528015613efe578160200160208202803683370190505b5090508281600081518110613f0f57fe5b60200260200101818152505060005b6001835103811015613fe157600080613f6187868581518110613f3d57fe5b6020026020010151878660010181518110613f5457fe5b60200260200101516152fe565b915091506000613f9b88878681518110613f7757fe5b6020026020010151888760010181518110613f8e57fe5b60200260200101516153e6565b9050613fbc858581518110613fac57fe5b60200260200101518484846146e6565b858560010181518110613fcb57fe5b6020908102919091010152505050600101613f1e565b509392505050565b6000806000613ff88585614eaa565b604080517fffffffffffffffffffffffffffffffffffffffff000000000000000000000000606094851b811660208084019190915293851b81166034830152825160288184030181526048830184528051908501207fff0000000000000000000000000000000000000000000000000000000000000060688401529a90941b9093166069840152607d8301989098527f0fe0976a8394a59cb43ce8ed266ed3ad7b48c0538114ef1bea17c3f7f4138f2c609d808401919091528851808403909101815260bd909201909752805196019590952095945050505050565b6040805173ffffffffffffffffffffffffffffffffffffffff85811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff167f23b872dd0000000000000000000000000000000000000000000000000000000017815292518251600094606094938a169392918291908083835b602083106141b257805182527fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe09092019160209182019101614175565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d8060008114614214576040519150601f19603f3d011682016040523d82523d6000602084013e614219565b606091505b5091509150818015614247575080511580614247575080806020019051602081101561424457600080fd5b50515b61429c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260318152602001806155ba6031913960400191505060405180910390fd5b505050505050565b60005b6001835103811015614525576000808483815181106142c257fe5b60200260200101518584600101815181106142d957fe5b60200260200101519150915060006142f18383614eaa565b509050600087856001018151811061430557fe5b602002602001015190506000808373ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff161461434d57826000614351565b6000835b91509150600060028a5103881061436857886143a9565b6143a97f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e878c8b6002018151811061439c57fe5b6020026020010151613fe9565b90506143d67f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8888613fe9565b73ffffffffffffffffffffffffffffffffffffffff1663022c0d9f84848460006040519080825280601f01601f191660200182016040528015614420576020820181803683370190505b506040518563ffffffff1660e01b8152600401808581526020018481526020018373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200180602001828103825283818151815260200191508051906020019080838360005b838110156144ab578181015183820152602001614493565b50505050905090810190601f1680156144d85780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b1580156144fa57600080fd5b505af115801561450e573d6000803e3d6000fd5b5050600190990198506142a7975050505050505050565b50505050565b606060028251101561459e57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a20494e56414c49445f50415448000000604482015290519081900360640190fd5b815167ffffffffffffffff811180156145b657600080fd5b506040519080825280602002602001820160405280156145e0578160200160208202803683370190505b50905082816001835103815181106145f457fe5b602090810291909101015281517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff015b8015613fe1576000806146548786600186038151811061464057fe5b6020026020010151878681518110613f5457fe5b9150915060006146818887600187038151811061466d57fe5b6020026020010151888781518110613f8e57fe5b90506146a285858151811061469257fe5b6020026020010151848484614ca4565b8560018603815181106146b157fe5b60209081029190910101525050507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff01614624565b6000808511614740576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602a8152602001806156bc602a913960400191505060405180910390fd5b6000841180156147505750600083115b6147a5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b60006147ba8663ffffffff8086169061546c16565b905060006147ce828663ffffffff61546c16565b905060006147ee836147e28961271061546c565b9063ffffffff6154f216565b90508082816147f957fe5b0498975050505050505050565b60005b6001835103811015613e445760008084838151811061482457fe5b602002602001015185846001018151811061483b57fe5b60200260200101519150915060006148538383614eaa565b50905060006148837f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8585613fe9565b90506000806000808473ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b1580156148d157600080fd5b505afa1580156148e5573d6000803e3d6000fd5b505050506040513d60608110156148fb57600080fd5b508051602091820151604080517f3572a47d00000000000000000000000000000000000000000000000000000000815290516dffffffffffffffffffffffffffff938416965092909116935060009273ffffffffffffffffffffffffffffffffffffffff891692633572a47d926004808201939291829003018186803b15801561498457600080fd5b505afa158015614998573d6000803e3d6000fd5b505050506040513d60208110156149ae57600080fd5b5051905060008073ffffffffffffffffffffffffffffffffffffffff8b8116908a16146149dc5783856149df565b84845b91509150614a64828c73ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200191505060206040518083038186803b158015611d1857600080fd5b9650614a72878383866146e6565b955050505050506000808573ffffffffffffffffffffffffffffffffffffffff168873ffffffffffffffffffffffffffffffffffffffff1614614ab757826000614abb565b6000835b91509150600060028c51038a10614ad2578a614b06565b614b067f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e898e8d6002018151811061439c57fe5b60408051600080825260208201928390527f022c0d9f000000000000000000000000000000000000000000000000000000008352602482018781526044830187905273ffffffffffffffffffffffffffffffffffffffff8086166064850152608060848501908152845160a48601819052969750908c169563022c0d9f958a958a958a9591949193919260c486019290918190849084905b83811015614bb6578181015183820152602001614b9e565b50505050905090810190601f168015614be35780820380516001836020036101000a031916815260200191505b5095505050505050600060405180830381600087803b158015614c0557600080fd5b505af1158015614c19573d6000803e3d6000fd5b50506001909b019a506148099950505050505050505050565b8082038281111561139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f64732d6d6174682d7375622d756e646572666c6f770000000000000000000000604482015290519081900360640190fd5b6000808511614cfe576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602b81526020018061558f602b913960400191505060405180910390fd5b600084118015614d0e5750600083115b614d63576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b6000614d81612710614d75878961546c565b9063ffffffff61546c16565b90506000614da28463ffffffff16614d758988614c3290919063ffffffff16565b9050614dbf6001828481614db257fe5b049063ffffffff6154f216565b979650505050505050565b6000808411614e24576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806156e66024913960400191505060405180910390fd5b600083118015614e345750600082115b614e89576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260278152602001806156686027913960400191505060405180910390fd5b82614e9a858463ffffffff61546c16565b81614ea157fe5b04949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415614f32576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061561f6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1610614f6c578284614f6f565b83835b909250905073ffffffffffffffffffffffffffffffffffffffff8216614ff657604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f486f7065537761704c6962726172793a205a45524f5f41444452455353000000604482015290519081900360640190fd5b9250929050565b604080517fe6a4390500000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff888116600483015287811660248301529151600092839283927f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e9092169163e6a4390591604480820192602092909190829003018186803b15801561509d57600080fd5b505afa1580156150b1573d6000803e3d6000fd5b505050506040513d60208110156150c757600080fd5b505173ffffffffffffffffffffffffffffffffffffffff1614156151ad57604080517fc9c6539600000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff8a81166004830152898116602483015291517f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e9092169163c9c65396916044808201926020929091908290030181600087803b15801561518057600080fd5b505af1158015615194573d6000803e3d6000fd5b505050506040513d60208110156151aa57600080fd5b50505b6000806151db7f00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e8b8b6152fe565b915091508160001480156151ed575080155b156151fd578793508692506152f1565b600061520a898484614dca565b9050878111615277578581101561526c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260258152602001806156436025913960400191505060405180910390fd5b8894509250826152ef565b6000615284898486614dca565b90508981111561529057fe5b878110156152e9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061570a6025913960400191505060405180910390fd5b94508793505b505b5050965096945050505050565b600080600061530d8585614eaa565b50905060008061531e888888613fe9565b73ffffffffffffffffffffffffffffffffffffffff16630902f1ac6040518163ffffffff1660e01b815260040160606040518083038186803b15801561536357600080fd5b505afa158015615377573d6000803e3d6000fd5b505050506040513d606081101561538d57600080fd5b5080516020909101516dffffffffffffffffffffffffffff918216935016905073ffffffffffffffffffffffffffffffffffffffff878116908416146153d45780826153d7565b81815b90999098509650505050505050565b60006153f3848484613fe9565b73ffffffffffffffffffffffffffffffffffffffff16633572a47d6040518163ffffffff1660e01b815260040160206040518083038186803b15801561543857600080fd5b505afa15801561544c573d6000803e3d6000fd5b505050506040513d602081101561546257600080fd5b5051949350505050565b60008115806154875750508082028282828161548457fe5b04145b61139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6d756c2d6f766572666c6f77000000000000000000000000604482015290519081900360640190fd5b8082018281101561139757604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f64732d6d6174682d6164642d6f766572666c6f77000000000000000000000000604482015290519081900360640190fdfe486f706553776170526f757465723a20494e53554646494349454e545f4f55545055545f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f4f55545055545f414d4f554e545472616e7366657248656c7065723a3a7472616e7366657246726f6d3a207472616e7366657246726f6d206661696c65645472616e7366657248656c7065723a3a736166655472616e736665724554483a20455448207472616e73666572206661696c6564486f7065537761704c6962726172793a204944454e544943414c5f414444524553534553486f706553776170526f757465723a20494e53554646494349454e545f425f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f4c49515549444954595472616e7366657248656c7065723a3a736166655472616e736665723a207472616e73666572206661696c6564486f7065537761704c6962726172793a20494e53554646494349454e545f494e5055545f414d4f554e54486f7065537761704c6962726172793a20494e53554646494349454e545f414d4f554e54486f706553776170526f757465723a20494e53554646494349454e545f415f414d4f554e54486f706553776170526f757465723a204558434553534956455f494e5055545f414d4f554e54a2646970667358221220f2575f71cd2cb62d66548139de4b0d8065e72f908a5026cb14aea3b628a0f9e864736f6c63430006060033

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

00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2

-----Decoded View---------------
Arg [0] : _factory (address): 0x26F53fbADeEb777fb2A122dC703433d79241b64e
Arg [1] : _WETH (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2

-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 00000000000000000000000026f53fbadeeb777fb2a122dc703433d79241b64e
Arg [1] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2


Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Validator Index Block Amount
View All Withdrawals

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

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