More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 88,461 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 66322275 | 108 days ago | IN | 1 POL | 0.00087297 | ||||
Transfer | 53620192 | 431 days ago | IN | 8.4 POL | 0.00183879 | ||||
Aggregate | 52989154 | 447 days ago | IN | 0 POL | 0.01765919 | ||||
Exact Input V2Sw... | 52989148 | 447 days ago | IN | 0 POL | 0.01141689 | ||||
Aggregate | 52989078 | 447 days ago | IN | 0 POL | 0.01251433 | ||||
Aggregate | 52989076 | 447 days ago | IN | 0 POL | 0.01815507 | ||||
Aggregate | 52989050 | 447 days ago | IN | 0 POL | 0.00940094 | ||||
Aggregate | 52989035 | 447 days ago | IN | 0 POL | 0.01770242 | ||||
Aggregate | 52988938 | 447 days ago | IN | 0 POL | 0.0171441 | ||||
Aggregate | 52988937 | 447 days ago | IN | 21.5 POL | 0.01719718 | ||||
Aggregate | 52988929 | 447 days ago | IN | 248.7126436 POL | 0.01602279 | ||||
Aggregate | 52988783 | 447 days ago | IN | 0 POL | 0.0262702 | ||||
Aggregate | 52988751 | 447 days ago | IN | 26 POL | 0.01537818 | ||||
Aggregate | 52988680 | 447 days ago | IN | 0 POL | 0.02031258 | ||||
Aggregate | 52988551 | 447 days ago | IN | 0 POL | 0.01287356 | ||||
Aggregate | 52988528 | 447 days ago | IN | 0 POL | 0.01811916 | ||||
Aggregate | 52988245 | 447 days ago | IN | 59 POL | 0.01590638 | ||||
Aggregate | 52988184 | 447 days ago | IN | 0 POL | 0.01292025 | ||||
Aggregate | 52988169 | 447 days ago | IN | 0 POL | 0.01203697 | ||||
Aggregate | 52988159 | 447 days ago | IN | 0 POL | 0.00945859 | ||||
Aggregate | 52988105 | 447 days ago | IN | 6.5 POL | 0.02245141 | ||||
Aggregate | 52988103 | 447 days ago | IN | 13.1 POL | 0.01688122 | ||||
Exact Input V2Sw... | 52988070 | 447 days ago | IN | 0 POL | 0.00852594 | ||||
Exact Input V2Sw... | 52988023 | 447 days ago | IN | 0 POL | 0.0119409 | ||||
Cross | 52988017 | 447 days ago | IN | 0 POL | 0.006579 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
64945435 | 142 days ago | 1,597.69839838 POL | ||||
53103345 | 444 days ago | 1,891.36890907 POL | ||||
52988937 | 447 days ago | 21.4355 POL | ||||
52988929 | 447 days ago | 247.96650567 POL | ||||
52988751 | 447 days ago | 25.922 POL | ||||
52988245 | 447 days ago | 58.823 POL | ||||
52988105 | 447 days ago | 6.4805 POL | ||||
52988103 | 447 days ago | 13.0607 POL | ||||
52988023 | 447 days ago | 322.30392512 POL | ||||
52988023 | 447 days ago | 322.30392512 POL | ||||
52987966 | 447 days ago | 97.2075 POL | ||||
52987718 | 447 days ago | 13.0607 POL | ||||
52987600 | 447 days ago | 12.961 POL | ||||
52986983 | 447 days ago | 0.01008964 POL | ||||
52986901 | 447 days ago | 13.0607 POL | ||||
52986861 | 447 days ago | 2.991 POL | ||||
52986850 | 447 days ago | 49.85 POL | ||||
52986077 | 447 days ago | 84.745 POL | ||||
52985623 | 447 days ago | 12.961 POL | ||||
52985505 | 447 days ago | 75.772 POL | ||||
52985308 | 447 days ago | 59.82 POL | ||||
52985245 | 447 days ago | 69.79 POL | ||||
52985074 | 447 days ago | 1.994 POL | ||||
52984784 | 447 days ago | 2.991 POL | ||||
52983962 | 447 days ago | 2,994 POL |
Loading...
Loading
Contract Name:
TransitSwapRouterV5
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./UniswapV2Router.sol"; import "./UniswapV3Router.sol"; import "./AggregateRouter.sol"; import "./CrossRouter.sol"; contract TransitSwapRouterV5 is UniswapV2Router, UniswapV3Router, AggregateRouter, CrossRouter { function withdrawTokens(address[] memory tokens, address recipient) external onlyExecutor { for (uint index; index < tokens.length; index++) { uint amount; if (TransferHelper.isETH(tokens[index])) { amount = address(this).balance; TransferHelper.safeTransferETH(recipient, amount); } else { amount = IERC20(tokens[index]).balanceOf(address(this)); TransferHelper.safeTransferWithoutRequire(tokens[index], recipient, amount); } emit Withdraw(tokens[index], msg.sender, recipient, amount); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./BaseCore.sol"; contract CrossRouter is BaseCore { using SafeMath for uint256; constructor() {} function cross(CrossDescription calldata desc) external payable nonReentrant whenNotPaused { require(desc.calls.length > 0, "data should be not zero"); require(desc.amount > 0, "amount should be greater than 0"); require(_cross_caller_allowed[desc.caller], "invalid caller"); uint256 swapAmount; uint256 actualAmountIn = calculateTradeFee(false, desc.amount, desc.fee, desc.signature); if (TransferHelper.isETH(desc.srcToken)) { require(msg.value == desc.amount, "invalid msg.value"); swapAmount = actualAmountIn; if (desc.wrappedToken != address(0)) { require(_wrapped_allowed[desc.wrappedToken], "Invalid wrapped address"); TransferHelper.safeDeposit(desc.wrappedToken, swapAmount); TransferHelper.safeApprove(desc.wrappedToken, desc.caller, swapAmount); swapAmount = 0; } } else { TransferHelper.safeTransferFrom(desc.srcToken, msg.sender, address(this), desc.amount); TransferHelper.safeApprove(desc.srcToken, desc.caller, actualAmountIn); } { (bool success, bytes memory result) = desc.caller.call{value:swapAmount}(desc.calls); if (!success) { revert(RevertReasonParser.parse(result, "TransitCrossV5:")); } } _emitTransit(desc.srcToken, desc.dstToken, desc.dstReceiver, desc.amount, 0, desc.toChain, desc.channel); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./BaseCore.sol"; contract AggregateRouter is BaseCore { using SafeMath for uint256; constructor() { } function aggregateAndGasUsed(TransitSwapDescription calldata desc, CallbytesDescription calldata callbytesDesc) external payable returns (uint256 returnAmount, uint256 gasUsed) { uint256 gasLeftBefore = gasleft(); returnAmount = _executeAggregate(desc, callbytesDesc); gasUsed = gasLeftBefore - gasleft(); } function aggregate(TransitSwapDescription calldata desc, CallbytesDescription calldata callbytesDesc) external payable returns (uint256 returnAmount) { returnAmount = _executeAggregate(desc, callbytesDesc); } function _executeAggregate(TransitSwapDescription calldata desc, CallbytesDescription calldata callbytesDesc) internal nonReentrant whenNotPaused returns (uint256 returnAmount) { require(callbytesDesc.calldatas.length > 0, "data should be not zero"); require(desc.amount > 0, "amount should be greater than 0"); require(desc.dstReceiver != address(0), "receiver should be not address(0)"); require(desc.minReturnAmount > 0, "minReturnAmount should be greater than 0"); require(_wrapped_allowed[desc.wrappedToken], "invalid wrapped address"); uint256 actualAmountIn = calculateTradeFee(true, desc.amount, desc.fee, desc.signature); uint256 swapAmount; uint256 toBeforeBalance; address bridgeAddress = _aggregate_bridge; if (TransferHelper.isETH(desc.srcToken)) { require(msg.value == desc.amount, "invalid msg.value"); swapAmount = actualAmountIn; } else { TransferHelper.safeTransferFrom(desc.srcToken, msg.sender, address(this), desc.amount); TransferHelper.safeTransfer(desc.srcToken, bridgeAddress, actualAmountIn); } if (TransferHelper.isETH(desc.dstToken)) { toBeforeBalance = desc.dstReceiver.balance; } else { toBeforeBalance = IERC20(desc.dstToken).balanceOf(desc.dstReceiver); } { //bytes4(keccak256(bytes('callbytes(CallbytesDescription)'))); (bool success, bytes memory result) = bridgeAddress.call{value : swapAmount}(abi.encodeWithSelector(0x3f3204d2, callbytesDesc)); if (!success) { revert(RevertReasonParser.parse(result, "TransitSwap:")); } } if (TransferHelper.isETH(desc.dstToken)) { returnAmount = desc.dstReceiver.balance.sub(toBeforeBalance); } else { returnAmount = IERC20(desc.dstToken).balanceOf(desc.dstReceiver).sub(toBeforeBalance); } require(returnAmount >= desc.minReturnAmount, "Too little received"); _emitTransit(desc.srcToken, desc.dstToken, desc.dstReceiver, desc.amount, returnAmount, 0, desc.channel); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./BaseCore.sol"; contract UniswapV3Router is BaseCore { using SafeMath for uint256; uint256 private constant _ZERO_FOR_ONE_MASK = 1 << 255; uint160 private constant MIN_SQRT_RATIO = 4295128739; uint160 private constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; constructor() {} fallback() external { (int256 amount0Delta, int256 amount1Delta, bytes memory _data) = abi.decode(msg.data[4:], (int256,int256,bytes)); _executeCallback(amount0Delta, amount1Delta, _data); } function pancakeV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata _data ) external { _executeCallback(amount0Delta, amount1Delta, _data); } function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata _data ) external { _executeCallback(amount0Delta, amount1Delta, _data); } function _executeCallback( int256 amount0Delta, int256 amount1Delta, bytes memory _data ) internal { require(amount0Delta > 0 || amount1Delta > 0, "M0 or M1"); // swaps entirely within 0-liquidity regions are not supported (uint256 pool, bytes memory tokenInAndPoolSalt) = abi.decode(_data, (uint256, bytes)); (address tokenIn, bytes32 poolSalt) = abi.decode(tokenInAndPoolSalt, (address, bytes32)); _verifyCallback(pool, poolSalt, msg.sender); uint256 amountToPay = uint256(amount1Delta); if (amount0Delta > 0) { amountToPay = uint256(amount0Delta); } TransferHelper.safeTransfer(tokenIn, msg.sender, amountToPay); } function exactInputV3SwapAndGasUsed(ExactInputV3SwapParams calldata params) external payable returns (uint256 returnAmount, uint256 gasUsed) { uint256 gasLeftBefore = gasleft(); returnAmount = _executeV3Swap(params); gasUsed = gasLeftBefore - gasleft(); } function exactInputV3Swap(ExactInputV3SwapParams calldata params) external payable returns (uint256 returnAmount) { returnAmount = _executeV3Swap(params); } function _executeV3Swap(ExactInputV3SwapParams calldata params) internal nonReentrant whenNotPaused returns (uint256 returnAmount) { require(params.pools.length > 0, "Empty pools"); require(params.deadline >= block.timestamp, "Expired"); require(_wrapped_allowed[params.wrappedToken], "Invalid wrapped address"); address tokenIn = params.srcToken; address tokenOut = params.dstToken; uint256 actualAmountIn = calculateTradeFee(true, params.amount, params.fee, params.signature); uint256 toBeforeBalance; bool isToETH; if (TransferHelper.isETH(params.srcToken)) { tokenIn = params.wrappedToken; require(msg.value == params.amount, "Invalid msg.value"); TransferHelper.safeDeposit(params.wrappedToken, actualAmountIn); } else { TransferHelper.safeTransferFrom(params.srcToken, msg.sender, address(this), params.amount); } if (TransferHelper.isETH(params.dstToken)) { tokenOut = params.wrappedToken; toBeforeBalance = IERC20(params.wrappedToken).balanceOf(address(this)); isToETH = true; } else { toBeforeBalance = IERC20(params.dstToken).balanceOf(params.dstReceiver); } { uint256 len = params.pools.length; address recipient = address(this); bytes memory tokenInAndPoolSalt; if (len > 1) { address thisTokenIn = tokenIn; address thisTokenOut = address(0); for (uint256 i; i < len; i++) { uint256 thisPool = params.pools[i]; (thisTokenIn, tokenInAndPoolSalt) = _verifyPool(thisTokenIn, thisTokenOut, thisPool); if (i == len - 1 && !isToETH) { recipient = params.dstReceiver; thisTokenOut = tokenOut; } actualAmountIn = _swap(recipient, thisPool, tokenInAndPoolSalt, actualAmountIn); } returnAmount = actualAmountIn; } else { (, tokenInAndPoolSalt) = _verifyPool(tokenIn, tokenOut, params.pools[0]); if (!isToETH) { recipient = params.dstReceiver; } returnAmount = _swap(recipient, params.pools[0], tokenInAndPoolSalt, actualAmountIn); } } if (isToETH) { returnAmount = IERC20(params.wrappedToken).balanceOf(address(this)).sub(toBeforeBalance); require(returnAmount >= params.minReturnAmount, "Too little received"); TransferHelper.safeWithdraw(params.wrappedToken, returnAmount); TransferHelper.safeTransferETH(params.dstReceiver, returnAmount); } else { returnAmount = IERC20(params.dstToken).balanceOf(params.dstReceiver).sub(toBeforeBalance); require(returnAmount >= params.minReturnAmount, "Too little received"); } _emitTransit(params.srcToken, params.dstToken, params.dstReceiver, params.amount, returnAmount, 0, params.channel); } function _swap(address recipient, uint256 pool, bytes memory tokenInAndPoolSalt, uint256 amount) internal returns (uint256 amountOut) { bool zeroForOne = pool & _ZERO_FOR_ONE_MASK == 0; if (zeroForOne) { (, int256 amount1) = IUniswapV3Pool(address(uint160(pool))).swap( recipient, zeroForOne, amount.toInt256(), MIN_SQRT_RATIO + 1, abi.encode(pool, tokenInAndPoolSalt) ); amountOut = SafeMath.toUint256(-amount1); } else { (int256 amount0,) = IUniswapV3Pool(address(uint160(pool))).swap( recipient, zeroForOne, amount.toInt256(), MAX_SQRT_RATIO - 1, abi.encode(pool, tokenInAndPoolSalt) ); amountOut = SafeMath.toUint256(-amount0); } } function _verifyPool(address tokenIn, address tokenOut, uint256 pool) internal view returns (address nextTokenIn, bytes memory tokenInAndPoolSalt) { IUniswapV3Pool iPool = IUniswapV3Pool(address(uint160(pool))); address token0 = iPool.token0(); address token1 = iPool.token1(); uint24 fee = iPool.fee(); bytes32 poolSalt = keccak256(abi.encode(token0, token1, fee)); bool zeroForOne = pool & _ZERO_FOR_ONE_MASK == 0; if (zeroForOne) { require(tokenIn == token0, "Bad pool"); if (tokenOut != address(0)) { require(tokenOut == token1, "Bad pool"); } nextTokenIn = token1; tokenInAndPoolSalt = abi.encode(token0, poolSalt); } else { require(tokenIn == token1, "Bad pool"); if (tokenOut != address(0)) { require(tokenOut == token0, "Bad pool"); } nextTokenIn = token0; tokenInAndPoolSalt = abi.encode(token1, poolSalt); } } function _verifyCallback(uint256 pool, bytes32 poolSalt, address caller) internal view { uint poolDigit = pool >> 248 & 0xf; UniswapV3Pool memory v3Pool = _uniswapV3_factory_allowed[poolDigit]; require(v3Pool.factory != address(0), "Callback bad pool indexed"); address calcPool = address( uint160( uint256( keccak256( abi.encodePacked( hex'ff', v3Pool.factory, poolSalt, v3Pool.initCodeHash ) ) ) ) ); require(calcPool == caller, "Callback bad pool"); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./BaseCore.sol"; contract UniswapV2Router is BaseCore { using SafeMath for uint256; constructor() { } function _beforeSwap(ExactInputV2SwapParams calldata exactInput, bool supportingFeeOn) internal returns (bool isToETH, uint256 actualAmountIn, address[] memory paths, uint256 thisAddressBeforeBalance, uint256 toBeforeBalance) { require(exactInput.path.length == exactInput.pool.length + 1, "Invalid path"); require(_wrapped_allowed[exactInput.wrappedToken], "Invalid wrapped address"); actualAmountIn = calculateTradeFee(true, exactInput.amount, exactInput.fee, exactInput.signature); //检查第一个或最后一个是否为ETH address[] memory path = exactInput.path; address dstToken = path[exactInput.path.length - 1]; if (TransferHelper.isETH(exactInput.path[0])) { require(msg.value == exactInput.amount, "Invalid msg.value"); path[0] = exactInput.wrappedToken; TransferHelper.safeDeposit(exactInput.wrappedToken, actualAmountIn); } else { if (supportingFeeOn) { actualAmountIn = IERC20(path[0]).balanceOf(address(this)); TransferHelper.safeTransferFrom(path[0], msg.sender, address(this), exactInput.amount); actualAmountIn = IERC20(path[0]).balanceOf(address(this)).sub(actualAmountIn).sub(exactInput.fee); } else { TransferHelper.safeTransferFrom(path[0], msg.sender, address(this), exactInput.amount); } } if (TransferHelper.isETH(dstToken)) { path[path.length - 1] = exactInput.wrappedToken; isToETH = true; thisAddressBeforeBalance = IERC20(exactInput.wrappedToken).balanceOf(address(this)); } else { if (supportingFeeOn) { toBeforeBalance = IERC20(dstToken).balanceOf(exactInput.dstReceiver); } } paths = path; } function exactInputV2SwapAndGasUsed(ExactInputV2SwapParams calldata exactInput, uint256 deadline) external payable returns (uint256 returnAmount, uint256 gasUsed) { uint256 gasLeftBefore = gasleft(); returnAmount = _executeV2Swap(exactInput, deadline); gasUsed = gasLeftBefore - gasleft(); } function exactInputV2Swap(ExactInputV2SwapParams calldata exactInput, uint256 deadline) external payable returns (uint256 returnAmount) { returnAmount = _executeV2Swap(exactInput, deadline); } function _executeV2Swap(ExactInputV2SwapParams calldata exactInput, uint256 deadline) internal nonReentrant whenNotPaused returns (uint256 returnAmount) { require(deadline >= block.timestamp, "Expired"); bool supportingFeeOn = exactInput.router >> 248 & 0xf == 1; { (bool isToETH, uint256 actualAmountIn, address[] memory paths, uint256 thisAddressBeforeBalance, uint256 toBeforeBalance) = _beforeSwap(exactInput, supportingFeeOn); TransferHelper.safeTransfer(paths[0], exactInput.pool[0], actualAmountIn); if (supportingFeeOn) { if(isToETH) { _swapSupportingFeeOnTransferTokens(address(uint160(exactInput.router)), paths, exactInput.pool, address(this)); returnAmount = IERC20(exactInput.wrappedToken).balanceOf(address(this)).sub(thisAddressBeforeBalance); } else { _swapSupportingFeeOnTransferTokens(address(uint160(exactInput.router)), paths, exactInput.pool, exactInput.dstReceiver); returnAmount = IERC20(paths[paths.length - 1]).balanceOf(exactInput.dstReceiver).sub(toBeforeBalance); } } else { uint[] memory amounts = IUniswapV2(address(uint160(exactInput.router))).getAmountsOut(actualAmountIn, paths); if(isToETH) { _swap(amounts, paths, exactInput.pool, address(this)); returnAmount = IERC20(exactInput.wrappedToken).balanceOf(address(this)).sub(thisAddressBeforeBalance); } else { _swap(amounts, paths, exactInput.pool, exactInput.dstReceiver); returnAmount = amounts[amounts.length - 1]; } } require(returnAmount >= exactInput.minReturnAmount, "Too little received"); if (isToETH) { TransferHelper.safeWithdraw(exactInput.wrappedToken, returnAmount); TransferHelper.safeTransferETH(exactInput.dstReceiver, returnAmount); } } string memory channel = exactInput.channel; _emitTransit(exactInput.path[0], exactInput.path[exactInput.path.length - 1], exactInput.dstReceiver, exactInput.amount, returnAmount, 0, channel); } function _swap(uint[] memory amounts, address[] memory path, address[] memory pool, address _to) internal { for (uint i; i < path.length - 1; i++) { (address input, address output) = (path[i], path[i + 1]); (address token0,) = input < output ? (input, output) : (output, input); uint amountOut = amounts[i + 1]; (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOut) : (amountOut, uint(0)); address to = i < path.length - 2 ? pool[i + 1] : _to; IUniswapV2(pool[i]).swap( amount0Out, amount1Out, to, new bytes(0) ); } } function _swapSupportingFeeOnTransferTokens(address router, address[] memory path, address[] memory pool, address _to) internal virtual { for (uint i; i < path.length - 1; i++) { (address input, address output) = (path[i], path[i + 1]); (address token0,) = input < output ? (input, output) : (output, input); IUniswapV2 pair = IUniswapV2(pool[i]); uint amountInput; uint amountOutput; { // scope to avoid stack too deep errors (uint reserve0, uint reserve1,) = pair.getReserves(); (uint reserveInput, uint reserveOutput) = input == token0 ? (reserve0, reserve1) : (reserve1, reserve0); amountInput = IERC20(input).balanceOf(address(pair)).sub(reserveInput); amountOutput = IUniswapV2(router).getAmountOut(amountInput, reserveInput, reserveOutput); } (uint amount0Out, uint amount1Out) = input == token0 ? (uint(0), amountOutput) : (amountOutput, uint(0)); address to = i < path.length - 2 ? pool[i + 1] : _to; pair.swap(amount0Out, amount1Out, to, new bytes(0)); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./libs/Pausable.sol"; import "./libs/ReentrancyGuard.sol"; import "./libs/TransferHelper.sol"; import "./libs/RevertReasonParser.sol"; import "./libs/SafeMath.sol"; import "./libs/Ownable.sol"; import "./interfaces/IERC20.sol"; import "./interfaces/IUniswapV2.sol"; import "./interfaces/IUniswapV3Pool.sol"; contract BaseCore is Ownable, Pausable, ReentrancyGuard { using SafeMath for uint256; struct ExactInputV2SwapParams { address dstReceiver; address wrappedToken; uint256 router; uint256 amount; uint256 minReturnAmount; uint256 fee; address[] path; address[] pool; bytes signature; string channel; } struct ExactInputV3SwapParams { address srcToken; address dstToken; address dstReceiver; address wrappedToken; uint256 amount; uint256 minReturnAmount; uint256 fee; uint256 deadline; uint256[] pools; bytes signature; string channel; } struct TransitSwapDescription { address srcToken; address dstToken; address dstReceiver; address wrappedToken; uint256 amount; uint256 minReturnAmount; uint256 fee; string channel; bytes signature; } struct CrossDescription { address srcToken; address dstToken; address caller; address dstReceiver; address wrappedToken; uint256 amount; uint256 fee; uint256 toChain; string channel; bytes calls; bytes signature; } struct CallbytesDescription { address srcToken; bytes calldatas; } struct UniswapV3Pool { address factory; bytes initCodeHash; } uint256 internal _aggregate_fee; uint256 internal _cross_fee; address internal _aggregate_bridge; address internal _fee_signer; bytes32 public DOMAIN_SEPARATOR; //whitelist cross's caller mapping(address => bool) internal _cross_caller_allowed; //whitelist wrapped mapping(address => bool) internal _wrapped_allowed; //whitelist uniswap v3 factory mapping(uint => UniswapV3Pool) internal _uniswapV3_factory_allowed; bytes32 public constant CHECKFEE_TYPEHASH = keccak256("CheckFee(address payer,uint256 amount,uint256 fee)"); event Receipt(address from, uint256 amount); event Withdraw(address indexed token, address indexed executor, address indexed recipient, uint amount); event ChangeWrappedAllowed(address[] wrappedTokens, bool[] newAllowed); event ChangeV3FactoryAllowed(uint256[] poolIndex, address[] factories, bytes[] initCodeHash); event ChangeCrossCallerAllowed(address[] callers); event ChangeFeeRate(bool isAggregate, uint256 newRate); event ChangeSigner(address preSigner, address newSigner); event ChangeAggregateBridge(address newBridge); event TransitSwapped(address indexed srcToken, address indexed dstToken, address indexed dstReceiver, uint256 amount, uint256 returnAmount, uint256 toChainID, string channel); constructor() Ownable(msg.sender) { DOMAIN_SEPARATOR = keccak256( abi.encode( keccak256("EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)"), keccak256(bytes("TransitSwapV5")), keccak256(bytes("5")), block.chainid, address(this) ) ); } receive() external payable { emit Receipt(msg.sender, msg.value); } function calculateTradeFee(bool isAggregate, uint256 tradeAmount, uint256 fee, bytes calldata signature) internal view returns (uint256) { uint256 thisFee; if (isAggregate) { thisFee = tradeAmount.mul(_aggregate_fee).div(10000); } else { thisFee = tradeAmount.mul(_cross_fee).div(10000); } if (fee < thisFee) { require(verifySignature(tradeAmount, fee, signature), "Invalid signature fee"); } return tradeAmount.sub(fee); } function _emitTransit(address srcToken, address dstToken, address dstReceiver, uint256 amount, uint256 returnAmount, uint256 toChainID, string memory channel) internal { emit TransitSwapped ( srcToken, dstToken, dstReceiver, amount, returnAmount, toChainID, channel ); } function changeFee(bool[] memory isAggregate, uint256[] memory newRate) external onlyExecutor { for (uint i; i < isAggregate.length; i++) { require(newRate[i] >= 0 && newRate[i] <= 1000, "fee rate is:0-1000"); if (isAggregate[i]) { _aggregate_fee = newRate[i]; } else { _cross_fee = newRate[i]; } emit ChangeFeeRate(isAggregate[i], newRate[i]); } } function changeTransitProxy(address aggregator, address signer) external onlyExecutor { if (aggregator != address(0)) { _aggregate_bridge = aggregator; emit ChangeAggregateBridge(aggregator); } if (signer != address(0)) { address preSigner = _fee_signer; _fee_signer = signer; emit ChangeSigner(preSigner, signer); } } function changeAllowed(address[] calldata crossCallers, address[] calldata wrappedTokens) public onlyExecutor { if(crossCallers.length != 0){ for (uint i; i < crossCallers.length; i++) { _cross_caller_allowed[crossCallers[i]] = !_cross_caller_allowed[crossCallers[i]]; } emit ChangeCrossCallerAllowed(crossCallers); } if(wrappedTokens.length != 0) { bool[] memory newAllowed = new bool[](wrappedTokens.length); for (uint index; index < wrappedTokens.length; index++) { _wrapped_allowed[wrappedTokens[index]] = !_wrapped_allowed[wrappedTokens[index]]; newAllowed[index] = _wrapped_allowed[wrappedTokens[index]]; } emit ChangeWrappedAllowed(wrappedTokens, newAllowed); } } function changeUniswapV3FactoryAllowed(uint[] calldata poolIndex, address[] calldata factories, bytes[] calldata initCodeHash) public onlyExecutor { require(poolIndex.length == initCodeHash.length, "invalid data"); require(factories.length == initCodeHash.length, "invalid data"); uint len = factories.length; for (uint i; i < len; i++) { _uniswapV3_factory_allowed[poolIndex[i]] = UniswapV3Pool(factories[i],initCodeHash[i]); } emit ChangeV3FactoryAllowed(poolIndex, factories, initCodeHash); } function changePause(bool paused) external onlyExecutor { if (paused) { _pause(); } else { _unpause(); } } function transitProxyAddress() external view returns (address bridgeProxy, address feeSigner) { bridgeProxy = _aggregate_bridge; feeSigner = _fee_signer; } function transitFee() external view returns (uint256, uint256) { return (_aggregate_fee, _cross_fee); } function transitAllowedQuery(address crossCaller, address wrappedToken, uint256 poolIndex) external view returns (bool isCrossCallerAllowed, bool isWrappedAllowed, UniswapV3Pool memory pool) { isCrossCallerAllowed = _cross_caller_allowed[crossCaller]; isWrappedAllowed = _wrapped_allowed[wrappedToken]; pool = _uniswapV3_factory_allowed[poolIndex]; } function verifySignature(uint256 amount, uint256 fee, bytes calldata signature) internal view returns (bool) { bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR, keccak256(abi.encode(CHECKFEE_TYPEHASH, msg.sender, amount, fee)) ) ); (uint8 v, bytes32 r, bytes32 s) = splitSignature(signature); address recovered = ecrecover(digest, v, r, s); return recovered == _fee_signer; } function splitSignature(bytes memory _signature) internal pure returns (uint8 v, bytes32 r, bytes32 s) { require(bytes(_signature).length == 65, "Invalid signature length"); assembly { r := mload(add(_signature, 0x20)) s := mload(add(_signature, 0x40)) v := byte(0, mload(add(_signature, 0x60))) } return (v, r, s); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV3Pool { function token0() external view returns (address); function token1() external view returns (address); function fee() external view returns (uint24); function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data ) external returns (int256 amount0, int256 amount1); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.9; interface IUniswapV2 { function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountsOut(uint amountIn, address[] memory path) external view returns (uint[] memory amounts); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.9; interface IERC20 { function totalSupply() external view returns (uint256); function decimals() external view returns (uint8); function name() external view returns (string memory); function symbol() external view returns (string memory); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) // Add executor extension pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable { address private _executor; address private _pendingExecutor; bool internal _initialized; event ExecutorshipTransferStarted(address indexed previousExecutor, address indexed newExecutor); event ExecutorshipTransferred(address indexed previousExecutor, address indexed newExecutor); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor(address newExecutor) { require(!_initialized, "Ownable: initialized"); _transferExecutorship(newExecutor); _initialized = true; } /** * @dev Throws if called by any account other than the executor. */ modifier onlyExecutor() { _checkExecutor(); _; } /** * @dev Returns the address of the current executor. */ function executor() public view virtual returns (address) { return _executor; } /** * @dev Returns the address of the pending executor. */ function pendingExecutor() public view virtual returns (address) { return _pendingExecutor; } /** * @dev Throws if the sender is not the executor. */ function _checkExecutor() internal view virtual { require(executor() == msg.sender, "Ownable: caller is not the executor"); } /** * @dev Transfers executorship of the contract to a new account (`newExecutor`). * Can only be called by the current executor. */ function transferExecutorship(address newExecutor) public virtual onlyExecutor { _pendingExecutor = newExecutor; emit ExecutorshipTransferStarted(executor(), newExecutor); } function _transferExecutorship(address newExecutor) internal virtual { delete _pendingExecutor; address oldExecutor = _executor; _executor = newExecutor; emit ExecutorshipTransferred(oldExecutor, newExecutor); } function acceptExecutorship() external { address sender = msg.sender; require(pendingExecutor() == sender, "Ownable: caller is not the new executor"); _transferExecutorship(sender); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; 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'); } function div(uint x, uint y) internal pure returns (uint z) { require(y != 0 , 'ds-math-div-zero'); z = x / y; } function toInt256(uint256 value) internal pure returns (int256) { require(value <= uint256(type(int256).max), "SafeCast: value doesn't fit in an int256"); return int256(value); } function toUint256(int256 value) internal pure returns (uint256) { require(value >= 0, "SafeCast: value must be positive"); return uint256(value); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; library RevertReasonParser { function parse(bytes memory data, string memory prefix) internal pure returns (string memory) { // https://solidity.readthedocs.io/en/latest/control-structures.html#revert // We assume that revert reason is abi-encoded as Error(string) // 68 = 4-byte selector 0x08c379a0 + 32 bytes offset + 32 bytes length if (data.length >= 68 && data[0] == "\x08" && data[1] == "\xc3" && data[2] == "\x79" && data[3] == "\xa0") { string memory reason; // solhint-disable no-inline-assembly assembly { // 68 = 32 bytes data length + 4-byte selector + 32 bytes offset reason := add(data, 68) } /* revert reason is padded up to 32 bytes with ABI encoder: Error(string) also sometimes there is extra 32 bytes of zeros padded in the end: https://github.com/ethereum/solidity/issues/10170 because of that we can't check for equality and instead check that string length + extra 68 bytes is less than overall data length */ require(data.length >= 68 + bytes(reason).length, "Invalid revert reason"); return string(abi.encodePacked(prefix, "Error(", reason, ")")); } // 36 = 4-byte selector 0x4e487b71 + 32 bytes integer else if (data.length == 36 && data[0] == "\x4e" && data[1] == "\x48" && data[2] == "\x7b" && data[3] == "\x71") { uint256 code; // solhint-disable no-inline-assembly assembly { // 36 = 32 bytes data length + 4-byte selector code := mload(add(data, 36)) } return string(abi.encodePacked(prefix, "Panic(", _toHex(code), ")")); } return string(abi.encodePacked(prefix, "Unknown(", _toHex(data), ")")); } function _toHex(uint256 value) private pure returns(string memory) { return _toHex(abi.encodePacked(value)); } function _toHex(bytes memory data) private pure returns(string memory) { bytes16 alphabet = 0x30313233343536373839616263646566; bytes memory str = new bytes(2 + data.length * 2); str[0] = "0"; str[1] = "x"; for (uint256 i = 0; i < data.length; i++) { str[2 * i + 2] = alphabet[uint8(data[i] >> 4)]; str[2 * i + 3] = alphabet[uint8(data[i] & 0x0f)]; } return string(str); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; library TransferHelper { address private constant _ETH_ADDRESS = address(0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE); address private constant _ZERO_ADDRESS = address(0); function isETH(address token) internal pure returns (bool) { return (token == _ZERO_ADDRESS || token == _ETH_ADDRESS); } function safeApprove(address token, address to, uint 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: APPROVE_FAILED'); } function safeTransfer(address token, address to, uint 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: TRANSFER_TOKEN_FAILED'); } function safeTransferWithoutRequire(address token, address to, uint256 value) internal returns (bool) { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); return (success && (data.length == 0 || abi.decode(data, (bool)))); } function safeTransferFrom(address token, address from, address to, uint 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: TRANSFER_FROM_FAILED'); } function safeTransferETH(address to, uint value) internal { // solium-disable-next-line (bool success,) = to.call{value:value}(new bytes(0)); require(success, 'TransferHelper: TRANSFER_FAILED'); } function safeDeposit(address wrapped, uint value) internal { // bytes4(keccak256(bytes('deposit()'))); (bool success, bytes memory data) = wrapped.call{value:value}(abi.encodeWithSelector(0xd0e30db0)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: DEPOSIT_FAILED'); } function safeWithdraw(address wrapped, uint value) internal { // bytes4(keccak256(bytes('withdraw(uint256 wad)'))); (bool success, bytes memory data) = wrapped.call{value:0}(abi.encodeWithSelector(0x2e1a7d4d, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper: WITHDRAW_FAILED'); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); assembly { sstore(_status.slot, _ENTERED) } _; assembly { sstore(_status.slot, _NOT_ENTERED) } } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(msg.sender); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(msg.sender); } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newBridge","type":"address"}],"name":"ChangeAggregateBridge","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"callers","type":"address[]"}],"name":"ChangeCrossCallerAllowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isAggregate","type":"bool"},{"indexed":false,"internalType":"uint256","name":"newRate","type":"uint256"}],"name":"ChangeFeeRate","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"preSigner","type":"address"},{"indexed":false,"internalType":"address","name":"newSigner","type":"address"}],"name":"ChangeSigner","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256[]","name":"poolIndex","type":"uint256[]"},{"indexed":false,"internalType":"address[]","name":"factories","type":"address[]"},{"indexed":false,"internalType":"bytes[]","name":"initCodeHash","type":"bytes[]"}],"name":"ChangeV3FactoryAllowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address[]","name":"wrappedTokens","type":"address[]"},{"indexed":false,"internalType":"bool[]","name":"newAllowed","type":"bool[]"}],"name":"ChangeWrappedAllowed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousExecutor","type":"address"},{"indexed":true,"internalType":"address","name":"newExecutor","type":"address"}],"name":"ExecutorshipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousExecutor","type":"address"},{"indexed":true,"internalType":"address","name":"newExecutor","type":"address"}],"name":"ExecutorshipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Receipt","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"srcToken","type":"address"},{"indexed":true,"internalType":"address","name":"dstToken","type":"address"},{"indexed":true,"internalType":"address","name":"dstReceiver","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"returnAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toChainID","type":"uint256"},{"indexed":false,"internalType":"string","name":"channel","type":"string"}],"name":"TransitSwapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"address","name":"executor","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"stateMutability":"nonpayable","type":"fallback"},{"inputs":[],"name":"CHECKFEE_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_SEPARATOR","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptExecutorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"address","name":"dstToken","type":"address"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"string","name":"channel","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct BaseCore.TransitSwapDescription","name":"desc","type":"tuple"},{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"bytes","name":"calldatas","type":"bytes"}],"internalType":"struct BaseCore.CallbytesDescription","name":"callbytesDesc","type":"tuple"}],"name":"aggregate","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"address","name":"dstToken","type":"address"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"string","name":"channel","type":"string"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct BaseCore.TransitSwapDescription","name":"desc","type":"tuple"},{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"bytes","name":"calldatas","type":"bytes"}],"internalType":"struct BaseCore.CallbytesDescription","name":"callbytesDesc","type":"tuple"}],"name":"aggregateAndGasUsed","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256","name":"gasUsed","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"crossCallers","type":"address[]"},{"internalType":"address[]","name":"wrappedTokens","type":"address[]"}],"name":"changeAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool[]","name":"isAggregate","type":"bool[]"},{"internalType":"uint256[]","name":"newRate","type":"uint256[]"}],"name":"changeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"changePause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"aggregator","type":"address"},{"internalType":"address","name":"signer","type":"address"}],"name":"changeTransitProxy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"poolIndex","type":"uint256[]"},{"internalType":"address[]","name":"factories","type":"address[]"},{"internalType":"bytes[]","name":"initCodeHash","type":"bytes[]"}],"name":"changeUniswapV3FactoryAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"address","name":"dstToken","type":"address"},{"internalType":"address","name":"caller","type":"address"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256","name":"toChain","type":"uint256"},{"internalType":"string","name":"channel","type":"string"},{"internalType":"bytes","name":"calls","type":"bytes"},{"internalType":"bytes","name":"signature","type":"bytes"}],"internalType":"struct BaseCore.CrossDescription","name":"desc","type":"tuple"}],"name":"cross","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"router","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address[]","name":"pool","type":"address[]"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"channel","type":"string"}],"internalType":"struct BaseCore.ExactInputV2SwapParams","name":"exactInput","type":"tuple"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"exactInputV2Swap","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"router","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"address[]","name":"path","type":"address[]"},{"internalType":"address[]","name":"pool","type":"address[]"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"channel","type":"string"}],"internalType":"struct BaseCore.ExactInputV2SwapParams","name":"exactInput","type":"tuple"},{"internalType":"uint256","name":"deadline","type":"uint256"}],"name":"exactInputV2SwapAndGasUsed","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256","name":"gasUsed","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"address","name":"dstToken","type":"address"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256[]","name":"pools","type":"uint256[]"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"channel","type":"string"}],"internalType":"struct BaseCore.ExactInputV3SwapParams","name":"params","type":"tuple"}],"name":"exactInputV3Swap","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"srcToken","type":"address"},{"internalType":"address","name":"dstToken","type":"address"},{"internalType":"address","name":"dstReceiver","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"minReturnAmount","type":"uint256"},{"internalType":"uint256","name":"fee","type":"uint256"},{"internalType":"uint256","name":"deadline","type":"uint256"},{"internalType":"uint256[]","name":"pools","type":"uint256[]"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"string","name":"channel","type":"string"}],"internalType":"struct BaseCore.ExactInputV3SwapParams","name":"params","type":"tuple"}],"name":"exactInputV3SwapAndGasUsed","outputs":[{"internalType":"uint256","name":"returnAmount","type":"uint256"},{"internalType":"uint256","name":"gasUsed","type":"uint256"}],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"executor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int256","name":"amount0Delta","type":"int256"},{"internalType":"int256","name":"amount1Delta","type":"int256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"pancakeV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingExecutor","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newExecutor","type":"address"}],"name":"transferExecutorship","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"crossCaller","type":"address"},{"internalType":"address","name":"wrappedToken","type":"address"},{"internalType":"uint256","name":"poolIndex","type":"uint256"}],"name":"transitAllowedQuery","outputs":[{"internalType":"bool","name":"isCrossCallerAllowed","type":"bool"},{"internalType":"bool","name":"isWrappedAllowed","type":"bool"},{"components":[{"internalType":"address","name":"factory","type":"address"},{"internalType":"bytes","name":"initCodeHash","type":"bytes"}],"internalType":"struct BaseCore.UniswapV3Pool","name":"pool","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transitFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"transitProxyAddress","outputs":[{"internalType":"address","name":"bridgeProxy","type":"address"},{"internalType":"address","name":"feeSigner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int256","name":"amount0Delta","type":"int256"},{"internalType":"int256","name":"amount1Delta","type":"int256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"uniswapV3SwapCallback","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"tokens","type":"address[]"},{"internalType":"address","name":"recipient","type":"address"}],"name":"withdrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506001543390600160a01b900460ff1615620000735760405162461bcd60e51b815260206004820152601460248201527f4f776e61626c653a20696e697469616c697a6564000000000000000000000000604482015260640160405180910390fd5b6200007e8162000177565b506001805461ffff60a01b1916600160a01b1781556002819055604080518082018252600d81526c5472616e73697453776170563560981b60209182015281518083018352928352603560f81b9281019290925280517f8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f928101929092527f20b7d1a4a088b240a0e093c572f43e31015ce187a55e6f343e049dcb744e5341908201527fceebf77a833b30520287ddd9478ff51abbdffa30aa90a8d655dba0e8a79ce0c160608201524660808201523060a082015260c00160408051601f198184030181529190528051602090910120600755620001d1565b600180546001600160a01b0319908116909155600080546001600160a01b03848116938216841783556040519116929183917f88436636ea40d5bb1bcc55ff9cd54788af71da886f4147a87f199adcca733d4d9190a35050565b615a8e80620001e16000396000f3fe60806040526004361061016a5760003560e01c80636fbf72f9116100d1578063b93c0beb1161008a578063d63234e011610064578063d63234e0146104a3578063d808d889146104c1578063fa461e331461028f578063fa9ec7af146104d4576101a9565b8063b93c0beb1461043e578063b9b5149b1461045e578063c34c08e514610471576101a9565b80636fbf72f91461037d5780637e467ecf146103955780637ec753fe146103c957806392bcc8be146103e957806394d3d79314610409578063afed2d0e1461041e576101a9565b80633644e515116101235780633644e515146102d75780634c42342f146102ed578063524d3685146103005780635c975abb146103205780635d4fead31461034a5780636b3ec4161461036a576101a9565b80630ced9fb9146101e75780630dc4bdae1461021f5780630e8cc705146102405780631975b0961461026057806323a69e751461028f5780632adb806f146102af576101a9565b366101a957604080513381523460208201527f7784f8d436dc514f0690e472c7e2d7f660a73e504c69b2350f6be5a5f02432ef910160405180910390a1005b3480156101b557600080fd5b50600080806101c736600481846148b7565b8101906101d4919061494e565b9250925092506101e58383836104e7565b005b3480156101f357600080fd5b50600554600654604080516001600160a01b039384168152929091166020830152015b60405180910390f35b61023261022d3660046149e0565b610595565b604051908152602001610216565b34801561024c57600080fd5b506101e561025b366004614a72565b6105a8565b34801561026c57600080fd5b5061028061027b366004614b1d565b61072c565b60405161021693929190614bae565b34801561029b57600080fd5b506101e56102aa366004614bec565b61082e565b6102c26102bd366004614c6b565b610875565b60408051928352602083019190915201610216565b3480156102e357600080fd5b5061023260075481565b6102c26102fb366004614cf7565b61089e565b34801561030c57600080fd5b506101e561031b366004614d33565b6108c4565b34801561032c57600080fd5b50600154600160a81b900460ff166040519015158152602001610216565b34801561035657600080fd5b506101e5610365366004614d6f565b61099f565b6101e5610378366004614cf7565b6109c0565b34801561038957600080fd5b506003546004546102c2565b3480156103a157600080fd5b506102327f048f880a603b1aab0e626a287e33d603417b3d53a36f7527b7c86365bf7def4f81565b3480156103d557600080fd5b506101e56103e4366004614df2565b610ded565b3480156103f557600080fd5b506101e5610404366004614ef4565b610f74565b34801561041557600080fd5b506101e5611160565b34801561042a57600080fd5b506101e5610439366004614f8d565b6111e3565b34801561044a57600080fd5b506101e5610459366004614faa565b611254565b61023261046c366004614cf7565b611513565b34801561047d57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610216565b3480156104af57600080fd5b506001546001600160a01b031661048b565b6102326104cf366004614c6b565b611524565b6102c26104e23660046149e0565b611530565b60008313806104f65750600082135b6105325760405162461bcd60e51b81526020600482015260086024820152674d30206f72204d3160c01b60448201526064015b60405180910390fd5b600080828060200190518101906105499190615015565b91509150600080828060200190518101906105649190615097565b91509150610573848233611542565b8560008813156105805750865b61058b8333836116fb565b5050505050505050565b60006105a18383611824565b9392505050565b6105b0611d98565b60005b82518110156107275760006105e08483815181106105d3576105d36150c5565b6020026020010151611e0f565b156105f65750476105f18382611e48565b6106a4565b838281518110610608576106086150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067c91906150db565b90506106a2848381518110610693576106936150c5565b60200260200101518483611f05565b505b826001600160a01b0316336001600160a01b03168584815181106106ca576106ca6150c5565b60200260200101516001600160a01b03167f3115d1449a7b732c986cba18244e897a450f61e1bb8d589cd2e69e6c8924f9f78460405161070c91815260200190565b60405180910390a4508061071f8161510a565b9150506105b3565b505050565b604080518082018252600080825260606020808401919091526001600160a01b038781168352600882528483205487821684526009835285842054878552600a84529386902086518088019097528054909216865260018201805460ff9283169792909516959491938401916107a190615123565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90615123565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b505050505081525050905093509350939050565b61086f848484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506104e792505050565b50505050565b60008060005a90506108878585611fef565b92505a6108949082615157565b9150509250929050565b60008060005a90506108af84612584565b92505a6108bc9082615157565b915050915091565b6108cc611d98565b6001600160a01b0382161561092d57600580546001600160a01b0319166001600160a01b0384169081179091556040519081527f347fade115440908839b750620f0add8f417b77a392657edd70b950373eda9c39060200160405180910390a15b6001600160a01b0381161561099b57600680546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527ff9c6fa562c9d8326f8518a29a53ef18ab03cd6b9eead73ac667c5e289354c73e910160405180910390a1505b5050565b6109a7611d98565b80156109b8576109b5612b08565b50565b6109b5612b59565b60028054036109e15760405162461bcd60e51b81526004016105299061516a565b600280556109ed612b9e565b60006109fd6101208301836151a1565b905011610a465760405162461bcd60e51b8152602060048201526017602482015276646174612073686f756c64206265206e6f74207a65726f60481b6044820152606401610529565b60008160a0013511610a9a5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742073686f756c642062652067726561746572207468616e2030006044820152606401610529565b60086000610aae6060840160408501614f8d565b6001600160a01b0316815260208101919091526040016000205460ff16610b085760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21031b0b63632b960911b6044820152606401610529565b600080610b2c8160a085013560c0860135610b276101408801886151a1565b612beb565b9050610b43610b3e6020850185614f8d565b611e0f565b15610c4b578260a001353414610b8f5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964206d73672e76616c756560781b6044820152606401610529565b9050806000610ba460a0850160808601614f8d565b6001600160a01b031614610c465760096000610bc660a0860160808701614f8d565b6001600160a01b0316815260208101919091526040016000205460ff16610bff5760405162461bcd60e51b8152600401610529906151e7565b610c18610c1260a0850160808601614f8d565b83612ca7565b610c41610c2b60a0850160808601614f8d565b610c3b6060860160408701614f8d565b84612da5565b600091505b610c8d565b610c67610c5b6020850185614f8d565b33308660a00135612eb9565b610c8d610c776020850185614f8d565b610c876060860160408701614f8d565b83612da5565b600080610ca06060860160408701614f8d565b6001600160a01b031684610cb86101208801886151a1565b604051610cc692919061521e565b60006040518083038185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b509150915081610d5c57610d43816040518060400160405280600f81526020016e2a3930b739b4ba21b937b9b9ab1a9d60891b815250612fe1565b60405162461bcd60e51b8152600401610529919061522e565b50610de39050610d6f6020850185614f8d565b610d7f6040860160208701614f8d565b610d8f6080870160608801614f8d565b60a0870135600060e0890135610da96101008b018b6151a1565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061325792505050565b5050600160025550565b610df5611d98565b60005b8251811015610727576000828281518110610e1557610e156150c5565b602002602001015110158015610e4657506103e8828281518110610e3b57610e3b6150c5565b602002602001015111155b610e875760405162461bcd60e51b8152602060048201526012602482015271066656520726174652069733a302d313030360741b6044820152606401610529565b828181518110610e9957610e996150c5565b602002602001015115610ecb57818181518110610eb857610eb86150c5565b6020026020010151600381905550610eec565b818181518110610edd57610edd6150c5565b60200260200101516004819055505b7f5fa95345cbe35dad70f67a9ca1430c22453a695590cb4fca05d58f637e85af4f838281518110610f1f57610f1f6150c5565b6020026020010151838381518110610f3957610f396150c5565b6020026020010151604051610f5a9291909115158252602082015260400190565b60405180910390a180610f6c8161510a565b915050610df8565b610f7c611d98565b848114610fba5760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206461746160a01b6044820152606401610529565b828114610ff85760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206461746160a01b6044820152606401610529565b8260005b81811015611115576040518060400160405280878784818110611021576110216150c5565b90506020020160208101906110369190614f8d565b6001600160a01b03168152602001858584818110611056576110566150c5565b905060200281019061106891906151a1565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250600a92508b90508a858181106110b5576110b56150c5565b6020908102929092013583525081810192909252604001600020825181546001600160a01b0319166001600160a01b039091161781559082015160018201906110fe9082615287565b50905050808061110d9061510a565b915050610ffc565b507f652c1af850dcc0b28fcb71cd9473023f56a89edd81bbe7b51056a04caa94002487878787878760405161114f969594939291906153fd565b60405180910390a150505050505050565b33806111746001546001600160a01b031690565b6001600160a01b0316146111da5760405162461bcd60e51b815260206004820152602760248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206e657720656044820152663c32b1baba37b960c91b6064820152608401610529565b6109b5816132bb565b6111eb611d98565b600180546001600160a01b0383166001600160a01b0319909116811790915561121c6000546001600160a01b031690565b6001600160a01b03167fdd01547fc40682edc3cd8d164d53f5a1ae6b46138a83f045658ed760823ddba860405160405180910390a350565b61125c611d98565b82156113585760005b8381101561131d5760086000868684818110611283576112836150c5565b90506020020160208101906112989190614f8d565b6001600160a01b03168152602081019190915260400160009081205460ff1615906008908787858181106112ce576112ce6150c5565b90506020020160208101906112e39190614f8d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113158161510a565b915050611265565b507fb05655746bd43b7fe3ccd9d28b7685b4c67ddc51e70890062b0f7f85dd692695848460405161134f9291906154b0565b60405180910390a15b801561086f576000816001600160401b03811115611378576113786148e1565b6040519080825280602002602001820160405280156113a1578160200160208202803683370190505b50905060005b828110156114d057600960008585848181106113c5576113c56150c5565b90506020020160208101906113da9190614f8d565b6001600160a01b03168152602081019190915260400160009081205460ff161590600990868685818110611410576114106150c5565b90506020020160208101906114259190614f8d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600990858584818110611465576114656150c5565b905060200201602081019061147a9190614f8d565b6001600160a01b03168152602081019190915260400160002054825160ff909116908390839081106114ae576114ae6150c5565b91151560209283029190910190910152806114c88161510a565b9150506113a7565b507f4a28b173d9bc739be3886d172e07fef80392184787fc6b92406ce0f0c05b7e63838383604051611504939291906154c4565b60405180910390a15050505050565b600061151e82612584565b92915050565b60006105a18383611fef565b60008060005a90506108878585611824565b600f60f884901c166000818152600a60209081526040808320815180830190925280546001600160a01b03168252600181018054929391929184019161158790615123565b80601f01602080910402602001604051908101604052809291908181526020018280546115b390615123565b80156116005780601f106115d557610100808354040283529160200191611600565b820191906000526020600020905b8154815290600101906020018083116115e357829003601f168201915b5050509190925250508151919250506001600160a01b03166116645760405162461bcd60e51b815260206004820152601960248201527f43616c6c6261636b2062616420706f6f6c20696e6465786564000000000000006044820152606401610529565b600081600001518583602001516040516020016116839392919061551f565b6040516020818303038152906040528051906020012060001c9050836001600160a01b0316816001600160a01b0316146116f35760405162461bcd60e51b815260206004820152601160248201527010d85b1b189858dac8189859081c1bdbdb607a1b6044820152606401610529565b505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916117579190615568565b6000604051808303816000865af19150503d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b50915091508180156117c35750805115806117c35750808060200190518101906117c39190615584565b61181d5760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657248656c7065723a205452414e534645525f544f4b454e5f46604482015264105253115160da1b6064820152608401610529565b5050505050565b600060028054036118475760405162461bcd60e51b81526004016105299061516a565b60028055611853612b9e565b4282101561188d5760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610529565b6001600f604085013560f81c16146000808080806118ab8987613315565b9450945094509450945061190f836000815181106118cb576118cb6150c5565b60200260200101518a8060e001906118e391906155a1565b60008181106118f4576118f46150c5565b90506020020160208101906119099190614f8d565b866116fb565b8515611ac85784156119f65761196a60408a01358461193160e08d018d6155a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152503092506137e6915050565b6119ef8261197e60408c0160208d01614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a08231906024015b602060405180830381865afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e991906150db565b90613af2565b9650611c45565b611a5060408a013584611a0c60e08d018d6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611a4b9250505060208e018e614f8d565b6137e6565b6119ef818460018651611a639190615157565b81518110611a7357611a736150c5565b60200260200101516001600160a01b03166370a082318c6000016020810190611a9c9190614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024016119a8565b600089604001356001600160a01b031663d06ca61f86866040518363ffffffff1660e01b8152600401611afc9291906155ea565b600060405180830381865afa158015611b19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b419190810190615641565b90508515611baf57611b948185611b5b60e08e018e6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250613b48915050565b611ba88361197e60408d0160208e01614f8d565b9750611c43565b611c198185611bc160e08e018e6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508d6000016020810190611c149190614f8d565b613b48565b8060018251611c289190615157565b81518110611c3857611c386150c5565b602002602001015197505b505b8860800135871015611c695760405162461bcd60e51b8152600401610529906156c6565b8415611c9e57611c88611c8260408b0160208c01614f8d565b88613d40565b611c9e611c9860208b018b614f8d565b88611e48565b5050505050600084806101200190611cb691906151a1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929350611d8b9250611cff91505060c08701876155a1565b6000818110611d1057611d106150c5565b9050602002016020810190611d259190614f8d565b611d3260c08801886155a1565b6001611d4160c08b018b6155a1565b611d4c929150615157565b818110611d5b57611d5b6150c5565b9050602002016020810190611d709190614f8d565b611d7d6020890189614f8d565b886060013587600087613257565b5050600160025592915050565b33611dab6000546001600160a01b031690565b6001600160a01b031614611e0d5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652065786563756044820152623a37b960e91b6064820152608401610529565b565b60006001600160a01b038216158061151e57506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1492915050565b604080516000808252602082019092526001600160a01b038416908390604051611e729190615568565b60006040518083038185875af1925050503d8060008114611eaf576040519150601f19603f3d011682016040523d82523d6000602084013e611eb4565b606091505b50509050806107275760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c4544006044820152606401610529565b6000806000856001600160a01b031663a9059cbb8686604051602401611f409291906001600160a01b03929092168252602082015260400190565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051611f799190615568565b6000604051808303816000865af19150503d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b5091509150818015611fe5575080511580611fe5575080806020019051810190611fe59190615584565b9695505050505050565b600060028054036120125760405162461bcd60e51b81526004016105299061516a565b6002805561201e612b9e565b600061202d60208401846151a1565b9050116120765760405162461bcd60e51b8152602060048201526017602482015276646174612073686f756c64206265206e6f74207a65726f60481b6044820152606401610529565b60008360800135116120ca5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742073686f756c642062652067726561746572207468616e2030006044820152606401610529565b60006120dc6060850160408601614f8d565b6001600160a01b03160361213c5760405162461bcd60e51b815260206004820152602160248201527f72656365697665722073686f756c64206265206e6f74206164647265737328306044820152602960f81b6064820152608401610529565b60008360a00135116121a15760405162461bcd60e51b815260206004820152602860248201527f6d696e52657475726e416d6f756e742073686f756c6420626520677265617465604482015267072207468616e20360c41b6064820152608401610529565b600960006121b56080860160608701614f8d565b6001600160a01b0316815260208101919091526040016000205460ff1661221e5760405162461bcd60e51b815260206004820152601760248201527f696e76616c6964207772617070656420616464726573730000000000000000006044820152606401610529565b600061223d6001608086013560c0870135610b276101008901896151a1565b60055490915060009081906001600160a01b0316612261610b3e6020890189614f8d565b156122b557866080013534146122ad5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964206d73672e76616c756560781b6044820152606401610529565b8392506122e8565b6122d16122c56020890189614f8d565b33308a60800135612eb9565b6122e86122e16020890189614f8d565b82866116fb565b6122fb610b3e6040890160208a01614f8d565b15612321576123106060880160408901614f8d565b6001600160a01b03163191506123ba565b6123316040880160208901614f8d565b6001600160a01b03166370a0823161234f60608a0160408b01614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b791906150db565b91505b600080826001600160a01b031685633f3204d28a6040516024016123de91906156f3565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516124179190615568565b60006040518083038185875af1925050503d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b50915091508161249157610d43816040518060400160405280600c81526020016b2a3930b739b4ba29bbb0b81d60a11b815250612fe1565b506124a79050610b3e6040890160208a01614f8d565b156124d7576124d0826124c060608a0160408b01614f8d565b6001600160a01b03163190613af2565b945061250c565b612509826124eb60408a0160208b01614f8d565b6001600160a01b03166370a08231611a9c60608c0160408d01614f8d565b94505b8660a001358510156125305760405162461bcd60e51b8152600401610529906156c6565b6125756125406020890189614f8d565b61255060408a0160208b01614f8d565b61256060608b0160408c01614f8d565b60808b0135896000610da960e08f018f6151a1565b50505050600160025592915050565b600060028054036125a75760405162461bcd60e51b81526004016105299061516a565b600280556125b3612b9e565b60006125c36101008401846155a1565b9050116126005760405162461bcd60e51b815260206004820152600b60248201526a456d70747920706f6f6c7360a81b6044820152606401610529565b428260e00135101561263e5760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610529565b600960006126526080850160608601614f8d565b6001600160a01b0316815260208101919091526040016000205460ff1661268b5760405162461bcd60e51b8152600401610529906151e7565b600061269a6020840184614f8d565b905060006126ae6040850160208601614f8d565b905060006126cf6001608087013560c0880135610b276101208a018a6151a1565b90506000806126e4610b3e6020890189614f8d565b15612760576126f96080880160608901614f8d565b9450866080013534146127425760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206d73672e76616c756560781b6044820152606401610529565b61275b6127556080890160608a01614f8d565b84612ca7565b612770565b6127706122c56020890189614f8d565b612783610b3e6040890160208a01614f8d565b1561281f576127986080880160608901614f8d565b93506127aa6080880160608901614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281491906150db565b9150600190506128b8565b61282f6040880160208901614f8d565b6001600160a01b03166370a0823161284d60608a0160408b01614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b591906150db565b91505b60006128c86101008901896155a1565b91503090506060600183111561297f57876000805b858110156129745760006128f56101008f018f6155a1565b83818110612905576129056150c5565b905060200201359050612919848483613e58565b95509350612928600188615157565b82148015612934575087155b15612952578d604001602081019061294c9190614f8d565b95508a92505b61295e8682878d614144565b995050808061296c9061510a565b9150506128dd565b50879a5050506129ff565b6129af88886129926101008e018e6155a1565b60008181106129a3576129a36150c5565b90506020020135613e58565b91508490506129cb576129c860608b0160408c01614f8d565b91505b6129fc826129dd6101008d018d6155a1565b60008181106129ee576129ee6150c5565b905060200201358389614144565b98505b5050508015612a7957612a1c8261197e60808a0160608b01614f8d565b95508660a00135861015612a425760405162461bcd60e51b8152600401610529906156c6565b612a5b612a556080890160608a01614f8d565b87613d40565b612a74612a6e6060890160408a01614f8d565b87611e48565b612ab3565b612a8d826124eb60408a0160208b01614f8d565b95508660a00135861015612ab35760405162461bcd60e51b8152600401610529906156c6565b612af9612ac36020890189614f8d565b612ad360408a0160208b01614f8d565b612ae360608b0160408c01614f8d565b60808b01358a6000610da96101408f018f6151a1565b50505050506001600255919050565b612b10612b9e565b6001805460ff60a81b1916600160a81b1790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b612b616142fc565b6001805460ff60a81b191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602001612b4f565b600154600160a81b900460ff1615611e0d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610529565b6000808615612c1c57612c15612710612c0f6003548961434c90919063ffffffff16565b906143b3565b9050612c3a565b612c37612710612c0f6004548961434c90919063ffffffff16565b90505b80851015612c9257612c4e86868686614402565b612c925760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964207369676e61747572652066656560581b6044820152606401610529565b612c9c8686613af2565b979650505050505050565b60408051600481526024810182526020810180516001600160e01b0316630d0e30db60e41b179052905160009182916001600160a01b038616918591612ced9190615568565b60006040518083038185875af1925050503d8060008114612d2a576040519150601f19603f3d011682016040523d82523d6000602084013e612d2f565b606091505b5091509150818015612d59575080511580612d59575080806020019051810190612d599190615584565b61086f5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a204445504f5349545f4641494c454400006044820152606401610529565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1790529151600092839290871691612e019190615568565b6000604051808303816000865af19150503d8060008114612e3e576040519150601f19603f3d011682016040523d82523d6000602084013e612e43565b606091505b5091509150818015612e6d575080511580612e6d575080806020019051810190612e6d9190615584565b61181d5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a20415050524f56455f4641494c454400006044820152606401610529565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290881691612f1d9190615568565b6000604051808303816000865af19150503d8060008114612f5a576040519150601f19603f3d011682016040523d82523d6000602084013e612f5f565b606091505b5091509150818015612f89575080511580612f89575080806020019051810190612f899190615584565b6116f35760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b6064820152608401610529565b6060604483511015801561301a575082600081518110613003576130036150c5565b6020910101516001600160f81b031916600160fb1b145b801561304b575082600181518110613034576130346150c5565b6020910101516001600160f81b03191660c360f81b145b801561307c575082600281518110613065576130656150c5565b6020910101516001600160f81b031916607960f81b145b80156130ad575082600381518110613096576130966150c5565b6020910101516001600160f81b031916600560fd1b145b15613137576044838101805190916130c5919061573f565b8451101561310d5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103932bb32b93a103932b0b9b7b760591b6044820152606401610529565b8281604051602001613120929190615752565b60405160208183030381529060405291505061151e565b8251602414801561316d575082600081518110613156576131566150c5565b6020910101516001600160f81b031916602760f91b145b801561319e575082600181518110613187576131876150c5565b6020910101516001600160f81b031916600960fb1b145b80156131cf5750826002815181106131b8576131b86150c5565b6020910101516001600160f81b031916607b60f81b145b80156132005750826003815181106131e9576131e96150c5565b6020910101516001600160f81b031916607160f81b145b156132255760248301518261321482614576565b6040516020016131209291906157a1565b8161322f8461459e565b6040516020016132409291906157d6565b604051602081830303815290604052905092915050565b846001600160a01b0316866001600160a01b0316886001600160a01b03167f2251435bd151cd72851a82be055bf6d1c3d7f34d08d56493dddf874229b8e897878787876040516132aa9493929190615827565b60405180910390a450505050505050565b600180546001600160a01b0319908116909155600080546001600160a01b03848116938216841783556040519116929183917f88436636ea40d5bb1bcc55ff9cd54788af71da886f4147a87f199adcca733d4d9190a35050565b6000806060818061332960e08801886155a1565b6133359150600161573f565b61334260c08901896155a1565b9050146133805760405162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840e0c2e8d60a31b6044820152606401610529565b6009600061339460408a0160208b01614f8d565b6001600160a01b0316815260208101919091526040016000205460ff166133cd5760405162461bcd60e51b8152600401610529906151e7565b6133ea6001606089013560a08a0135610b276101008c018c6151a1565b935060006133fb60c08901896155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092018290525093945084925060019150613441905060c08c018c6155a1565b61344c929150615157565b8151811061345c5761345c6150c5565b6020026020010151905061349f898060c0019061347991906155a1565b600081811061348a5761348a6150c5565b9050602002016020810190610b3e9190614f8d565b1561354457886060013534146134eb5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206d73672e76616c756560781b6044820152606401610529565b6134fb60408a0160208b01614f8d565b8260008151811061350e5761350e6150c5565b6001600160a01b0390921660209283029190910182015261353f906135399060408c01908c01614f8d565b87612ca7565b613671565b871561365b578160008151811061355d5761355d6150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156135ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d191906150db565b95506135fd826000815181106135e9576135e96150c5565b602002602001015133308c60600135612eb9565b6136548960a001356119e9888560008151811061361c5761361c6150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a08231906024016119a8565b9550613671565b613671826000815181106135e9576135e96150c5565b61367a81611e0f565b1561374a5761368f60408a0160208b01614f8d565b826001845161369e9190615157565b815181106136ae576136ae6150c5565b6001600160a01b03909216602092830291909101820152600197506136d99060408b01908b01614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa15801561371f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374391906150db565b93506137d7565b87156137d7576001600160a01b0381166370a0823161376c60208c018c614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156137b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d491906150db565b92505b81945050509295509295909350565b60005b600184516137f79190615157565b81101561181d57600080858381518110613813576138136150c5565b602002602001015186846001613829919061573f565b81518110613839576138396150c5565b6020026020010151915091506000816001600160a01b0316836001600160a01b03161061386757818361386a565b82825b5090506000868581518110613881576138816150c5565b60200260200101519050600080600080846001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156138cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f39190615863565b506001600160701b031691506001600160701b03169150600080876001600160a01b03168a6001600160a01b03161461392d578284613930565b83835b6040516370a0823160e01b81526001600160a01b038a8116600483015292945090925061396b918491908d16906370a08231906024016119a8565b95508e6001600160a01b031663054d50d48784846040518463ffffffff1660e01b81526004016139ae939291909283526020830191909152604082015260600190565b602060405180830381865afa1580156139cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ef91906150db565b945050505050600080856001600160a01b0316886001600160a01b031614613a1957826000613a1d565b6000835b91509150600060028d51613a319190615157565b8a10613a3d578a613a62565b8b613a498b600161573f565b81518110613a5957613a596150c5565b60200260200101515b6040805160008152602081019182905263022c0d9f60e01b9091529091506001600160a01b0387169063022c0d9f90613aa490869086908690602481016158b3565b600060405180830381600087803b158015613abe57600080fd5b505af1158015613ad2573d6000803e3d6000fd5b505050505050505050505050508080613aea9061510a565b9150506137e9565b600082613aff8382615157565b915081111561151e5760405162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b6044820152606401610529565b60005b60018451613b599190615157565b81101561181d57600080858381518110613b7557613b756150c5565b602002602001015186846001613b8b919061573f565b81518110613b9b57613b9b6150c5565b6020026020010151915091506000816001600160a01b0316836001600160a01b031610613bc9578183613bcc565b82825b509050600088613bdd86600161573f565b81518110613bed57613bed6150c5565b60200260200101519050600080836001600160a01b0316866001600160a01b031614613c1b57826000613c1f565b6000835b91509150600060028b51613c339190615157565b8810613c3f5788613c64565b89613c4b89600161573f565b81518110613c5b57613c5b6150c5565b60200260200101515b9050898881518110613c7857613c786150c5565b60200260200101516001600160a01b031663022c0d9f84848460006001600160401b03811115613caa57613caa6148e1565b6040519080825280601f01601f191660200182016040528015613cd4576020820181803683370190505b506040518563ffffffff1660e01b8152600401613cf494939291906158b3565b600060405180830381600087803b158015613d0e57600080fd5b505af1158015613d22573d6000803e3d6000fd5b50505050505050505050508080613d389061510a565b915050613b4b565b600080836001600160a01b03166000632e1a7d4d85604051602401613d6791815260200190565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051613da09190615568565b60006040518083038185875af1925050503d8060008114613ddd576040519150601f19603f3d011682016040523d82523d6000602084013e613de2565b606091505b5091509150818015613e0c575080511580613e0c575080806020019051810190613e0c9190615584565b61086f5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a2057495448445241575f4641494c4544006044820152606401610529565b6000606060008390506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ec591906158e0565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f2b91906158e0565b90506000836001600160a01b031663ddca3f436040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f9191906158fd565b604080516001600160a01b03808716602083015285169181019190915262ffffff8216606082015290915060009060800160408051601f1981840301815291905280516020909101209050600160ff1b881615801561409257846001600160a01b03168b6001600160a01b03161461401b5760405162461bcd60e51b815260040161052990615922565b6001600160a01b038a161561405b57836001600160a01b03168a6001600160a01b03161461405b5760405162461bcd60e51b815260040161052990615922565b604080516001600160a01b038716602082015290810183905293975087936060016040516020818303038152906040529650614136565b836001600160a01b03168b6001600160a01b0316146140c35760405162461bcd60e51b815260040161052990615922565b6001600160a01b038a161561410357846001600160a01b03168a6001600160a01b0316146141035760405162461bcd60e51b815260040161052990615922565b604080516001600160a01b0386166020820152908101839052949750879460600160405160208183030381529060405296505b505050505050935093915050565b6000600160ff1b8416158015614221576000856001600160a01b031663128acb08888461417088614785565b6141806401000276a36001615944565b8b8b60405160200161419392919061596b565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016141c2959493929190615984565b60408051808303816000875af11580156141e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061420491906159bf565b91505061421981614214906159e3565b6147f3565b9250506142f3565b6000856001600160a01b031663128acb08888461423d88614785565b61425c600173fffd8963efd1fc6a506488495d951d5263988d266159ff565b8b8b60405160200161426f92919061596b565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161429e959493929190615984565b60408051808303816000875af11580156142bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142e091906159bf565b5090506142ef614214826159e3565b9250505b50949350505050565b600154600160a81b900460ff16611e0d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610529565b6000811580614370575082826143628183615a1f565b925061436e9083615a36565b145b61151e5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b6044820152606401610529565b6000816000036143f85760405162461bcd60e51b815260206004820152601060248201526f64732d6d6174682d6469762d7a65726f60801b6044820152606401610529565b6105a18284615a36565b600754604080517f048f880a603b1aab0e626a287e33d603417b3d53a36f7527b7c86365bf7def4f602082015233918101919091526060810186905260808101859052600091829160a0016040516020818303038152906040528051906020012060405160200161448a92919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060008060006144e687878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061484592505050565b92509250925060006001858585856040516000815260200160405260405161452a949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa15801561454c573d6000803e3d6000fd5b5050604051601f1901516006546001600160a01b039081169116149b9a5050505050505050505050565b606061151e8260405160200161458e91815260200190565b6040516020818303038152906040525b80516060906f181899199a1a9b1b9c1cb0b131b232b360811b906000906145c6906002615a1f565b6145d190600261573f565b6001600160401b038111156145e8576145e86148e1565b6040519080825280601f01601f191660200182016040528015614612576020820181803683370190505b509050600360fc1b8160008151811061462d5761462d6150c5565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061465c5761465c6150c5565b60200101906001600160f81b031916908160001a90535060005b845181101561477d57826004868381518110614694576146946150c5565b01602001516001600160f81b031916901c60f81c601081106146b8576146b86150c5565b1a60f81b826146c8836002615a1f565b6146d390600261573f565b815181106146e3576146e36150c5565b60200101906001600160f81b031916908160001a9053508285828151811061470d5761470d6150c5565b60209101015160f81c600f1660108110614729576147296150c5565b1a60f81b82614739836002615a1f565b61474490600361573f565b81518110614754576147546150c5565b60200101906001600160f81b031916908160001a905350806147758161510a565b915050614676565b509392505050565b60006001600160ff1b038211156147ef5760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b6064820152608401610529565b5090565b6000808212156147ef5760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f7369746976656044820152606401610529565b6000806000835160411461489b5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610529565b5050506020810151604082015160609092015160001a92909190565b600080858511156148c757600080fd5b838611156148d457600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561491f5761491f6148e1565b604052919050565b60006001600160401b03821115614940576149406148e1565b50601f01601f191660200190565b60008060006060848603121561496357600080fd5b833592506020840135915060408401356001600160401b0381111561498757600080fd5b8401601f8101861361499857600080fd5b80356149ab6149a682614927565b6148f7565b8181528760208385010111156149c057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600080604083850312156149f357600080fd5b82356001600160401b03811115614a0957600080fd5b83016101408186031215614a1c57600080fd5b946020939093013593505050565b60006001600160401b03821115614a4357614a436148e1565b5060051b60200190565b6001600160a01b03811681146109b557600080fd5b8035614a6d81614a4d565b919050565b60008060408385031215614a8557600080fd5b82356001600160401b03811115614a9b57600080fd5b8301601f81018513614aac57600080fd5b80356020614abc6149a683614a2a565b82815260059290921b83018101918181019088841115614adb57600080fd5b938201935b83851015614b02578435614af381614a4d565b82529382019390820190614ae0565b9550614b119050868201614a62565b93505050509250929050565b600080600060608486031215614b3257600080fd5b8335614b3d81614a4d565b92506020840135614b4d81614a4d565b929592945050506040919091013590565b60005b83811015614b79578181015183820152602001614b61565b50506000910152565b60008151808452614b9a816020860160208601614b5e565b601f01601f19169290920160200192915050565b831515815282151560208201526060604082015260018060a01b0382511660608201526000602083015160406080840152611fe560a0840182614b82565b60008060008060608587031215614c0257600080fd5b843593506020850135925060408501356001600160401b0380821115614c2757600080fd5b818701915087601f830112614c3b57600080fd5b813581811115614c4a57600080fd5b886020828501011115614c5c57600080fd5b95989497505060200194505050565b60008060408385031215614c7e57600080fd5b82356001600160401b0380821115614c9557600080fd5b908401906101208287031215614caa57600080fd5b90925060208401359080821115614cc057600080fd5b50830160408186031215614cd357600080fd5b809150509250929050565b60006101608284031215614cf157600080fd5b50919050565b600060208284031215614d0957600080fd5b81356001600160401b03811115614d1f57600080fd5b614d2b84828501614cde565b949350505050565b60008060408385031215614d4657600080fd5b8235614d5181614a4d565b91506020830135614cd381614a4d565b80151581146109b557600080fd5b600060208284031215614d8157600080fd5b81356105a181614d61565b600082601f830112614d9d57600080fd5b81356020614dad6149a683614a2a565b82815260059290921b84018101918181019086841115614dcc57600080fd5b8286015b84811015614de75780358352918301918301614dd0565b509695505050505050565b60008060408385031215614e0557600080fd5b82356001600160401b0380821115614e1c57600080fd5b818501915085601f830112614e3057600080fd5b81356020614e406149a683614a2a565b82815260059290921b84018101918181019089841115614e5f57600080fd5b948201945b83861015614e86578535614e7781614d61565b82529482019490820190614e64565b96505086013592505080821115614e9c57600080fd5b5061089485828601614d8c565b60008083601f840112614ebb57600080fd5b5081356001600160401b03811115614ed257600080fd5b6020830191508360208260051b8501011115614eed57600080fd5b9250929050565b60008060008060008060608789031215614f0d57600080fd5b86356001600160401b0380821115614f2457600080fd5b614f308a838b01614ea9565b90985096506020890135915080821115614f4957600080fd5b614f558a838b01614ea9565b90965094506040890135915080821115614f6e57600080fd5b50614f7b89828a01614ea9565b979a9699509497509295939492505050565b600060208284031215614f9f57600080fd5b81356105a181614a4d565b60008060008060408587031215614fc057600080fd5b84356001600160401b0380821115614fd757600080fd5b614fe388838901614ea9565b90965094506020870135915080821115614ffc57600080fd5b5061500987828801614ea9565b95989497509550505050565b6000806040838503121561502857600080fd5b8251915060208301516001600160401b0381111561504557600080fd5b8301601f8101851361505657600080fd5b80516150646149a682614927565b81815286602083850101111561507957600080fd5b61508a826020830160208601614b5e565b8093505050509250929050565b600080604083850312156150aa57600080fd5b82516150b581614a4d565b6020939093015192949293505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156150ed57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60006001820161511c5761511c6150f4565b5060010190565b600181811c9082168061513757607f821691505b602082108103614cf157634e487b7160e01b600052602260045260246000fd5b8181038181111561151e5761151e6150f4565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000808335601e198436030181126151b857600080fd5b8301803591506001600160401b038211156151d257600080fd5b602001915036819003821315614eed57600080fd5b60208082526017908201527f496e76616c696420777261707065642061646472657373000000000000000000604082015260600190565b8183823760009101908152919050565b6020815260006105a16020830184614b82565b601f82111561072757600081815260208120601f850160051c810160208610156152685750805b601f850160051c820191505b818110156116f357828155600101615274565b81516001600160401b038111156152a0576152a06148e1565b6152b4816152ae8454615123565b84615241565b602080601f8311600181146152e957600084156152d15750858301515b600019600386901b1c1916600185901b1785556116f3565b600085815260208120601f198616915b82811015615318578886015182559484019460019091019084016152f9565b50858210156153365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8183526000602080850194508260005b8581101561538457813561536981614a4d565b6001600160a01b031687529582019590820190600101615356565b509495945050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000808335601e198436030181126153cf57600080fd5b83016020810192503590506001600160401b038111156153ee57600080fd5b803603821315614eed57600080fd5b6060808252810186905260006001600160fb1b0387111561541d57600080fd5b8660051b80896080850137808301905060206080848303018185015261544760808301888a615346565b84810360408601528581529150808201600586901b830182018760005b8881101561549e57858303601f1901845261547f828b6153b8565b61548a85828461538f565b958701959450505090840190600101615464565b50909c9b505050505050505050505050565b602081526000614d2b602083018486615346565b6040815260006154d8604083018587615346565b82810360208481019190915284518083528582019282019060005b818110156155115784511515835293830193918301916001016154f3565b509098975050505050505050565b60ff60f81b81526bffffffffffffffffffffffff198460601b16600182015282601582015260008251615559816035850160208701614b5e565b91909101603501949350505050565b6000825161557a818460208701614b5e565b9190910192915050565b60006020828403121561559657600080fd5b81516105a181614d61565b6000808335601e198436030181126155b857600080fd5b8301803591506001600160401b038211156155d257600080fd5b6020019150600581901b3603821315614eed57600080fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b818110156156345784516001600160a01b03168352938301939183019160010161560f565b5090979650505050505050565b6000602080838503121561565457600080fd5b82516001600160401b0381111561566a57600080fd5b8301601f8101851361567b57600080fd5b80516156896149a682614a2a565b81815260059190911b820183019083810190878311156156a857600080fd5b928401925b82841015612c9c578351825292840192908401906156ad565b602080825260139082015272151bdbc81b1a5d1d1b19481c9958d95a5d9959606a1b604082015260600190565b602081526000823561570481614a4d565b6001600160a01b0316602083810191909152615722908401846153b8565b60408085015261573660608501828461538f565b95945050505050565b8082018082111561151e5761151e6150f4565b60008351615764818460208801614b5e565b6508ae4e4dee4560d31b9083019081528351615787816006840160208801614b5e565b602960f81b60069290910191820152600701949350505050565b600083516157b3818460208801614b5e565b650a0c2dcd2c6560d31b9083019081528351615787816006840160208801614b5e565b600083516157e8818460208801614b5e565b670aadcd6dcdeeedc560c31b908301908152835161580d816008840160208801614b5e565b602960f81b60089290910191820152600901949350505050565b848152836020820152826040820152608060608201526000611fe56080830184614b82565b80516001600160701b0381168114614a6d57600080fd5b60008060006060848603121561587857600080fd5b6158818461584c565b925061588f6020850161584c565b9150604084015163ffffffff811681146158a857600080fd5b809150509250925092565b84815283602082015260018060a01b0383166040820152608060608201526000611fe56080830184614b82565b6000602082840312156158f257600080fd5b81516105a181614a4d565b60006020828403121561590f57600080fd5b815162ffffff811681146105a157600080fd5b602080825260089082015267109859081c1bdbdb60c21b604082015260600190565b6001600160a01b03818116838216019080821115615964576159646150f4565b5092915050565b828152604060208201526000614d2b6040830184614b82565b6001600160a01b0386811682528515156020830152604082018590528316606082015260a060808201819052600090612c9c90830184614b82565b600080604083850312156159d257600080fd5b505080516020909101519092909150565b6000600160ff1b82016159f8576159f86150f4565b5060000390565b6001600160a01b03828116828216039080821115615964576159646150f4565b808202811582820484141761151e5761151e6150f4565b600082615a5357634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220397b9a7e7c4527e2b680d32648a65e1c3283e7250c6c15690d931ae20fb8620964736f6c63430008120033
Deployed Bytecode
0x60806040526004361061016a5760003560e01c80636fbf72f9116100d1578063b93c0beb1161008a578063d63234e011610064578063d63234e0146104a3578063d808d889146104c1578063fa461e331461028f578063fa9ec7af146104d4576101a9565b8063b93c0beb1461043e578063b9b5149b1461045e578063c34c08e514610471576101a9565b80636fbf72f91461037d5780637e467ecf146103955780637ec753fe146103c957806392bcc8be146103e957806394d3d79314610409578063afed2d0e1461041e576101a9565b80633644e515116101235780633644e515146102d75780634c42342f146102ed578063524d3685146103005780635c975abb146103205780635d4fead31461034a5780636b3ec4161461036a576101a9565b80630ced9fb9146101e75780630dc4bdae1461021f5780630e8cc705146102405780631975b0961461026057806323a69e751461028f5780632adb806f146102af576101a9565b366101a957604080513381523460208201527f7784f8d436dc514f0690e472c7e2d7f660a73e504c69b2350f6be5a5f02432ef910160405180910390a1005b3480156101b557600080fd5b50600080806101c736600481846148b7565b8101906101d4919061494e565b9250925092506101e58383836104e7565b005b3480156101f357600080fd5b50600554600654604080516001600160a01b039384168152929091166020830152015b60405180910390f35b61023261022d3660046149e0565b610595565b604051908152602001610216565b34801561024c57600080fd5b506101e561025b366004614a72565b6105a8565b34801561026c57600080fd5b5061028061027b366004614b1d565b61072c565b60405161021693929190614bae565b34801561029b57600080fd5b506101e56102aa366004614bec565b61082e565b6102c26102bd366004614c6b565b610875565b60408051928352602083019190915201610216565b3480156102e357600080fd5b5061023260075481565b6102c26102fb366004614cf7565b61089e565b34801561030c57600080fd5b506101e561031b366004614d33565b6108c4565b34801561032c57600080fd5b50600154600160a81b900460ff166040519015158152602001610216565b34801561035657600080fd5b506101e5610365366004614d6f565b61099f565b6101e5610378366004614cf7565b6109c0565b34801561038957600080fd5b506003546004546102c2565b3480156103a157600080fd5b506102327f048f880a603b1aab0e626a287e33d603417b3d53a36f7527b7c86365bf7def4f81565b3480156103d557600080fd5b506101e56103e4366004614df2565b610ded565b3480156103f557600080fd5b506101e5610404366004614ef4565b610f74565b34801561041557600080fd5b506101e5611160565b34801561042a57600080fd5b506101e5610439366004614f8d565b6111e3565b34801561044a57600080fd5b506101e5610459366004614faa565b611254565b61023261046c366004614cf7565b611513565b34801561047d57600080fd5b506000546001600160a01b03165b6040516001600160a01b039091168152602001610216565b3480156104af57600080fd5b506001546001600160a01b031661048b565b6102326104cf366004614c6b565b611524565b6102c26104e23660046149e0565b611530565b60008313806104f65750600082135b6105325760405162461bcd60e51b81526020600482015260086024820152674d30206f72204d3160c01b60448201526064015b60405180910390fd5b600080828060200190518101906105499190615015565b91509150600080828060200190518101906105649190615097565b91509150610573848233611542565b8560008813156105805750865b61058b8333836116fb565b5050505050505050565b60006105a18383611824565b9392505050565b6105b0611d98565b60005b82518110156107275760006105e08483815181106105d3576105d36150c5565b6020026020010151611e0f565b156105f65750476105f18382611e48565b6106a4565b838281518110610608576106086150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa158015610658573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067c91906150db565b90506106a2848381518110610693576106936150c5565b60200260200101518483611f05565b505b826001600160a01b0316336001600160a01b03168584815181106106ca576106ca6150c5565b60200260200101516001600160a01b03167f3115d1449a7b732c986cba18244e897a450f61e1bb8d589cd2e69e6c8924f9f78460405161070c91815260200190565b60405180910390a4508061071f8161510a565b9150506105b3565b505050565b604080518082018252600080825260606020808401919091526001600160a01b038781168352600882528483205487821684526009835285842054878552600a84529386902086518088019097528054909216865260018201805460ff9283169792909516959491938401916107a190615123565b80601f01602080910402602001604051908101604052809291908181526020018280546107cd90615123565b801561081a5780601f106107ef5761010080835404028352916020019161081a565b820191906000526020600020905b8154815290600101906020018083116107fd57829003601f168201915b505050505081525050905093509350939050565b61086f848484848080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152506104e792505050565b50505050565b60008060005a90506108878585611fef565b92505a6108949082615157565b9150509250929050565b60008060005a90506108af84612584565b92505a6108bc9082615157565b915050915091565b6108cc611d98565b6001600160a01b0382161561092d57600580546001600160a01b0319166001600160a01b0384169081179091556040519081527f347fade115440908839b750620f0add8f417b77a392657edd70b950373eda9c39060200160405180910390a15b6001600160a01b0381161561099b57600680546001600160a01b038381166001600160a01b031983168117909355604080519190921680825260208201939093527ff9c6fa562c9d8326f8518a29a53ef18ab03cd6b9eead73ac667c5e289354c73e910160405180910390a1505b5050565b6109a7611d98565b80156109b8576109b5612b08565b50565b6109b5612b59565b60028054036109e15760405162461bcd60e51b81526004016105299061516a565b600280556109ed612b9e565b60006109fd6101208301836151a1565b905011610a465760405162461bcd60e51b8152602060048201526017602482015276646174612073686f756c64206265206e6f74207a65726f60481b6044820152606401610529565b60008160a0013511610a9a5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742073686f756c642062652067726561746572207468616e2030006044820152606401610529565b60086000610aae6060840160408501614f8d565b6001600160a01b0316815260208101919091526040016000205460ff16610b085760405162461bcd60e51b815260206004820152600e60248201526d34b73b30b634b21031b0b63632b960911b6044820152606401610529565b600080610b2c8160a085013560c0860135610b276101408801886151a1565b612beb565b9050610b43610b3e6020850185614f8d565b611e0f565b15610c4b578260a001353414610b8f5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964206d73672e76616c756560781b6044820152606401610529565b9050806000610ba460a0850160808601614f8d565b6001600160a01b031614610c465760096000610bc660a0860160808701614f8d565b6001600160a01b0316815260208101919091526040016000205460ff16610bff5760405162461bcd60e51b8152600401610529906151e7565b610c18610c1260a0850160808601614f8d565b83612ca7565b610c41610c2b60a0850160808601614f8d565b610c3b6060860160408701614f8d565b84612da5565b600091505b610c8d565b610c67610c5b6020850185614f8d565b33308660a00135612eb9565b610c8d610c776020850185614f8d565b610c876060860160408701614f8d565b83612da5565b600080610ca06060860160408701614f8d565b6001600160a01b031684610cb86101208801886151a1565b604051610cc692919061521e565b60006040518083038185875af1925050503d8060008114610d03576040519150601f19603f3d011682016040523d82523d6000602084013e610d08565b606091505b509150915081610d5c57610d43816040518060400160405280600f81526020016e2a3930b739b4ba21b937b9b9ab1a9d60891b815250612fe1565b60405162461bcd60e51b8152600401610529919061522e565b50610de39050610d6f6020850185614f8d565b610d7f6040860160208701614f8d565b610d8f6080870160608801614f8d565b60a0870135600060e0890135610da96101008b018b6151a1565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061325792505050565b5050600160025550565b610df5611d98565b60005b8251811015610727576000828281518110610e1557610e156150c5565b602002602001015110158015610e4657506103e8828281518110610e3b57610e3b6150c5565b602002602001015111155b610e875760405162461bcd60e51b8152602060048201526012602482015271066656520726174652069733a302d313030360741b6044820152606401610529565b828181518110610e9957610e996150c5565b602002602001015115610ecb57818181518110610eb857610eb86150c5565b6020026020010151600381905550610eec565b818181518110610edd57610edd6150c5565b60200260200101516004819055505b7f5fa95345cbe35dad70f67a9ca1430c22453a695590cb4fca05d58f637e85af4f838281518110610f1f57610f1f6150c5565b6020026020010151838381518110610f3957610f396150c5565b6020026020010151604051610f5a9291909115158252602082015260400190565b60405180910390a180610f6c8161510a565b915050610df8565b610f7c611d98565b848114610fba5760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206461746160a01b6044820152606401610529565b828114610ff85760405162461bcd60e51b815260206004820152600c60248201526b696e76616c6964206461746160a01b6044820152606401610529565b8260005b81811015611115576040518060400160405280878784818110611021576110216150c5565b90506020020160208101906110369190614f8d565b6001600160a01b03168152602001858584818110611056576110566150c5565b905060200281019061106891906151a1565b8080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201829052509390945250600a92508b90508a858181106110b5576110b56150c5565b6020908102929092013583525081810192909252604001600020825181546001600160a01b0319166001600160a01b039091161781559082015160018201906110fe9082615287565b50905050808061110d9061510a565b915050610ffc565b507f652c1af850dcc0b28fcb71cd9473023f56a89edd81bbe7b51056a04caa94002487878787878760405161114f969594939291906153fd565b60405180910390a150505050505050565b33806111746001546001600160a01b031690565b6001600160a01b0316146111da5760405162461bcd60e51b815260206004820152602760248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206e657720656044820152663c32b1baba37b960c91b6064820152608401610529565b6109b5816132bb565b6111eb611d98565b600180546001600160a01b0383166001600160a01b0319909116811790915561121c6000546001600160a01b031690565b6001600160a01b03167fdd01547fc40682edc3cd8d164d53f5a1ae6b46138a83f045658ed760823ddba860405160405180910390a350565b61125c611d98565b82156113585760005b8381101561131d5760086000868684818110611283576112836150c5565b90506020020160208101906112989190614f8d565b6001600160a01b03168152602081019190915260400160009081205460ff1615906008908787858181106112ce576112ce6150c5565b90506020020160208101906112e39190614f8d565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113158161510a565b915050611265565b507fb05655746bd43b7fe3ccd9d28b7685b4c67ddc51e70890062b0f7f85dd692695848460405161134f9291906154b0565b60405180910390a15b801561086f576000816001600160401b03811115611378576113786148e1565b6040519080825280602002602001820160405280156113a1578160200160208202803683370190505b50905060005b828110156114d057600960008585848181106113c5576113c56150c5565b90506020020160208101906113da9190614f8d565b6001600160a01b03168152602081019190915260400160009081205460ff161590600990868685818110611410576114106150c5565b90506020020160208101906114259190614f8d565b6001600160a01b0316815260208101919091526040016000908120805460ff191692151592909217909155600990858584818110611465576114656150c5565b905060200201602081019061147a9190614f8d565b6001600160a01b03168152602081019190915260400160002054825160ff909116908390839081106114ae576114ae6150c5565b91151560209283029190910190910152806114c88161510a565b9150506113a7565b507f4a28b173d9bc739be3886d172e07fef80392184787fc6b92406ce0f0c05b7e63838383604051611504939291906154c4565b60405180910390a15050505050565b600061151e82612584565b92915050565b60006105a18383611fef565b60008060005a90506108878585611824565b600f60f884901c166000818152600a60209081526040808320815180830190925280546001600160a01b03168252600181018054929391929184019161158790615123565b80601f01602080910402602001604051908101604052809291908181526020018280546115b390615123565b80156116005780601f106115d557610100808354040283529160200191611600565b820191906000526020600020905b8154815290600101906020018083116115e357829003601f168201915b5050509190925250508151919250506001600160a01b03166116645760405162461bcd60e51b815260206004820152601960248201527f43616c6c6261636b2062616420706f6f6c20696e6465786564000000000000006044820152606401610529565b600081600001518583602001516040516020016116839392919061551f565b6040516020818303038152906040528051906020012060001c9050836001600160a01b0316816001600160a01b0316146116f35760405162461bcd60e51b815260206004820152601160248201527010d85b1b189858dac8189859081c1bdbdb607a1b6044820152606401610529565b505050505050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663a9059cbb60e01b17905291516000928392908716916117579190615568565b6000604051808303816000865af19150503d8060008114611794576040519150601f19603f3d011682016040523d82523d6000602084013e611799565b606091505b50915091508180156117c35750805115806117c35750808060200190518101906117c39190615584565b61181d5760405162461bcd60e51b815260206004820152602560248201527f5472616e7366657248656c7065723a205452414e534645525f544f4b454e5f46604482015264105253115160da1b6064820152608401610529565b5050505050565b600060028054036118475760405162461bcd60e51b81526004016105299061516a565b60028055611853612b9e565b4282101561188d5760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610529565b6001600f604085013560f81c16146000808080806118ab8987613315565b9450945094509450945061190f836000815181106118cb576118cb6150c5565b60200260200101518a8060e001906118e391906155a1565b60008181106118f4576118f46150c5565b90506020020160208101906119099190614f8d565b866116fb565b8515611ac85784156119f65761196a60408a01358461193160e08d018d6155a1565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152503092506137e6915050565b6119ef8261197e60408c0160208d01614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a08231906024015b602060405180830381865afa1580156119c5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119e991906150db565b90613af2565b9650611c45565b611a5060408a013584611a0c60e08d018d6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250611a4b9250505060208e018e614f8d565b6137e6565b6119ef818460018651611a639190615157565b81518110611a7357611a736150c5565b60200260200101516001600160a01b03166370a082318c6000016020810190611a9c9190614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b0390911660048201526024016119a8565b600089604001356001600160a01b031663d06ca61f86866040518363ffffffff1660e01b8152600401611afc9291906155ea565b600060405180830381865afa158015611b19573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611b419190810190615641565b90508515611baf57611b948185611b5b60e08e018e6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250309250613b48915050565b611ba88361197e60408d0160208e01614f8d565b9750611c43565b611c198185611bc160e08e018e6155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f820116905080830192505050505050508d6000016020810190611c149190614f8d565b613b48565b8060018251611c289190615157565b81518110611c3857611c386150c5565b602002602001015197505b505b8860800135871015611c695760405162461bcd60e51b8152600401610529906156c6565b8415611c9e57611c88611c8260408b0160208c01614f8d565b88613d40565b611c9e611c9860208b018b614f8d565b88611e48565b5050505050600084806101200190611cb691906151a1565b8080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929350611d8b9250611cff91505060c08701876155a1565b6000818110611d1057611d106150c5565b9050602002016020810190611d259190614f8d565b611d3260c08801886155a1565b6001611d4160c08b018b6155a1565b611d4c929150615157565b818110611d5b57611d5b6150c5565b9050602002016020810190611d709190614f8d565b611d7d6020890189614f8d565b886060013587600087613257565b5050600160025592915050565b33611dab6000546001600160a01b031690565b6001600160a01b031614611e0d5760405162461bcd60e51b815260206004820152602360248201527f4f776e61626c653a2063616c6c6572206973206e6f74207468652065786563756044820152623a37b960e91b6064820152608401610529565b565b60006001600160a01b038216158061151e57506001600160a01b03821673eeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee1492915050565b604080516000808252602082019092526001600160a01b038416908390604051611e729190615568565b60006040518083038185875af1925050503d8060008114611eaf576040519150601f19603f3d011682016040523d82523d6000602084013e611eb4565b606091505b50509050806107275760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a205452414e534645525f4641494c4544006044820152606401610529565b6000806000856001600160a01b031663a9059cbb8686604051602401611f409291906001600160a01b03929092168252602082015260400190565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051611f799190615568565b6000604051808303816000865af19150503d8060008114611fb6576040519150601f19603f3d011682016040523d82523d6000602084013e611fbb565b606091505b5091509150818015611fe5575080511580611fe5575080806020019051810190611fe59190615584565b9695505050505050565b600060028054036120125760405162461bcd60e51b81526004016105299061516a565b6002805561201e612b9e565b600061202d60208401846151a1565b9050116120765760405162461bcd60e51b8152602060048201526017602482015276646174612073686f756c64206265206e6f74207a65726f60481b6044820152606401610529565b60008360800135116120ca5760405162461bcd60e51b815260206004820152601f60248201527f616d6f756e742073686f756c642062652067726561746572207468616e2030006044820152606401610529565b60006120dc6060850160408601614f8d565b6001600160a01b03160361213c5760405162461bcd60e51b815260206004820152602160248201527f72656365697665722073686f756c64206265206e6f74206164647265737328306044820152602960f81b6064820152608401610529565b60008360a00135116121a15760405162461bcd60e51b815260206004820152602860248201527f6d696e52657475726e416d6f756e742073686f756c6420626520677265617465604482015267072207468616e20360c41b6064820152608401610529565b600960006121b56080860160608701614f8d565b6001600160a01b0316815260208101919091526040016000205460ff1661221e5760405162461bcd60e51b815260206004820152601760248201527f696e76616c6964207772617070656420616464726573730000000000000000006044820152606401610529565b600061223d6001608086013560c0870135610b276101008901896151a1565b60055490915060009081906001600160a01b0316612261610b3e6020890189614f8d565b156122b557866080013534146122ad5760405162461bcd60e51b8152602060048201526011602482015270696e76616c6964206d73672e76616c756560781b6044820152606401610529565b8392506122e8565b6122d16122c56020890189614f8d565b33308a60800135612eb9565b6122e86122e16020890189614f8d565b82866116fb565b6122fb610b3e6040890160208a01614f8d565b15612321576123106060880160408901614f8d565b6001600160a01b03163191506123ba565b6123316040880160208901614f8d565b6001600160a01b03166370a0823161234f60608a0160408b01614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612393573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b791906150db565b91505b600080826001600160a01b031685633f3204d28a6040516024016123de91906156f3565b6040516020818303038152906040529060e01b6020820180516001600160e01b0383818316178352505050506040516124179190615568565b60006040518083038185875af1925050503d8060008114612454576040519150601f19603f3d011682016040523d82523d6000602084013e612459565b606091505b50915091508161249157610d43816040518060400160405280600c81526020016b2a3930b739b4ba29bbb0b81d60a11b815250612fe1565b506124a79050610b3e6040890160208a01614f8d565b156124d7576124d0826124c060608a0160408b01614f8d565b6001600160a01b03163190613af2565b945061250c565b612509826124eb60408a0160208b01614f8d565b6001600160a01b03166370a08231611a9c60608c0160408d01614f8d565b94505b8660a001358510156125305760405162461bcd60e51b8152600401610529906156c6565b6125756125406020890189614f8d565b61255060408a0160208b01614f8d565b61256060608b0160408c01614f8d565b60808b0135896000610da960e08f018f6151a1565b50505050600160025592915050565b600060028054036125a75760405162461bcd60e51b81526004016105299061516a565b600280556125b3612b9e565b60006125c36101008401846155a1565b9050116126005760405162461bcd60e51b815260206004820152600b60248201526a456d70747920706f6f6c7360a81b6044820152606401610529565b428260e00135101561263e5760405162461bcd60e51b8152602060048201526007602482015266115e1c1a5c995960ca1b6044820152606401610529565b600960006126526080850160608601614f8d565b6001600160a01b0316815260208101919091526040016000205460ff1661268b5760405162461bcd60e51b8152600401610529906151e7565b600061269a6020840184614f8d565b905060006126ae6040850160208601614f8d565b905060006126cf6001608087013560c0880135610b276101208a018a6151a1565b90506000806126e4610b3e6020890189614f8d565b15612760576126f96080880160608901614f8d565b9450866080013534146127425760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206d73672e76616c756560781b6044820152606401610529565b61275b6127556080890160608a01614f8d565b84612ca7565b612770565b6127706122c56020890189614f8d565b612783610b3e6040890160208a01614f8d565b1561281f576127986080880160608901614f8d565b93506127aa6080880160608901614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa1580156127f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061281491906150db565b9150600190506128b8565b61282f6040880160208901614f8d565b6001600160a01b03166370a0823161284d60608a0160408b01614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa158015612891573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128b591906150db565b91505b60006128c86101008901896155a1565b91503090506060600183111561297f57876000805b858110156129745760006128f56101008f018f6155a1565b83818110612905576129056150c5565b905060200201359050612919848483613e58565b95509350612928600188615157565b82148015612934575087155b15612952578d604001602081019061294c9190614f8d565b95508a92505b61295e8682878d614144565b995050808061296c9061510a565b9150506128dd565b50879a5050506129ff565b6129af88886129926101008e018e6155a1565b60008181106129a3576129a36150c5565b90506020020135613e58565b91508490506129cb576129c860608b0160408c01614f8d565b91505b6129fc826129dd6101008d018d6155a1565b60008181106129ee576129ee6150c5565b905060200201358389614144565b98505b5050508015612a7957612a1c8261197e60808a0160608b01614f8d565b95508660a00135861015612a425760405162461bcd60e51b8152600401610529906156c6565b612a5b612a556080890160608a01614f8d565b87613d40565b612a74612a6e6060890160408a01614f8d565b87611e48565b612ab3565b612a8d826124eb60408a0160208b01614f8d565b95508660a00135861015612ab35760405162461bcd60e51b8152600401610529906156c6565b612af9612ac36020890189614f8d565b612ad360408a0160208b01614f8d565b612ae360608b0160408c01614f8d565b60808b01358a6000610da96101408f018f6151a1565b50505050506001600255919050565b612b10612b9e565b6001805460ff60a81b1916600160a81b1790556040513381527f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258906020015b60405180910390a1565b612b616142fc565b6001805460ff60a81b191690556040513381527f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa90602001612b4f565b600154600160a81b900460ff1615611e0d5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610529565b6000808615612c1c57612c15612710612c0f6003548961434c90919063ffffffff16565b906143b3565b9050612c3a565b612c37612710612c0f6004548961434c90919063ffffffff16565b90505b80851015612c9257612c4e86868686614402565b612c925760405162461bcd60e51b8152602060048201526015602482015274496e76616c6964207369676e61747572652066656560581b6044820152606401610529565b612c9c8686613af2565b979650505050505050565b60408051600481526024810182526020810180516001600160e01b0316630d0e30db60e41b179052905160009182916001600160a01b038616918591612ced9190615568565b60006040518083038185875af1925050503d8060008114612d2a576040519150601f19603f3d011682016040523d82523d6000602084013e612d2f565b606091505b5091509150818015612d59575080511580612d59575080806020019051810190612d599190615584565b61086f5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a204445504f5349545f4641494c454400006044820152606401610529565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1790529151600092839290871691612e019190615568565b6000604051808303816000865af19150503d8060008114612e3e576040519150601f19603f3d011682016040523d82523d6000602084013e612e43565b606091505b5091509150818015612e6d575080511580612e6d575080806020019051810190612e6d9190615584565b61181d5760405162461bcd60e51b815260206004820152601e60248201527f5472616e7366657248656c7065723a20415050524f56455f4641494c454400006044820152606401610529565b604080516001600160a01b0385811660248301528481166044830152606480830185905283518084039091018152608490920183526020820180516001600160e01b03166323b872dd60e01b1790529151600092839290881691612f1d9190615568565b6000604051808303816000865af19150503d8060008114612f5a576040519150601f19603f3d011682016040523d82523d6000602084013e612f5f565b606091505b5091509150818015612f89575080511580612f89575080806020019051810190612f899190615584565b6116f35760405162461bcd60e51b8152602060048201526024808201527f5472616e7366657248656c7065723a205452414e534645525f46524f4d5f46416044820152631253115160e21b6064820152608401610529565b6060604483511015801561301a575082600081518110613003576130036150c5565b6020910101516001600160f81b031916600160fb1b145b801561304b575082600181518110613034576130346150c5565b6020910101516001600160f81b03191660c360f81b145b801561307c575082600281518110613065576130656150c5565b6020910101516001600160f81b031916607960f81b145b80156130ad575082600381518110613096576130966150c5565b6020910101516001600160f81b031916600560fd1b145b15613137576044838101805190916130c5919061573f565b8451101561310d5760405162461bcd60e51b815260206004820152601560248201527424b73b30b634b2103932bb32b93a103932b0b9b7b760591b6044820152606401610529565b8281604051602001613120929190615752565b60405160208183030381529060405291505061151e565b8251602414801561316d575082600081518110613156576131566150c5565b6020910101516001600160f81b031916602760f91b145b801561319e575082600181518110613187576131876150c5565b6020910101516001600160f81b031916600960fb1b145b80156131cf5750826002815181106131b8576131b86150c5565b6020910101516001600160f81b031916607b60f81b145b80156132005750826003815181106131e9576131e96150c5565b6020910101516001600160f81b031916607160f81b145b156132255760248301518261321482614576565b6040516020016131209291906157a1565b8161322f8461459e565b6040516020016132409291906157d6565b604051602081830303815290604052905092915050565b846001600160a01b0316866001600160a01b0316886001600160a01b03167f2251435bd151cd72851a82be055bf6d1c3d7f34d08d56493dddf874229b8e897878787876040516132aa9493929190615827565b60405180910390a450505050505050565b600180546001600160a01b0319908116909155600080546001600160a01b03848116938216841783556040519116929183917f88436636ea40d5bb1bcc55ff9cd54788af71da886f4147a87f199adcca733d4d9190a35050565b6000806060818061332960e08801886155a1565b6133359150600161573f565b61334260c08901896155a1565b9050146133805760405162461bcd60e51b815260206004820152600c60248201526b092dcecc2d8d2c840e0c2e8d60a31b6044820152606401610529565b6009600061339460408a0160208b01614f8d565b6001600160a01b0316815260208101919091526040016000205460ff166133cd5760405162461bcd60e51b8152600401610529906151e7565b6133ea6001606089013560a08a0135610b276101008c018c6151a1565b935060006133fb60c08901896155a1565b80806020026020016040519081016040528093929190818152602001838360200280828437600092018290525093945084925060019150613441905060c08c018c6155a1565b61344c929150615157565b8151811061345c5761345c6150c5565b6020026020010151905061349f898060c0019061347991906155a1565b600081811061348a5761348a6150c5565b9050602002016020810190610b3e9190614f8d565b1561354457886060013534146134eb5760405162461bcd60e51b8152602060048201526011602482015270496e76616c6964206d73672e76616c756560781b6044820152606401610529565b6134fb60408a0160208b01614f8d565b8260008151811061350e5761350e6150c5565b6001600160a01b0390921660209283029190910182015261353f906135399060408c01908c01614f8d565b87612ca7565b613671565b871561365b578160008151811061355d5761355d6150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a0823190602401602060405180830381865afa1580156135ad573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906135d191906150db565b95506135fd826000815181106135e9576135e96150c5565b602002602001015133308c60600135612eb9565b6136548960a001356119e9888560008151811061361c5761361c6150c5565b60209081029190910101516040516370a0823160e01b81523060048201526001600160a01b03909116906370a08231906024016119a8565b9550613671565b613671826000815181106135e9576135e96150c5565b61367a81611e0f565b1561374a5761368f60408a0160208b01614f8d565b826001845161369e9190615157565b815181106136ae576136ae6150c5565b6001600160a01b03909216602092830291909101820152600197506136d99060408b01908b01614f8d565b6040516370a0823160e01b81523060048201526001600160a01b0391909116906370a0823190602401602060405180830381865afa15801561371f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061374391906150db565b93506137d7565b87156137d7576001600160a01b0381166370a0823161376c60208c018c614f8d565b6040516001600160e01b031960e084901b1681526001600160a01b039091166004820152602401602060405180830381865afa1580156137b0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137d491906150db565b92505b81945050509295509295909350565b60005b600184516137f79190615157565b81101561181d57600080858381518110613813576138136150c5565b602002602001015186846001613829919061573f565b81518110613839576138396150c5565b6020026020010151915091506000816001600160a01b0316836001600160a01b03161061386757818361386a565b82825b5090506000868581518110613881576138816150c5565b60200260200101519050600080600080846001600160a01b0316630902f1ac6040518163ffffffff1660e01b8152600401606060405180830381865afa1580156138cf573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906138f39190615863565b506001600160701b031691506001600160701b03169150600080876001600160a01b03168a6001600160a01b03161461392d578284613930565b83835b6040516370a0823160e01b81526001600160a01b038a8116600483015292945090925061396b918491908d16906370a08231906024016119a8565b95508e6001600160a01b031663054d50d48784846040518463ffffffff1660e01b81526004016139ae939291909283526020830191909152604082015260600190565b602060405180830381865afa1580156139cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906139ef91906150db565b945050505050600080856001600160a01b0316886001600160a01b031614613a1957826000613a1d565b6000835b91509150600060028d51613a319190615157565b8a10613a3d578a613a62565b8b613a498b600161573f565b81518110613a5957613a596150c5565b60200260200101515b6040805160008152602081019182905263022c0d9f60e01b9091529091506001600160a01b0387169063022c0d9f90613aa490869086908690602481016158b3565b600060405180830381600087803b158015613abe57600080fd5b505af1158015613ad2573d6000803e3d6000fd5b505050505050505050505050508080613aea9061510a565b9150506137e9565b600082613aff8382615157565b915081111561151e5760405162461bcd60e51b815260206004820152601560248201527464732d6d6174682d7375622d756e646572666c6f7760581b6044820152606401610529565b60005b60018451613b599190615157565b81101561181d57600080858381518110613b7557613b756150c5565b602002602001015186846001613b8b919061573f565b81518110613b9b57613b9b6150c5565b6020026020010151915091506000816001600160a01b0316836001600160a01b031610613bc9578183613bcc565b82825b509050600088613bdd86600161573f565b81518110613bed57613bed6150c5565b60200260200101519050600080836001600160a01b0316866001600160a01b031614613c1b57826000613c1f565b6000835b91509150600060028b51613c339190615157565b8810613c3f5788613c64565b89613c4b89600161573f565b81518110613c5b57613c5b6150c5565b60200260200101515b9050898881518110613c7857613c786150c5565b60200260200101516001600160a01b031663022c0d9f84848460006001600160401b03811115613caa57613caa6148e1565b6040519080825280601f01601f191660200182016040528015613cd4576020820181803683370190505b506040518563ffffffff1660e01b8152600401613cf494939291906158b3565b600060405180830381600087803b158015613d0e57600080fd5b505af1158015613d22573d6000803e3d6000fd5b50505050505050505050508080613d389061510a565b915050613b4b565b600080836001600160a01b03166000632e1a7d4d85604051602401613d6791815260200190565b6040516020818303038152906040529060e01b6020820180516001600160e01b038381831617835250505050604051613da09190615568565b60006040518083038185875af1925050503d8060008114613ddd576040519150601f19603f3d011682016040523d82523d6000602084013e613de2565b606091505b5091509150818015613e0c575080511580613e0c575080806020019051810190613e0c9190615584565b61086f5760405162461bcd60e51b815260206004820152601f60248201527f5472616e7366657248656c7065723a2057495448445241575f4641494c4544006044820152606401610529565b6000606060008390506000816001600160a01b0316630dfe16816040518163ffffffff1660e01b8152600401602060405180830381865afa158015613ea1573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613ec591906158e0565b90506000826001600160a01b031663d21220a76040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f07573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f2b91906158e0565b90506000836001600160a01b031663ddca3f436040518163ffffffff1660e01b8152600401602060405180830381865afa158015613f6d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190613f9191906158fd565b604080516001600160a01b03808716602083015285169181019190915262ffffff8216606082015290915060009060800160408051601f1981840301815291905280516020909101209050600160ff1b881615801561409257846001600160a01b03168b6001600160a01b03161461401b5760405162461bcd60e51b815260040161052990615922565b6001600160a01b038a161561405b57836001600160a01b03168a6001600160a01b03161461405b5760405162461bcd60e51b815260040161052990615922565b604080516001600160a01b038716602082015290810183905293975087936060016040516020818303038152906040529650614136565b836001600160a01b03168b6001600160a01b0316146140c35760405162461bcd60e51b815260040161052990615922565b6001600160a01b038a161561410357846001600160a01b03168a6001600160a01b0316146141035760405162461bcd60e51b815260040161052990615922565b604080516001600160a01b0386166020820152908101839052949750879460600160405160208183030381529060405296505b505050505050935093915050565b6000600160ff1b8416158015614221576000856001600160a01b031663128acb08888461417088614785565b6141806401000276a36001615944565b8b8b60405160200161419392919061596b565b6040516020818303038152906040526040518663ffffffff1660e01b81526004016141c2959493929190615984565b60408051808303816000875af11580156141e0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061420491906159bf565b91505061421981614214906159e3565b6147f3565b9250506142f3565b6000856001600160a01b031663128acb08888461423d88614785565b61425c600173fffd8963efd1fc6a506488495d951d5263988d266159ff565b8b8b60405160200161426f92919061596b565b6040516020818303038152906040526040518663ffffffff1660e01b815260040161429e959493929190615984565b60408051808303816000875af11580156142bc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906142e091906159bf565b5090506142ef614214826159e3565b9250505b50949350505050565b600154600160a81b900460ff16611e0d5760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610529565b6000811580614370575082826143628183615a1f565b925061436e9083615a36565b145b61151e5760405162461bcd60e51b815260206004820152601460248201527364732d6d6174682d6d756c2d6f766572666c6f7760601b6044820152606401610529565b6000816000036143f85760405162461bcd60e51b815260206004820152601060248201526f64732d6d6174682d6469762d7a65726f60801b6044820152606401610529565b6105a18284615a36565b600754604080517f048f880a603b1aab0e626a287e33d603417b3d53a36f7527b7c86365bf7def4f602082015233918101919091526060810186905260808101859052600091829160a0016040516020818303038152906040528051906020012060405160200161448a92919061190160f01b81526002810192909252602282015260420190565b60405160208183030381529060405280519060200120905060008060006144e687878080601f01602080910402602001604051908101604052809392919081815260200183838082843760009201919091525061484592505050565b92509250925060006001858585856040516000815260200160405260405161452a949392919093845260ff9290921660208401526040830152606082015260800190565b6020604051602081039080840390855afa15801561454c573d6000803e3d6000fd5b5050604051601f1901516006546001600160a01b039081169116149b9a5050505050505050505050565b606061151e8260405160200161458e91815260200190565b6040516020818303038152906040525b80516060906f181899199a1a9b1b9c1cb0b131b232b360811b906000906145c6906002615a1f565b6145d190600261573f565b6001600160401b038111156145e8576145e86148e1565b6040519080825280601f01601f191660200182016040528015614612576020820181803683370190505b509050600360fc1b8160008151811061462d5761462d6150c5565b60200101906001600160f81b031916908160001a905350600f60fb1b8160018151811061465c5761465c6150c5565b60200101906001600160f81b031916908160001a90535060005b845181101561477d57826004868381518110614694576146946150c5565b01602001516001600160f81b031916901c60f81c601081106146b8576146b86150c5565b1a60f81b826146c8836002615a1f565b6146d390600261573f565b815181106146e3576146e36150c5565b60200101906001600160f81b031916908160001a9053508285828151811061470d5761470d6150c5565b60209101015160f81c600f1660108110614729576147296150c5565b1a60f81b82614739836002615a1f565b61474490600361573f565b81518110614754576147546150c5565b60200101906001600160f81b031916908160001a905350806147758161510a565b915050614676565b509392505050565b60006001600160ff1b038211156147ef5760405162461bcd60e51b815260206004820152602860248201527f53616665436173743a2076616c756520646f65736e27742066697420696e2061604482015267371034b73a191a9b60c11b6064820152608401610529565b5090565b6000808212156147ef5760405162461bcd60e51b815260206004820181905260248201527f53616665436173743a2076616c7565206d75737420626520706f7369746976656044820152606401610529565b6000806000835160411461489b5760405162461bcd60e51b815260206004820152601860248201527f496e76616c6964207369676e6174757265206c656e67746800000000000000006044820152606401610529565b5050506020810151604082015160609092015160001a92909190565b600080858511156148c757600080fd5b838611156148d457600080fd5b5050820193919092039150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561491f5761491f6148e1565b604052919050565b60006001600160401b03821115614940576149406148e1565b50601f01601f191660200190565b60008060006060848603121561496357600080fd5b833592506020840135915060408401356001600160401b0381111561498757600080fd5b8401601f8101861361499857600080fd5b80356149ab6149a682614927565b6148f7565b8181528760208385010111156149c057600080fd5b816020840160208301376000602083830101528093505050509250925092565b600080604083850312156149f357600080fd5b82356001600160401b03811115614a0957600080fd5b83016101408186031215614a1c57600080fd5b946020939093013593505050565b60006001600160401b03821115614a4357614a436148e1565b5060051b60200190565b6001600160a01b03811681146109b557600080fd5b8035614a6d81614a4d565b919050565b60008060408385031215614a8557600080fd5b82356001600160401b03811115614a9b57600080fd5b8301601f81018513614aac57600080fd5b80356020614abc6149a683614a2a565b82815260059290921b83018101918181019088841115614adb57600080fd5b938201935b83851015614b02578435614af381614a4d565b82529382019390820190614ae0565b9550614b119050868201614a62565b93505050509250929050565b600080600060608486031215614b3257600080fd5b8335614b3d81614a4d565b92506020840135614b4d81614a4d565b929592945050506040919091013590565b60005b83811015614b79578181015183820152602001614b61565b50506000910152565b60008151808452614b9a816020860160208601614b5e565b601f01601f19169290920160200192915050565b831515815282151560208201526060604082015260018060a01b0382511660608201526000602083015160406080840152611fe560a0840182614b82565b60008060008060608587031215614c0257600080fd5b843593506020850135925060408501356001600160401b0380821115614c2757600080fd5b818701915087601f830112614c3b57600080fd5b813581811115614c4a57600080fd5b886020828501011115614c5c57600080fd5b95989497505060200194505050565b60008060408385031215614c7e57600080fd5b82356001600160401b0380821115614c9557600080fd5b908401906101208287031215614caa57600080fd5b90925060208401359080821115614cc057600080fd5b50830160408186031215614cd357600080fd5b809150509250929050565b60006101608284031215614cf157600080fd5b50919050565b600060208284031215614d0957600080fd5b81356001600160401b03811115614d1f57600080fd5b614d2b84828501614cde565b949350505050565b60008060408385031215614d4657600080fd5b8235614d5181614a4d565b91506020830135614cd381614a4d565b80151581146109b557600080fd5b600060208284031215614d8157600080fd5b81356105a181614d61565b600082601f830112614d9d57600080fd5b81356020614dad6149a683614a2a565b82815260059290921b84018101918181019086841115614dcc57600080fd5b8286015b84811015614de75780358352918301918301614dd0565b509695505050505050565b60008060408385031215614e0557600080fd5b82356001600160401b0380821115614e1c57600080fd5b818501915085601f830112614e3057600080fd5b81356020614e406149a683614a2a565b82815260059290921b84018101918181019089841115614e5f57600080fd5b948201945b83861015614e86578535614e7781614d61565b82529482019490820190614e64565b96505086013592505080821115614e9c57600080fd5b5061089485828601614d8c565b60008083601f840112614ebb57600080fd5b5081356001600160401b03811115614ed257600080fd5b6020830191508360208260051b8501011115614eed57600080fd5b9250929050565b60008060008060008060608789031215614f0d57600080fd5b86356001600160401b0380821115614f2457600080fd5b614f308a838b01614ea9565b90985096506020890135915080821115614f4957600080fd5b614f558a838b01614ea9565b90965094506040890135915080821115614f6e57600080fd5b50614f7b89828a01614ea9565b979a9699509497509295939492505050565b600060208284031215614f9f57600080fd5b81356105a181614a4d565b60008060008060408587031215614fc057600080fd5b84356001600160401b0380821115614fd757600080fd5b614fe388838901614ea9565b90965094506020870135915080821115614ffc57600080fd5b5061500987828801614ea9565b95989497509550505050565b6000806040838503121561502857600080fd5b8251915060208301516001600160401b0381111561504557600080fd5b8301601f8101851361505657600080fd5b80516150646149a682614927565b81815286602083850101111561507957600080fd5b61508a826020830160208601614b5e565b8093505050509250929050565b600080604083850312156150aa57600080fd5b82516150b581614a4d565b6020939093015192949293505050565b634e487b7160e01b600052603260045260246000fd5b6000602082840312156150ed57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b60006001820161511c5761511c6150f4565b5060010190565b600181811c9082168061513757607f821691505b602082108103614cf157634e487b7160e01b600052602260045260246000fd5b8181038181111561151e5761151e6150f4565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6000808335601e198436030181126151b857600080fd5b8301803591506001600160401b038211156151d257600080fd5b602001915036819003821315614eed57600080fd5b60208082526017908201527f496e76616c696420777261707065642061646472657373000000000000000000604082015260600190565b8183823760009101908152919050565b6020815260006105a16020830184614b82565b601f82111561072757600081815260208120601f850160051c810160208610156152685750805b601f850160051c820191505b818110156116f357828155600101615274565b81516001600160401b038111156152a0576152a06148e1565b6152b4816152ae8454615123565b84615241565b602080601f8311600181146152e957600084156152d15750858301515b600019600386901b1c1916600185901b1785556116f3565b600085815260208120601f198616915b82811015615318578886015182559484019460019091019084016152f9565b50858210156153365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b8183526000602080850194508260005b8581101561538457813561536981614a4d565b6001600160a01b031687529582019590820190600101615356565b509495945050505050565b81835281816020850137506000828201602090810191909152601f909101601f19169091010190565b6000808335601e198436030181126153cf57600080fd5b83016020810192503590506001600160401b038111156153ee57600080fd5b803603821315614eed57600080fd5b6060808252810186905260006001600160fb1b0387111561541d57600080fd5b8660051b80896080850137808301905060206080848303018185015261544760808301888a615346565b84810360408601528581529150808201600586901b830182018760005b8881101561549e57858303601f1901845261547f828b6153b8565b61548a85828461538f565b958701959450505090840190600101615464565b50909c9b505050505050505050505050565b602081526000614d2b602083018486615346565b6040815260006154d8604083018587615346565b82810360208481019190915284518083528582019282019060005b818110156155115784511515835293830193918301916001016154f3565b509098975050505050505050565b60ff60f81b81526bffffffffffffffffffffffff198460601b16600182015282601582015260008251615559816035850160208701614b5e565b91909101603501949350505050565b6000825161557a818460208701614b5e565b9190910192915050565b60006020828403121561559657600080fd5b81516105a181614d61565b6000808335601e198436030181126155b857600080fd5b8301803591506001600160401b038211156155d257600080fd5b6020019150600581901b3603821315614eed57600080fd5b6000604082018483526020604081850152818551808452606086019150828701935060005b818110156156345784516001600160a01b03168352938301939183019160010161560f565b5090979650505050505050565b6000602080838503121561565457600080fd5b82516001600160401b0381111561566a57600080fd5b8301601f8101851361567b57600080fd5b80516156896149a682614a2a565b81815260059190911b820183019083810190878311156156a857600080fd5b928401925b82841015612c9c578351825292840192908401906156ad565b602080825260139082015272151bdbc81b1a5d1d1b19481c9958d95a5d9959606a1b604082015260600190565b602081526000823561570481614a4d565b6001600160a01b0316602083810191909152615722908401846153b8565b60408085015261573660608501828461538f565b95945050505050565b8082018082111561151e5761151e6150f4565b60008351615764818460208801614b5e565b6508ae4e4dee4560d31b9083019081528351615787816006840160208801614b5e565b602960f81b60069290910191820152600701949350505050565b600083516157b3818460208801614b5e565b650a0c2dcd2c6560d31b9083019081528351615787816006840160208801614b5e565b600083516157e8818460208801614b5e565b670aadcd6dcdeeedc560c31b908301908152835161580d816008840160208801614b5e565b602960f81b60089290910191820152600901949350505050565b848152836020820152826040820152608060608201526000611fe56080830184614b82565b80516001600160701b0381168114614a6d57600080fd5b60008060006060848603121561587857600080fd5b6158818461584c565b925061588f6020850161584c565b9150604084015163ffffffff811681146158a857600080fd5b809150509250925092565b84815283602082015260018060a01b0383166040820152608060608201526000611fe56080830184614b82565b6000602082840312156158f257600080fd5b81516105a181614a4d565b60006020828403121561590f57600080fd5b815162ffffff811681146105a157600080fd5b602080825260089082015267109859081c1bdbdb60c21b604082015260600190565b6001600160a01b03818116838216019080821115615964576159646150f4565b5092915050565b828152604060208201526000614d2b6040830184614b82565b6001600160a01b0386811682528515156020830152604082018590528316606082015260a060808201819052600090612c9c90830184614b82565b600080604083850312156159d257600080fd5b505080516020909101519092909150565b6000600160ff1b82016159f8576159f86150f4565b5060000390565b6001600160a01b03828116828216039080821115615964576159646150f4565b808202811582820484141761151e5761151e6150f4565b600082615a5357634e487b7160e01b600052601260045260246000fd5b50049056fea2646970667358221220397b9a7e7c4527e2b680d32648a65e1c3283e7250c6c15690d931ae20fb8620964736f6c63430008120033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 99.97% | $15,037,732,869.55 | 30,180.8206 | $453,851,117,321,964 | |
ETH | 0.02% | $0.99985 | 98,185,351,653.6841 | $98,170,623,850.94 | |
ETH | <0.01% | $1,785.32 | 25.1936 | $44,978.71 | |
ETH | <0.01% | $1 | 11,538.799 | $11,538.8 | |
ETH | <0.01% | $0.999936 | 10,954.1831 | $10,953.48 | |
ETH | <0.01% | $0.489469 | 5,104.2106 | $2,498.35 | |
ETH | <0.01% | $0.007401 | 205,048.6003 | $1,517.6 | |
ETH | <0.01% | <$0.000001 | 142,109,912,954.6694 | $1,100.01 | |
ETH | <0.01% | $0.001856 | 539,020.0913 | $1,000.37 | |
ETH | <0.01% | <$0.000001 | 32,272,741,428.3639 | $704.67 | |
ETH | <0.01% | <$0.000001 | 854,326,306.9251 | $411.4 | |
ETH | <0.01% | $0.000094 | 3,717,660.6106 | $348.51 | |
ETH | <0.01% | $1 | 327.0269 | $327.03 | |
ETH | <0.01% | $0.000048 | 6,443,401.9721 | $306.38 | |
ETH | <0.01% | $0.999835 | 295.5541 | $295.51 | |
ETH | <0.01% | $0.000039 | 7,185,627.8273 | $277.72 | |
ETH | <0.01% | $1,781.2 | 0.1533 | $273.02 | |
ETH | <0.01% | $286.04 | 0.946 | $270.59 | |
ETH | <0.01% | $1,878.24 | 0.1295 | $243.31 | |
ETH | <0.01% | $1,866.59 | 0.1183 | $220.81 | |
ETH | <0.01% | $0.326121 | 672.1532 | $219.2 | |
ETH | <0.01% | $1,785.32 | 0.1209 | $215.85 | |
ETH | <0.01% | $0.000023 | 8,858,430.2734 | $206.49 | |
ETH | <0.01% | $0.00002 | 9,940,708.5525 | $201.6 | |
ETH | <0.01% | $0.005572 | 33,835.3349 | $188.52 | |
ETH | <0.01% | $0.000504 | 347,121.9728 | $174.81 | |
ETH | <0.01% | $0.017402 | 9,999.8239 | $174.02 | |
ETH | <0.01% | $1.17 | 148.3384 | $173.56 | |
ETH | <0.01% | <$0.000001 | 1,236,399,660.2719 | $167.52 | |
ETH | <0.01% | <$0.000001 | 3,483,480,475.1285 | $164.01 | |
ETH | <0.01% | $0.150442 | 1,059.4459 | $159.39 | |
ETH | <0.01% | $0.004309 | 32,060.9756 | $138.14 | |
ETH | <0.01% | $0.297271 | 461.2051 | $137.1 | |
ETH | <0.01% | $0.005811 | 23,024.4591 | $133.8 | |
ETH | <0.01% | $0.053826 | 2,485.7843 | $133.8 | |
ETH | <0.01% | $0.257512 | 508.4945 | $130.94 | |
ETH | <0.01% | $0.000066 | 1,806,755.6624 | $118.97 | |
ETH | <0.01% | $93,798 | 0.00111835 | $104.9 | |
ETH | <0.01% | $0.008338 | 12,340.0257 | $102.89 | |
ETH | <0.01% | $2,001.83 | 0.0504 | $100.92 | |
ETH | <0.01% | $0.000412 | 243,049.9233 | $100.06 | |
ETH | <0.01% | $7.62 | 13.0731 | $99.62 | |
ETH | <0.01% | $0.859365 | 114.8642 | $98.71 | |
ETH | <0.01% | $0.027019 | 3,544.1244 | $95.76 | |
ETH | <0.01% | $0.008018 | 11,831.7399 | $94.86 | |
ETH | <0.01% | $93,751 | 0.0010071 | $94.42 | |
ETH | <0.01% | $0.000179 | 527,492.8133 | $94.27 | |
ETH | <0.01% | $1,887.15 | 0.0492 | $92.78 | |
ETH | <0.01% | $0.061028 | 1,451.3908 | $88.58 | |
ETH | <0.01% | $0.00589 | 14,765.15 | $86.96 | |
ETH | <0.01% | $0.000001 | 109,970,637.1412 | $86.27 | |
ETH | <0.01% | $0.000021 | 4,165,782.161 | $85.51 | |
ETH | <0.01% | <$0.000001 | 23,772,599,026.7828 | $80.16 | |
ETH | <0.01% | $0.000027 | 2,870,138.0727 | $78.4 | |
ETH | <0.01% | $0.000014 | 5,702,717.7569 | $78.07 | |
ETH | <0.01% | $0.016322 | 4,742.0107 | $77.4 | |
ETH | <0.01% | <$0.000001 | 10,881,167,896.641 | $76.15 | |
ETH | <0.01% | $0.000001 | 131,053,941.3809 | $75.62 | |
ETH | <0.01% | $2,139.86 | 0.0334 | $71.51 | |
ETH | <0.01% | $0.000009 | 7,639,859.9999 | $68.99 | |
ETH | <0.01% | $0.000285 | 238,416.2091 | $68.06 | |
ETH | <0.01% | $0.055072 | 1,181.1977 | $65.05 | |
ETH | <0.01% | $0.287119 | 222.714 | $63.95 | |
ETH | <0.01% | $2,027.17 | 0.0315 | $63.86 | |
ETH | <0.01% | $4.54 | 13.8376 | $62.82 | |
ETH | <0.01% | $0.00013 | 480,696.8777 | $62.27 | |
ETH | <0.01% | $0.02206 | 2,810.0793 | $61.99 | |
ETH | <0.01% | <$0.000001 | 1,200,000,000.0003 | $61.67 | |
ETH | <0.01% | $0.690285 | 83.7799 | $57.83 | |
ETH | <0.01% | <$0.000001 | 10,487,657,527.2836 | $57.47 | |
ETH | <0.01% | $0.010642 | 5,019.0571 | $53.41 | |
ETH | <0.01% | $0.941816 | 56.0993 | $52.84 | |
ETH | <0.01% | $1,644.86 | 0.03 | $49.35 | |
ETH | <0.01% | <$0.000001 | 63,045,216,395,881.336 | $49.15 | |
ETH | <0.01% | $1,859.6 | 0.0263 | $48.97 | |
ETH | <0.01% | <$0.000001 | 136,901,430.2523 | $47.91 | |
ETH | <0.01% | $0.001858 | 25,585.6339 | $47.53 | |
ETH | <0.01% | $0.001319 | 35,940.4071 | $47.42 | |
ETH | <0.01% | $0.072057 | 655.5265 | $47.24 | |
ETH | <0.01% | $0.00049 | 95,054.345 | $46.6 | |
ETH | <0.01% | $0.390661 | 117.742 | $46 | |
ETH | <0.01% | $5.91 | 7.7387 | $45.74 | |
ETH | <0.01% | <$0.000001 | 3,238,044,663.8435 | $45.56 | |
ETH | <0.01% | $0.028913 | 1,544.3289 | $44.65 | |
ETH | <0.01% | $1.19 | 37.3178 | $44.41 | |
ETH | <0.01% | $151.26 | 0.2901 | $43.88 | |
ETH | <0.01% | <$0.000001 | 30,064,405,760.939 | $43.05 | |
ETH | <0.01% | $0.002343 | 18,088.0016 | $42.38 | |
ETH | <0.01% | $0.999833 | 42.3052 | $42.3 | |
ETH | <0.01% | $0.015498 | 2,713.7175 | $42.06 | |
ETH | <0.01% | $0.001323 | 31,275.491 | $41.39 | |
ETH | <0.01% | $0.214936 | 192.1724 | $41.3 | |
ETH | <0.01% | $0.024646 | 1,674.3747 | $41.27 | |
ETH | <0.01% | $0.096807 | 426.1664 | $41.26 | |
ETH | <0.01% | $0.309551 | 132.5633 | $41.04 | |
ETH | <0.01% | $2.25 | 18.1767 | $40.9 | |
ETH | <0.01% | $0.000003 | 11,737,734.6989 | $40.73 | |
ETH | <0.01% | $0.336364 | 120.4685 | $40.52 | |
ETH | <0.01% | $0.012987 | 3,083.842 | $40.05 | |
ETH | <0.01% | $56.54 | 0.7031 | $39.75 | |
ETH | <0.01% | $335.05 | 0.1182 | $39.62 | |
ETH | <0.01% | <$0.000001 | 41,266,201,426.0547 | $39.24 | |
ETH | <0.01% | $0.012863 | 3,047.0946 | $39.2 | |
ETH | <0.01% | $0.127396 | 307.0004 | $39.11 | |
ETH | <0.01% | $0.00125 | 31,047.1608 | $38.82 | |
ETH | <0.01% | $0.001574 | 24,218.2727 | $38.12 | |
ETH | <0.01% | $0.729223 | 52.0833 | $37.98 | |
ETH | <0.01% | $10.21 | 3.6904 | $37.69 | |
ETH | <0.01% | $0.81542 | 46.1419 | $37.63 | |
ETH | <0.01% | $0.000002 | 15,845,357.308 | $37.4 | |
ETH | <0.01% | $14.64 | 2.5347 | $37.11 | |
ETH | <0.01% | $0.004039 | 9,112.7133 | $36.81 | |
ETH | <0.01% | $1,854.44 | 0.0194 | $35.95 | |
ETH | <0.01% | <$0.000001 | 16,055,045,751.0312 | $35.5 | |
ETH | <0.01% | $162.55 | 0.2181 | $35.45 | |
ETH | <0.01% | $0.008672 | 4,068.5897 | $35.28 | |
ETH | <0.01% | $0.000843 | 41,831.138 | $35.28 | |
ETH | <0.01% | <$0.000001 | 107,629,171.4772 | $35.19 | |
ETH | <0.01% | <$0.000001 | 286,990,192.771 | $35.09 | |
ETH | <0.01% | $0.016997 | 2,056.3441 | $34.95 | |
ETH | <0.01% | $0.363582 | 95.6849 | $34.79 | |
ETH | <0.01% | $0.11416 | 304.6973 | $34.78 | |
ETH | <0.01% | $0.01361 | 2,544.3305 | $34.63 | |
ETH | <0.01% | $0.000114 | 300,306.4887 | $34.12 | |
ETH | <0.01% | $0.021693 | 1,553.0478 | $33.69 | |
ETH | <0.01% | <$0.000001 | 260,834,357.5201 | $33.39 | |
ETH | <0.01% | $2.8 | 11.5514 | $32.34 | |
ETH | <0.01% | <$0.000001 | 121,345,238,742.3587 | $32.03 | |
ETH | <0.01% | $0.137845 | 230.382 | $31.76 | |
ETH | <0.01% | $3,336.78 | 0.00942812 | $31.46 | |
ETH | <0.01% | $0.141318 | 220.93 | $31.22 | |
ETH | <0.01% | $0.089309 | 348.0614 | $31.09 | |
ETH | <0.01% | $1.14 | 27.1908 | $31 | |
ETH | <0.01% | <$0.000001 | 705,510,501.5815 | $30.7 | |
ETH | <0.01% | $0.000101 | 301,395.2496 | $30.54 | |
ETH | <0.01% | <$0.000001 | 19,491,454,929.791 | $30.54 | |
ETH | <0.01% | $0.709548 | 42.7852 | $30.36 | |
ETH | <0.01% | <$0.000001 | 56,847,428,161.5714 | $30.29 | |
ETH | <0.01% | <$0.000001 | 457,446,033.5692 | $30.24 | |
ETH | <0.01% | <$0.000001 | 135,629,512,571.8565 | $30.15 | |
ETH | <0.01% | $0.018673 | 1,611.5356 | $30.09 | |
ETH | <0.01% | $0.311337 | 96.6158 | $30.08 | |
ETH | <0.01% | $0.00058 | 51,814.3212 | $30.05 | |
ETH | <0.01% | $0.000001 | 56,010,785.6857 | $29.92 | |
ETH | <0.01% | $0.563912 | 52.7397 | $29.74 | |
ETH | <0.01% | <$0.000001 | 182,986,542,975.4122 | $29.69 | |
ETH | <0.01% | $0.011231 | 2,613.9318 | $29.36 | |
ETH | <0.01% | $0.004285 | 6,821.4315 | $29.23 | |
ETH | <0.01% | $0.638585 | 45.7676 | $29.23 | |
ETH | <0.01% | $0.640383 | 45.5177 | $29.15 | |
ETH | <0.01% | $0.000015 | 1,868,689.248 | $28.83 | |
ETH | <0.01% | $0.766779 | 37.1954 | $28.52 | |
ETH | <0.01% | $0.034558 | 819.631 | $28.33 | |
ETH | <0.01% | <$0.000001 | 240,142,525.4291 | $28.28 | |
ETH | <0.01% | $0.206121 | 135.584 | $27.95 | |
ETH | <0.01% | $0.066854 | 415.1366 | $27.75 | |
ETH | <0.01% | $2.83 | 9.7323 | $27.58 | |
ETH | <0.01% | $0.037527 | 732.4341 | $27.49 | |
ETH | <0.01% | $0.000341 | 80,388.9847 | $27.41 | |
ETH | <0.01% | $3,052.43 | 0.00894578 | $27.31 | |
ETH | <0.01% | $0.00059 | 46,171.2083 | $27.23 | |
ETH | <0.01% | $2.97 | 9.106 | $27.04 | |
ETH | <0.01% | $0.017631 | 1,532.9663 | $27.03 | |
ETH | <0.01% | $0.035143 | 766.2297 | $26.93 | |
ETH | <0.01% | $0.999589 | 26.912 | $26.9 | |
ETH | <0.01% | <$0.000001 | 103,974,441,256.5484 | $26.67 | |
ETH | <0.01% | $2.14 | 12.4395 | $26.62 | |
ETH | <0.01% | $5.68 | 4.6368 | $26.34 | |
ETH | <0.01% | $0.020659 | 1,259.5164 | $26.02 | |
ETH | <0.01% | $0.762584 | 34.1135 | $26.01 | |
ETH | <0.01% | <$0.000001 | 3,695,598,377.6204 | $25.9 | |
ETH | <0.01% | $0.506908 | 51.035 | $25.87 | |
ETH | <0.01% | <$0.000001 | 4,561,077,360.2243 | $25.82 | |
ETH | <0.01% | $5,942.12 | 0.00430484 | $25.58 | |
ETH | <0.01% | <$0.000001 | 65,507,519.3688 | $25.55 | |
ETH | <0.01% | $1.51 | 16.9158 | $25.54 | |
ETH | <0.01% | $0.01369 | 1,864.2939 | $25.52 | |
ETH | <0.01% | $0.077943 | 327.4261 | $25.52 | |
ETH | <0.01% | $0.000001 | 26,810,836.9523 | $25.4 | |
ETH | <0.01% | $52.31 | 0.4816 | $25.19 | |
ETH | <0.01% | $0.805717 | 31.0515 | $25.02 | |
ETH | <0.01% | $0.000544 | 45,377.1818 | $24.68 | |
ETH | <0.01% | $0.016434 | 1,499.5128 | $24.64 | |
ETH | <0.01% | $0.029318 | 838.0466 | $24.57 | |
ETH | <0.01% | $0.64259 | 38.1548 | $24.52 | |
ETH | <0.01% | <$0.000001 | 1,688,604,442.5687 | $24.5 | |
ETH | <0.01% | $0.000511 | 47,903.2791 | $24.47 | |
ETH | <0.01% | $0.009161 | 2,661.6084 | $24.38 | |
ETH | <0.01% | $0.971291 | 25.0338 | $24.32 | |
ETH | <0.01% | <$0.000001 | 193,640,997.7802 | $24.31 | |
ETH | <0.01% | <$0.000001 | 152,137,369.7127 | $24.25 | |
ETH | <0.01% | $0.001971 | 12,287.783 | $24.22 | |
ETH | <0.01% | <$0.000001 | 296,470,483,131.6503 | $24.02 | |
ETH | <0.01% | $0.066904 | 358.1207 | $23.96 | |
ETH | <0.01% | $161.19 | 0.1469 | $23.68 | |
ETH | <0.01% | $0.0002 | 118,377.3794 | $23.66 | |
ETH | <0.01% | $0.000004 | 6,679,698.475 | $23.61 | |
ETH | <0.01% | $0.0271 | 870.8745 | $23.6 | |
ETH | <0.01% | $0.000001 | 17,470,842.1618 | $23.59 | |
ETH | <0.01% | $0.046696 | 502.1166 | $23.45 | |
ETH | <0.01% | $0.832979 | 28.1011 | $23.41 | |
ETH | <0.01% | <$0.000001 | 841,108,371,009.3023 | $23.38 | |
ETH | <0.01% | <$0.000001 | 283,836,644.4732 | $23.36 | |
ETH | <0.01% | $13.41 | 1.7388 | $23.32 | |
ETH | <0.01% | $0.001374 | 16,763.6465 | $23.04 | |
ETH | <0.01% | $0.000691 | 33,329.8057 | $23.03 | |
ETH | <0.01% | $0.000122 | 188,091.1324 | $22.93 | |
ETH | <0.01% | $0.674503 | 33.7193 | $22.74 | |
ETH | <0.01% | $0.000067 | 337,212.1882 | $22.73 | |
ETH | <0.01% | <$0.000001 | 15,189,737,694.1251 | $22.66 | |
ETH | <0.01% | $0.921101 | 24.5678 | $22.63 | |
ETH | <0.01% | $0.706862 | 31.8985 | $22.55 | |
ETH | <0.01% | <$0.000001 | 113,313,650.8716 | $22.44 | |
ETH | <0.01% | $18.98 | 1.1797 | $22.38 | |
ETH | <0.01% | <$0.000001 | 82,605,718,693.3071 | $22.28 | |
ETH | <0.01% | $126.37 | 0.1751 | $22.13 | |
ETH | <0.01% | <$0.000001 | 49,157,649,383.1969 | $22.12 | |
ETH | <0.01% | $1.03 | 21.4688 | $22.11 | |
ETH | <0.01% | $1.98 | 11.0272 | $21.79 | |
ETH | <0.01% | $0.084421 | 255.2172 | $21.55 | |
ETH | <0.01% | $0.012102 | 1,773.9347 | $21.47 | |
ETH | <0.01% | $0.047777 | 449.263 | $21.46 | |
ETH | <0.01% | <$0.000001 | 209,502,469,943.8165 | $21.36 | |
ETH | <0.01% | $0.197599 | 108.0025 | $21.34 | |
ETH | <0.01% | $0.015592 | 1,367.0267 | $21.31 | |
ETH | <0.01% | $0.000014 | 1,524,692.8693 | $21.24 | |
ETH | <0.01% | <$0.000001 | 152,819,601.8901 | $21.21 | |
ETH | <0.01% | $0.999748 | 21.209 | $21.2 | |
ETH | <0.01% | $0.15214 | 139.1672 | $21.17 | |
ETH | <0.01% | $0.000232 | 91,025.5358 | $21.16 | |
ETH | <0.01% | $0.058588 | 360.457 | $21.12 | |
ETH | <0.01% | $67,804.09 | 0.00030828 | $20.9 | |
ETH | <0.01% | $0.000001 | 29,634,312.3353 | $20.84 | |
ETH | <0.01% | $1.59 | 13.0272 | $20.68 | |
ETH | <0.01% | $0.029495 | 700.3969 | $20.66 | |
ETH | <0.01% | <$0.000001 | 264,892,957.7951 | $20.61 | |
ETH | <0.01% | $0.000001 | 30,450,044.3383 | $20.57 | |
ETH | <0.01% | $0.014648 | 1,401.4688 | $20.53 | |
ETH | <0.01% | $0.00003 | 674,267.0328 | $20.26 | |
ETH | <0.01% | $0.999906 | 20.2341 | $20.23 | |
ETH | <0.01% | $0.184474 | 109.4781 | $20.2 | |
ETH | <0.01% | $0.002726 | 7,343.3684 | $20.02 | |
ETH | <0.01% | $0.013564 | 1,471.6291 | $19.96 | |
ETH | <0.01% | $1.05 | 18.9064 | $19.93 | |
ETH | <0.01% | $0.302596 | 64.965 | $19.66 | |
ETH | <0.01% | $0.000001 | 26,635,269.8761 | $19.65 | |
ETH | <0.01% | $0.000003 | 5,805,622.0066 | $19.48 | |
ETH | <0.01% | $0.001067 | 18,190.7207 | $19.41 | |
ETH | <0.01% | $15.94 | 1.2124 | $19.33 | |
ETH | <0.01% | $0.000003 | 7,688,732.355 | $19.3 | |
ETH | <0.01% | $0.913431 | 21.1196 | $19.29 | |
ETH | <0.01% | $0.245536 | 78.2124 | $19.2 | |
ETH | <0.01% | <$0.000001 | 146,459,079,096.3536 | $19.07 | |
ETH | <0.01% | $0.217859 | 87.2379 | $19.01 | |
ETH | <0.01% | $0.00001 | 1,910,415.752 | $18.93 | |
ETH | <0.01% | $0.000865 | 21,851.6229 | $18.9 | |
ETH | <0.01% | $0.008518 | 2,207.0571 | $18.8 | |
ETH | <0.01% | <$0.000001 | 141,398,231.979 | $18.67 | |
ETH | <0.01% | $57.42 | 0.3223 | $18.51 | |
ETH | <0.01% | $0.349552 | 52.6435 | $18.4 | |
ETH | <0.01% | $0.390656 | 46.9161 | $18.33 | |
ETH | <0.01% | $0.78596 | 23.1332 | $18.18 | |
ETH | <0.01% | <$0.000001 | 8,852,051,989.3238 | $18.16 | |
ETH | <0.01% | $0.000207 | 87,227.5921 | $18.05 | |
ETH | <0.01% | $0.204344 | 88.2883 | $18.04 | |
ETH | <0.01% | <$0.000001 | 27,062,214,283,212.672 | $18.02 | |
ETH | <0.01% | $0.138523 | 129.9066 | $17.99 | |
ETH | <0.01% | <$0.000001 | 5,538,576,586.7589 | $17.99 | |
ETH | <0.01% | $0.006906 | 2,601.2591 | $17.96 | |
ETH | <0.01% | $0.051733 | 346.6294 | $17.93 | |
ETH | <0.01% | $0.000134 | 132,875.4212 | $17.74 | |
ETH | <0.01% | $0.003588 | 4,921.3025 | $17.66 | |
ETH | <0.01% | $0.055019 | 320.8816 | $17.65 | |
ETH | <0.01% | $8.81 | 2.0003 | $17.62 | |
ETH | <0.01% | $0.00104 | 16,937.1963 | $17.62 | |
ETH | <0.01% | <$0.000001 | 1,528,044,281.7955 | $17.61 | |
ETH | <0.01% | <$0.000001 | 44,566,752,958.8504 | $17.53 | |
ETH | <0.01% | $0.246451 | 70.7713 | $17.44 | |
ETH | <0.01% | <$0.000001 | 93,098,879.431 | $17.43 | |
ETH | <0.01% | $0.002376 | 7,318.8293 | $17.39 | |
ETH | <0.01% | $616.97 | 0.0281 | $17.36 | |
ETH | <0.01% | $0.03714 | 466.3928 | $17.32 | |
ETH | <0.01% | $0.559631 | 30.9486 | $17.32 | |
ETH | <0.01% | $0.016404 | 1,042.6338 | $17.1 | |
ETH | <0.01% | $0.00091 | 18,716.3924 | $17.03 | |
ETH | <0.01% | $2.69 | 6.3218 | $17.01 | |
ETH | <0.01% | $1.8 | 9.3656 | $16.89 | |
ETH | <0.01% | $0.000456 | 36,626.1478 | $16.72 | |
ETH | <0.01% | $0.560526 | 29.7974 | $16.7 | |
ETH | <0.01% | $0.001394 | 11,967.8789 | $16.68 | |
ETH | <0.01% | $0.00252 | 6,544.8582 | $16.49 | |
ETH | <0.01% | $0.242698 | 67.5236 | $16.39 | |
ETH | <0.01% | $7.76 | 2.1063 | $16.35 | |
ETH | <0.01% | $0.000588 | 27,774.6099 | $16.34 | |
ETH | <0.01% | $0.000132 | 122,957.9569 | $16.26 | |
ETH | <0.01% | $0.002652 | 6,121.8652 | $16.24 | |
ETH | <0.01% | $0.000012 | 1,287,885.8538 | $16.01 | |
ETH | <0.01% | $0.558926 | 28.6389 | $16.01 | |
ETH | <0.01% | $0.007044 | 2,272.4835 | $16.01 | |
ETH | <0.01% | $0.000013 | 1,227,734.6733 | $16 | |
ETH | <0.01% | $0.057828 | 275.106 | $15.91 | |
ETH | <0.01% | <$0.000001 | 83,968,024.45 | $15.9 | |
ETH | <0.01% | <$0.000001 | 66,297,281.6331 | $15.87 | |
ETH | <0.01% | $0.005365 | 2,952.6224 | $15.84 | |
ETH | <0.01% | $0.000929 | 17,024.779 | $15.82 | |
ETH | <0.01% | $0.119911 | 131.4322 | $15.76 | |
ETH | <0.01% | $0.664094 | 23.6728 | $15.72 | |
ETH | <0.01% | $0.331762 | 47.3434 | $15.71 | |
ETH | <0.01% | $0.061718 | 254.3584 | $15.7 | |
ETH | <0.01% | $0.140677 | 111.4638 | $15.68 | |
ETH | <0.01% | <$0.000001 | 1,239,555,437.2433 | $15.57 | |
ETH | <0.01% | $0.182498 | 85.0289 | $15.52 | |
ETH | <0.01% | $0.004963 | 3,108.3107 | $15.43 | |
ETH | <0.01% | <$0.000001 | 6,932,276,825.5467 | $15.41 | |
ETH | <0.01% | $0.00014 | 110,021.2964 | $15.4 | |
ETH | <0.01% | $0.000585 | 26,166.8134 | $15.31 | |
ETH | <0.01% | $0.21671 | 70.6028 | $15.3 | |
ETH | <0.01% | <$0.000001 | 1,514,478,580.0411 | $15.29 | |
ETH | <0.01% | $0.17445 | 87.4764 | $15.26 | |
ETH | <0.01% | $0.051684 | 295.0523 | $15.25 | |
ETH | <0.01% | $0.000001 | 24,708,342.9616 | $15.14 | |
ETH | <0.01% | $0.000072 | 209,788.4685 | $15.1 | |
ETH | <0.01% | <$0.000001 | 325,904,192,645.809 | $14.94 | |
ETH | <0.01% | <$0.000001 | 48,942,875.5149 | $14.92 | |
ETH | <0.01% | $0.000035 | 425,669.6622 | $14.88 | |
ETH | <0.01% | $0.075646 | 196.5675 | $14.87 | |
ETH | <0.01% | $5,074.42 | 0.00292279 | $14.83 | |
ETH | <0.01% | <$0.000001 | 12,713,854,178.4008 | $14.76 | |
ETH | <0.01% | $0.00047 | 31,396.891 | $14.74 | |
ETH | <0.01% | $0.040574 | 362.7746 | $14.72 | |
ETH | <0.01% | $0.018339 | 800.8504 | $14.69 | |
ETH | <0.01% | $0.074529 | 196.7832 | $14.67 | |
ETH | <0.01% | $0.31643 | 46.2667 | $14.64 | |
ETH | <0.01% | $0.000001 | 23,707,042.5481 | $14.64 | |
ETH | <0.01% | $0.519628 | 28.137 | $14.62 | |
ETH | <0.01% | $0.00932 | 1,565.4692 | $14.59 | |
ETH | <0.01% | $0.000084 | 171,097.1277 | $14.41 | |
ETH | <0.01% | <$0.000001 | 13,814,871,693.5596 | $14.41 | |
ETH | <0.01% | <$0.000001 | 49,718,205,101.5711 | $14.36 | |
ETH | <0.01% | <$0.000001 | 2,782,050,947.7732 | $14.32 | |
ETH | <0.01% | <$0.000001 | 279,213,815.1904 | $14.31 | |
ETH | <0.01% | $0.001187 | 12,032.3073 | $14.29 | |
ETH | <0.01% | $0.172947 | 82.57 | $14.28 | |
ETH | <0.01% | $0.196223 | 72.663 | $14.26 | |
ETH | <0.01% | $0.00074 | 19,262.698 | $14.25 | |
ETH | <0.01% | $0.053352 | 266.4115 | $14.21 | |
ETH | <0.01% | $0.322519 | 43.8483 | $14.14 | |
ETH | <0.01% | $0.003356 | 4,206.7509 | $14.12 | |
ETH | <0.01% | $0.014016 | 1,003.1186 | $14.06 | |
ETH | <0.01% | <$0.000001 | 56,639,432.7039 | $13.83 | |
ETH | <0.01% | <$0.000001 | 306,125,998.8641 | $13.83 | |
ETH | <0.01% | $20.69 | 0.666 | $13.78 | |
ETH | <0.01% | $0.000216 | 63,840.883 | $13.77 | |
ETH | <0.01% | $2.44 | 5.6361 | $13.75 | |
ETH | <0.01% | $0.012183 | 1,126.395 | $13.72 | |
ETH | <0.01% | $0.005044 | 2,716.2636 | $13.7 | |
ETH | <0.01% | <$0.000001 | 2,526,777,109.4319 | $13.67 | |
ETH | <0.01% | $0.206494 | 66.1524 | $13.66 | |
ETH | <0.01% | $0.000309 | 44,160.1336 | $13.65 | |
ETH | <0.01% | $0.292927 | 46.6011 | $13.65 | |
ETH | <0.01% | <$0.000001 | 32,842,817.0709 | $13.61 | |
ETH | <0.01% | <$0.000001 | 834,703,447,793,309.5 | $13.44 | |
ETH | <0.01% | $0.019472 | 688.604 | $13.41 | |
ETH | <0.01% | $1,784.1 | 0.00749103 | $13.36 | |
ETH | <0.01% | $0.045733 | 291.2953 | $13.32 | |
ETH | <0.01% | $0.21759 | 61.0716 | $13.29 | |
ETH | <0.01% | <$0.000001 | 270,463,071.7128 | $13.21 | |
ETH | <0.01% | $0.70663 | 18.6887 | $13.21 | |
ETH | <0.01% | $0.001996 | 6,609.7121 | $13.19 | |
ETH | <0.01% | $0.016042 | 820.0404 | $13.15 | |
ETH | <0.01% | $0.000872 | 15,023.3116 | $13.1 | |
ETH | <0.01% | $1,954.75 | 0.00669757 | $13.09 | |
ETH | <0.01% | $0.00008 | 162,925.6513 | $13.08 | |
ETH | <0.01% | $0.297966 | 43.8446 | $13.06 | |
ETH | <0.01% | $0.123296 | 105.8134 | $13.05 | |
ETH | <0.01% | $0.024071 | 540.8943 | $13.02 | |
ETH | <0.01% | $0.000053 | 243,736.6775 | $13.01 | |
ETH | <0.01% | <$0.000001 | 36,677,843.7164 | $12.87 | |
ETH | <0.01% | $0.010949 | 1,175.543 | $12.87 | |
ETH | <0.01% | <$0.000001 | 4,187,524,955.4072 | $12.85 | |
ETH | <0.01% | $0.008955 | 1,433.8509 | $12.84 | |
ETH | <0.01% | <$0.000001 | 80,618,206.4132 | $12.83 | |
ETH | <0.01% | $93,694 | 0.00013541 | $12.69 | |
ETH | <0.01% | <$0.000001 | 240,558,911.17 | $12.65 | |
ETH | <0.01% | <$0.000001 | 45,138,183.1921 | $12.62 | |
ETH | <0.01% | $0.000102 | 123,577.2956 | $12.6 | |
ETH | <0.01% | $0.015475 | 812.6227 | $12.57 | |
ETH | <0.01% | $0.009882 | 1,270.9848 | $12.56 | |
ETH | <0.01% | $0.000232 | 53,909.9024 | $12.51 | |
ETH | <0.01% | $0.206121 | 60.6364 | $12.5 | |
ETH | <0.01% | <$0.000001 | 947,424,768,183.8208 | $12.46 | |
ETH | <0.01% | $0.211029 | 59.0095 | $12.45 | |
ETH | <0.01% | $0.000425 | 29,286.5663 | $12.45 | |
ETH | <0.01% | $0.021431 | 578.4919 | $12.4 | |
ETH | <0.01% | $21.81 | 0.5679 | $12.39 | |
ETH | <0.01% | $0.000118 | 104,533.2939 | $12.32 | |
ETH | <0.01% | $0.000004 | 2,717,129.6565 | $12.17 | |
ETH | <0.01% | $0.000304 | 39,924.518 | $12.13 | |
ETH | <0.01% | $0.00214 | 5,647.9328 | $12.09 | |
ETH | <0.01% | $0.000117 | 103,504.5336 | $12.07 | |
ETH | <0.01% | $1,484.17 | 0.008118 | $12.05 | |
ETH | <0.01% | $0.335421 | 35.7881 | $12 | |
ETH | <0.01% | $0.05077 | 236.2747 | $12 | |
ETH | <0.01% | $0.050442 | 237 | $11.95 | |
ETH | <0.01% | <$0.000001 | 103,286,012.3362 | $11.87 | |
ETH | <0.01% | $0.000002 | 5,166,587.0466 | $11.83 | |
ETH | <0.01% | <$0.000001 | 66,184,362.8202 | $11.82 | |
ETH | <0.01% | <$0.000001 | 80,356,431.9809 | $11.76 | |
ETH | <0.01% | $0.006268 | 1,871.6577 | $11.73 | |
ETH | <0.01% | $0.000034 | 340,771 | $11.7 | |
ETH | <0.01% | $0.092276 | 126.6087 | $11.68 | |
ETH | <0.01% | $0.000286 | 40,749.022 | $11.66 | |
ETH | <0.01% | $0.119919 | 96.9764 | $11.63 | |
ETH | <0.01% | <$0.000001 | 14,072,496,250.958 | $11.61 | |
ETH | <0.01% | $0.000048 | 240,617.7797 | $11.58 | |
ETH | <0.01% | $0.962701 | 12.0187 | $11.57 | |
ETH | <0.01% | $0.074521 | 154.8202 | $11.54 | |
ETH | <0.01% | $0.315166 | 36.5687 | $11.53 | |
ETH | <0.01% | $0.000033 | 354,213.4436 | $11.51 | |
ETH | <0.01% | $0.001912 | 6,018.3574 | $11.51 | |
ETH | <0.01% | $0.00047 | 24,479.7765 | $11.5 | |
ETH | <0.01% | $2.89 | 3.9752 | $11.49 | |
ETH | <0.01% | $2,128.24 | 0.00539787 | $11.49 | |
ETH | <0.01% | $0.008119 | 1,410.0513 | $11.45 | |
ETH | <0.01% | $9.47 | 1.2074 | $11.43 | |
ETH | <0.01% | $0.003235 | 3,532.0041 | $11.43 | |
ETH | <0.01% | $0.11224 | 101.4686 | $11.39 | |
ETH | <0.01% | $0.008569 | 1,327.9564 | $11.38 | |
ETH | <0.01% | $0.002877 | 3,939.4497 | $11.33 | |
ETH | <0.01% | $0.204111 | 55.384 | $11.3 | |
ETH | <0.01% | <$0.000001 | 40,862,806,736.874 | $11.3 | |
ETH | <0.01% | $0.000025 | 459,584.271 | $11.27 | |
ETH | <0.01% | <$0.000001 | 110,517,993.9775 | $11.26 | |
ETH | <0.01% | $0.189059 | 59.1928 | $11.19 | |
ETH | <0.01% | <$0.000001 | 62,017,159,215.0122 | $11.19 | |
ETH | <0.01% | $0.000001 | 7,603,300.7498 | $11.13 | |
ETH | <0.01% | <$0.000001 | 39,214,674,397.1651 | $11.13 | |
ETH | <0.01% | $0.008079 | 1,364.8929 | $11.03 | |
ETH | <0.01% | <$0.000001 | 204,551,748.069 | $11.01 | |
ETH | <0.01% | $11.96 | 0.9156 | $10.95 | |
ETH | <0.01% | $0.000065 | 166,571.563 | $10.87 | |
ETH | <0.01% | $0.042174 | 255.7152 | $10.78 | |
ETH | <0.01% | $0.000744 | 14,408.9501 | $10.71 | |
ETH | <0.01% | <$0.000001 | 135,591,041.0364 | $10.67 | |
ETH | <0.01% | $0.091055 | 117.1814 | $10.67 | |
ETH | <0.01% | $0.001506 | 7,083.6249 | $10.67 | |
ETH | <0.01% | $0.000002 | 4,956,353.3778 | $10.66 | |
ETH | <0.01% | <$0.000001 | 28,807,573,070.0784 | $10.63 | |
ETH | <0.01% | $0.0058 | 1,831.958 | $10.63 | |
ETH | <0.01% | <$0.000001 | 47,767,766,279.4456 | $10.57 | |
ETH | <0.01% | $0.066086 | 159.6553 | $10.55 | |
ETH | <0.01% | $0.00165 | 6,394.4507 | $10.55 | |
ETH | <0.01% | $0.004626 | 2,267.0809 | $10.49 | |
ETH | <0.01% | $0.001021 | 10,241.7199 | $10.45 | |
ETH | <0.01% | $0.011604 | 898.9274 | $10.43 | |
ETH | <0.01% | $0.000001 | 12,456,412.9768 | $10.41 | |
ETH | <0.01% | $0.000004 | 2,408,450.8077 | $10.39 | |
ETH | <0.01% | $0.000516 | 20,114.7311 | $10.38 | |
ETH | <0.01% | $6.1 | 1.7 | $10.37 | |
ETH | <0.01% | $0.000073 | 141,361.0002 | $10.37 | |
ETH | <0.01% | $0.000102 | 101,317.4831 | $10.35 | |
ETH | <0.01% | $0.002601 | 3,956.4815 | $10.29 | |
ETH | <0.01% | <$0.000001 | 43,141,081.6934 | $10.28 | |
ETH | <0.01% | $0.000021 | 497,491.6081 | $10.26 | |
ETH | <0.01% | $0.010635 | 964.6918 | $10.26 | |
ETH | <0.01% | $0.515581 | 19.8729 | $10.25 | |
ETH | <0.01% | $0.231052 | 44.3325 | $10.24 | |
ETH | <0.01% | $0.000332 | 30,740.8587 | $10.21 | |
ETH | <0.01% | $0.187275 | 54.4912 | $10.2 | |
ETH | <0.01% | <$0.000001 | 30,503,379,969.6213 | $10.18 | |
ETH | <0.01% | $0.023004 | 439.8933 | $10.12 | |
ETH | <0.01% | <$0.000001 | 92,728,612.2805 | $10.06 | |
ETH | <0.01% | $0.000685 | 14,650.9857 | $10.04 | |
ETH | <0.01% | $0.00706 | 1,420.2624 | $10.03 | |
ETH | <0.01% | <$0.000001 | 28,124,296.4145 | $10 | |
ETH | <0.01% | $0.002048 | 4,876.8135 | $9.99 | |
ETH | <0.01% | $0.000005 | 2,118,787.008 | $9.96 | |
ETH | <0.01% | $0.251095 | 39.627 | $9.95 | |
ETH | <0.01% | $0.255888 | 38.7285 | $9.91 | |
ETH | <0.01% | <$0.000001 | 162,215,940.016 | $9.78 | |
ETH | <0.01% | $0.202903 | 48.1732 | $9.77 | |
ETH | <0.01% | <$0.000001 | 47,792,777.7676 | $9.73 | |
ETH | <0.01% | $0.000181 | 53,655.9548 | $9.69 | |
ETH | <0.01% | $0.097475 | 99.3503 | $9.68 | |
ETH | <0.01% | <$0.000001 | 186,048,528.454 | $9.65 | |
ETH | <0.01% | $0.002147 | 4,494.5586 | $9.65 | |
ETH | <0.01% | <$0.000001 | 617,372,751.3052 | $9.63 | |
ETH | <0.01% | $0.000007 | 1,376,696.334 | $9.62 | |
ETH | <0.01% | $0.000673 | 14,261.9443 | $9.59 | |
ETH | <0.01% | $0.000034 | 281,041.5397 | $9.58 | |
ETH | <0.01% | $0.000864 | 11,064.8441 | $9.56 | |
ETH | <0.01% | $0.02725 | 350.7803 | $9.56 | |
ETH | <0.01% | $0.413303 | 23.1117 | $9.55 | |
ETH | <0.01% | $0.1013 | 94.2295 | $9.55 | |
ETH | <0.01% | $3.47 | 2.7508 | $9.55 | |
ETH | <0.01% | $0.022308 | 425.6037 | $9.49 | |
ETH | <0.01% | $0.533319 | 17.6137 | $9.39 | |
ETH | <0.01% | <$0.000001 | 2,022,923,277.5042 | $9.27 | |
ETH | <0.01% | $0.000002 | 3,906,903.9355 | $9.22 | |
ETH | <0.01% | $0.000091 | 101,019.0209 | $9.22 | |
ETH | <0.01% | $0.004154 | 2,217.5858 | $9.21 | |
ETH | <0.01% | $0.091035 | 100.8719 | $9.18 | |
ETH | <0.01% | $0.001499 | 6,083.4858 | $9.12 | |
ETH | <0.01% | $1.26 | 7.21 | $9.08 | |
ETH | <0.01% | $0.008497 | 1,068.0792 | $9.08 | |
ETH | <0.01% | $0.000018 | 500,798.022 | $9.06 | |
ETH | <0.01% | $29.84 | 0.3029 | $9.04 | |
ETH | <0.01% | <$0.000001 | 142,654,127,421.0283 | $9.03 | |
ETH | <0.01% | $1.2 | 7.509 | $9 | |
ETH | <0.01% | $0.000001 | 10,172,088.8085 | $8.99 | |
ETH | <0.01% | $0.000066 | 135,626.6423 | $8.99 | |
ETH | <0.01% | $0.010889 | 822.8945 | $8.96 | |
ETH | <0.01% | $0.006626 | 1,348.6724 | $8.94 | |
ETH | <0.01% | $0.023373 | 382.1187 | $8.93 | |
ETH | <0.01% | <$0.000001 | 45,174,961.9823 | $8.91 | |
ETH | <0.01% | <$0.000001 | 168,282,874.7491 | $8.89 | |
ETH | <0.01% | $0.000293 | 30,246.6073 | $8.85 | |
ETH | <0.01% | $0.000001 | 12,993,770.1786 | $8.85 | |
ETH | <0.01% | $0.202478 | 43.6869 | $8.85 | |
ETH | <0.01% | $0.301232 | 29.3606 | $8.84 | |
ETH | <0.01% | <$0.000001 | 12,526,149,480.0358 | $8.84 | |
ETH | <0.01% | $0.0002 | 43,978.7233 | $8.79 | |
ETH | <0.01% | $0.012185 | 718.0392 | $8.75 | |
ETH | <0.01% | $1.33 | 6.5777 | $8.75 | |
ETH | <0.01% | $0.000081 | 108,153.1508 | $8.72 | |
ETH | <0.01% | $0.036085 | 239.1872 | $8.63 | |
ETH | <0.01% | $0.000072 | 119,150.9102 | $8.6 | |
ETH | <0.01% | <$0.000001 | 2,328,747,330.8688 | $8.55 | |
ETH | <0.01% | $0.154477 | 54.9641 | $8.49 | |
ETH | <0.01% | $0.00039 | 21,723.9208 | $8.47 | |
ETH | <0.01% | $0.000326 | 25,860.6673 | $8.42 | |
ETH | <0.01% | <$0.000001 | 297,157,635.105 | $8.36 | |
ETH | <0.01% | <$0.000001 | 81,871,316,500.1436 | $8.33 | |
ETH | <0.01% | $0.000116 | 71,708.6019 | $8.32 | |
ETH | <0.01% | $0.00075 | 11,032.4316 | $8.27 | |
ETH | <0.01% | $0.000592 | 13,942.8464 | $8.26 | |
ETH | <0.01% | $15.78 | 0.5234 | $8.26 | |
ETH | <0.01% | $0.000783 | 10,533.2436 | $8.25 | |
ETH | <0.01% | $0.015006 | 548.7042 | $8.23 | |
ETH | <0.01% | $0.000005 | 1,752,598.1279 | $8.22 | |
ETH | <0.01% | <$0.000001 | 119,747,133,329.1776 | $8.19 | |
ETH | <0.01% | $0.006185 | 1,320.9055 | $8.17 | |
ETH | <0.01% | $2.48 | 3.2747 | $8.12 | |
ETH | <0.01% | $0.013007 | 623.2947 | $8.11 | |
ETH | <0.01% | $0.337848 | 23.9326 | $8.09 | |
ETH | <0.01% | <$0.000001 | 77,319,868,369.0825 | $8.08 | |
ETH | <0.01% | <$0.000001 | 13,513,790,963.4096 | $8.06 | |
ETH | <0.01% | $0.000189 | 42,509.46 | $8.04 | |
ETH | <0.01% | <$0.000001 | 141,018,204.401 | $8.01 | |
ETH | <0.01% | $0.00001 | 796,396.7394 | $8 | |
ETH | <0.01% | $0.218363 | 36.491 | $7.97 | |
ETH | <0.01% | $0.000001 | 6,784,286.5512 | $7.94 | |
ETH | <0.01% | $0.074921 | 105.7626 | $7.92 | |
ETH | <0.01% | $0.000179 | 44,253.1403 | $7.9 | |
ETH | <0.01% | $0.881637 | 8.9547 | $7.89 | |
ETH | <0.01% | $0.001536 | 5,136.9719 | $7.89 | |
ETH | <0.01% | $0.000027 | 290,044.3485 | $7.81 | |
ETH | <0.01% | $1.76 | 4.4333 | $7.8 | |
ETH | <0.01% | $0.115745 | 67.3331 | $7.79 | |
ETH | <0.01% | $0.000004 | 1,945,708.3079 | $7.78 | |
ETH | <0.01% | $0.002343 | 3,297.8858 | $7.73 | |
ETH | <0.01% | $0.000002 | 3,176,113.5921 | $7.72 | |
ETH | <0.01% | $0.000002 | 4,338,098.219 | $7.7 | |
ETH | <0.01% | $0.228331 | 33.7332 | $7.7 | |
ETH | <0.01% | $0.000003 | 2,816,942.5319 | $7.68 | |
ETH | <0.01% | $0.007891 | 973.5161 | $7.68 | |
ETH | <0.01% | <$0.000001 | 239,203,941.5627 | $7.66 | |
ETH | <0.01% | $0.163216 | 46.8875 | $7.65 | |
ETH | <0.01% | $0.000071 | 107,533.8283 | $7.64 | |
ETH | <0.01% | $0.303002 | 25.0682 | $7.6 | |
ETH | <0.01% | $0.036781 | 204.2548 | $7.51 | |
ETH | <0.01% | $0.001709 | 4,394.6379 | $7.51 | |
ETH | <0.01% | $0.187263 | 39.9416 | $7.48 | |
ETH | <0.01% | $0.065172 | 114.5041 | $7.46 | |
ETH | <0.01% | <$0.000001 | 36,456,600,724.306 | $7.46 | |
ETH | <0.01% | $1.26 | 5.9023 | $7.44 | |
ETH | <0.01% | <$0.000001 | 2,387,040,458.1003 | $7.43 | |
ETH | <0.01% | $0.085799 | 86.3737 | $7.41 | |
ETH | <0.01% | $0.003532 | 2,094.8738 | $7.4 | |
ETH | <0.01% | $0.187772 | 39.2925 | $7.38 | |
ETH | <0.01% | $0.000181 | 40,345.3996 | $7.32 | |
ETH | <0.01% | $0.000002 | 3,398,611.6379 | $7.3 | |
ETH | <0.01% | <$0.000001 | 41,263,025.2693 | $7.26 | |
ETH | <0.01% | <$0.000001 | 29,465,906,117.4959 | $7.25 | |
ETH | <0.01% | <$0.000001 | 16,516,956,681.0838 | $7.21 | |
ETH | <0.01% | $0.000001 | 7,520,827.0569 | $7.2 | |
ETH | <0.01% | <$0.000001 | 14,805,685,519.4723 | $7.2 | |
ETH | <0.01% | $0.008637 | 833.7011 | $7.2 | |
ETH | <0.01% | <$0.000001 | 53,437,274.7827 | $7.15 | |
ETH | <0.01% | <$0.000001 | 3,938,789,640.1492 | $7.13 | |
ETH | <0.01% | <$0.000001 | 20,222,686,009.5751 | $7.13 | |
ETH | <0.01% | <$0.000001 | 114,739,302.2122 | $7.1 | |
ETH | <0.01% | $0.08231 | 86.0159 | $7.08 | |
ETH | <0.01% | $0.000478 | 14,798.1976 | $7.07 | |
ETH | <0.01% | $0.003887 | 1,819.3311 | $7.07 | |
ETH | <0.01% | $0.000001 | 7,383,548.1984 | $7.07 | |
ETH | <0.01% | $0.094215 | 75 | $7.07 | |
ETH | <0.01% | $0.000003 | 2,418,029.7861 | $7.06 | |
ETH | <0.01% | <$0.000001 | 66,074,794.3032 | $7.02 | |
ETH | <0.01% | <$0.000001 | 56,770,277.842 | $7.01 | |
ETH | <0.01% | <$0.000001 | 45,029,583.884 | $7 | |
ETH | <0.01% | $0.014676 | 473.6751 | $6.95 | |
ETH | <0.01% | <$0.000001 | 17,867,912,235.2225 | $6.95 | |
ETH | <0.01% | $0.008247 | 840.8353 | $6.93 | |
ETH | <0.01% | <$0.000001 | 302,610,445,048.9534 | $6.93 | |
ETH | <0.01% | <$0.000001 | 34,793,977.1532 | $6.92 | |
ETH | <0.01% | <$0.000001 | 35,484,031,784.6643 | $6.91 | |
ETH | <0.01% | $0.000588 | 11,671.592 | $6.87 | |
ETH | <0.01% | $0.032467 | 211.2311 | $6.86 | |
ETH | <0.01% | <$0.000001 | 1,734,900,317.7585 | $6.86 | |
ETH | <0.01% | <$0.000001 | 5,120,122,291.4172 | $6.86 | |
ETH | <0.01% | $0.042671 | 160.6341 | $6.85 | |
ETH | <0.01% | $1,023.72 | 0.00668029 | $6.84 | |
ETH | <0.01% | $0.000201 | 34,041.5256 | $6.84 | |
ETH | <0.01% | $0.00218 | 3,123.6894 | $6.81 | |
ETH | <0.01% | $0.033008 | 206.1504 | $6.8 | |
ETH | <0.01% | $0.05989 | 113.5245 | $6.8 | |
ETH | <0.01% | $0.024954 | 272.0851 | $6.79 | |
ETH | <0.01% | <$0.000001 | 168,121,639.0887 | $6.78 | |
ETH | <0.01% | $0.100711 | 67.302 | $6.78 | |
ETH | <0.01% | $0.001238 | 5,463.2744 | $6.76 | |
ETH | <0.01% | <$0.000001 | 42,248,557.9952 | $6.75 | |
ETH | <0.01% | $0.000461 | 14,625.9573 | $6.75 | |
ETH | <0.01% | $151.05 | 0.0444 | $6.71 | |
ETH | <0.01% | $0.005891 | 1,137.6114 | $6.7 | |
ETH | <0.01% | $1.11 | 6.0537 | $6.69 | |
ETH | <0.01% | $0.108713 | 61.4606 | $6.68 | |
ETH | <0.01% | $0.003295 | 2,026.794 | $6.68 | |
ETH | <0.01% | $0.099077 | 67.2753 | $6.67 | |
ETH | <0.01% | <$0.000001 | 131,690,015.0514 | $6.61 | |
ETH | <0.01% | $0.000029 | 224,933.3124 | $6.6 | |
ETH | <0.01% | $0.003334 | 1,978.3173 | $6.59 | |
ETH | <0.01% | $0.556959 | 11.7907 | $6.57 | |
ETH | <0.01% | $0.005884 | 1,113.8912 | $6.55 | |
ETH | <0.01% | <$0.000001 | 35,361,610,097.7522 | $6.55 | |
ETH | <0.01% | $0.000114 | 57,553.4543 | $6.54 | |
ETH | <0.01% | $0.146594 | 44.3964 | $6.51 | |
ETH | <0.01% | $0.000253 | 25,715.4386 | $6.51 | |
ETH | <0.01% | $0.000022 | 297,244.2443 | $6.46 | |
ETH | <0.01% | $0.00018 | 35,929.6652 | $6.46 | |
ETH | <0.01% | <$0.000001 | 10,694,082,026.215 | $6.46 | |
ETH | <0.01% | $0.000001 | 5,045,130.8735 | $6.45 | |
ETH | <0.01% | $0.000885 | 7,280.5317 | $6.44 | |
ETH | <0.01% | $0.001705 | 3,753.8125 | $6.4 | |
ETH | <0.01% | $0.000028 | 232,436.3665 | $6.4 | |
ETH | <0.01% | <$0.000001 | 416,805,464.188 | $6.33 | |
ETH | <0.01% | $0.169924 | 37.0941 | $6.3 | |
ETH | <0.01% | $0.000049 | 127,146.6277 | $6.25 | |
ETH | <0.01% | $0.000055 | 113,009.0666 | $6.24 | |
ETH | <0.01% | $16.85 | 0.3702 | $6.24 | |
ETH | <0.01% | <$0.000001 | 67,919,561.7046 | $6.23 | |
ETH | <0.01% | $0.05504 | 113.1066 | $6.23 | |
ETH | <0.01% | $0.007074 | 879.8148 | $6.22 | |
ETH | <0.01% | $0.000001 | 9,885,106.2821 | $6.19 | |
ETH | <0.01% | $0.007937 | 776.2952 | $6.16 | |
ETH | <0.01% | $0.000003 | 2,013,507.7624 | $6.16 | |
ETH | <0.01% | $0.007032 | 872.575 | $6.14 | |
ETH | <0.01% | $0.010881 | 562.837 | $6.12 | |
ETH | <0.01% | <$0.000001 | 59,420,636,647.7115 | $6.12 | |
ETH | <0.01% | $17.68 | 0.344 | $6.08 | |
ETH | <0.01% | $0.059344 | 102.3125 | $6.07 | |
ETH | <0.01% | $0.016908 | 358.8082 | $6.07 | |
ETH | <0.01% | $2.01 | 3.0015 | $6.03 | |
ETH | <0.01% | <$0.000001 | 128,685,335.4097 | $6.02 | |
ETH | <0.01% | $0.000299 | 20,140.0482 | $6.02 | |
ETH | <0.01% | $0.000036 | 164,900.5829 | $6.01 | |
ETH | <0.01% | $0.03472 | 172.8362 | $6 | |
ETH | <0.01% | $0.112158 | 53.3021 | $5.98 | |
ETH | <0.01% | <$0.000001 | 7,143,839,481.8462 | $5.98 | |
ETH | <0.01% | $0.000012 | 512,818.5268 | $5.94 | |
ETH | <0.01% | $0.000047 | 127,783.9006 | $5.94 | |
ETH | <0.01% | <$0.000001 | 10,522,541,632,557.65 | $5.94 | |
ETH | <0.01% | <$0.000001 | 79,250,541.8871 | $5.92 | |
ETH | <0.01% | <$0.000001 | 986,016,493.7604 | $5.92 | |
ETH | <0.01% | $0.012958 | 456.6165 | $5.92 | |
ETH | <0.01% | <$0.000001 | 10,342,673,549.1722 | $5.92 | |
ETH | <0.01% | <$0.000001 | 16,615,571,521.505 | $5.9 | |
ETH | <0.01% | $0.205444 | 28.6767 | $5.89 | |
ETH | <0.01% | $0.057517 | 102.4129 | $5.89 | |
ETH | <0.01% | $0.784348 | 7.5 | $5.88 | |
ETH | <0.01% | <$0.000001 | 9,309,629,128.2324 | $5.85 | |
ETH | <0.01% | $572.6 | 0.0102 | $5.85 | |
ETH | <0.01% | $0.436196 | 13.3815 | $5.84 | |
ETH | <0.01% | $0.110968 | 52.4568 | $5.82 | |
ETH | <0.01% | $0.002627 | 2,210.8062 | $5.81 | |
ETH | <0.01% | $0.00713 | 809.9297 | $5.77 | |
ETH | <0.01% | $0.000343 | 16,813.5214 | $5.76 | |
ETH | <0.01% | $0.003354 | 1,714.9037 | $5.75 | |
ETH | <0.01% | $0.010587 | 543.0059 | $5.75 | |
ETH | <0.01% | $0.002854 | 2,012.3047 | $5.74 | |
ETH | <0.01% | $0.00155 | 3,690.3092 | $5.72 | |
ETH | <0.01% | $2.2 | 2.5898 | $5.7 | |
ETH | <0.01% | <$0.000001 | 62,383,121,381,001.859 | $5.68 | |
ETH | <0.01% | <$0.000001 | 129,705,492.1262 | $5.64 | |
ETH | <0.01% | $0.078035 | 72.1516 | $5.63 | |
ETH | <0.01% | $0.054694 | 102.8847 | $5.63 | |
ETH | <0.01% | $2.02 | 2.7848 | $5.63 | |
ETH | <0.01% | $0.016191 | 346.1858 | $5.61 | |
ETH | <0.01% | $0.0002 | 27,984.9145 | $5.59 | |
ETH | <0.01% | $0.000009 | 629,112.716 | $5.59 | |
ETH | <0.01% | $0.000026 | 217,533.7347 | $5.57 | |
ETH | <0.01% | $0.000074 | 75,144.1725 | $5.57 | |
ETH | <0.01% | $0.002682 | 2,075.5964 | $5.57 | |
ETH | <0.01% | $0.633607 | 8.7722 | $5.56 | |
ETH | <0.01% | <$0.000001 | 92,629,303.3405 | $5.56 | |
ETH | <0.01% | $0.000338 | 16,352.0935 | $5.53 | |
ETH | <0.01% | $0.177744 | 31.0671 | $5.52 | |
ETH | <0.01% | <$0.000001 | 35,727,614.4359 | $5.49 | |
ETH | <0.01% | $0.000114 | 47,902.5808 | $5.45 | |
ETH | <0.01% | $0.02432 | 223.4265 | $5.43 | |
ETH | <0.01% | $0.010395 | 521.8852 | $5.43 | |
ETH | <0.01% | $0.155285 | 34.9278 | $5.42 | |
ETH | <0.01% | $0.000001 | 8,826,060.3401 | $5.42 | |
ETH | <0.01% | $0.00079 | 6,848.4731 | $5.41 | |
ETH | <0.01% | <$0.000001 | 46,557,260.2517 | $5.41 | |
ETH | <0.01% | <$0.000001 | 2,424,992,258.0199 | $5.4 | |
ETH | <0.01% | $0.823801 | 6.5494 | $5.4 | |
ETH | <0.01% | $0.003756 | 1,436.3987 | $5.39 | |
ETH | <0.01% | <$0.000001 | 4,580,769,479.2537 | $5.39 | |
ETH | <0.01% | $0.35713 | 15.042 | $5.37 | |
ETH | <0.01% | <$0.000001 | 9,076,400,222.9 | $5.37 | |
ETH | <0.01% | $0.020311 | 262.7223 | $5.34 | |
ETH | <0.01% | <$0.000001 | 139,515,469.9342 | $5.34 | |
ETH | <0.01% | $0.004315 | 1,227.9287 | $5.3 | |
ETH | <0.01% | <$0.000001 | 25,218,638.1042 | $5.29 | |
ETH | <0.01% | $0.000105 | 50,392.3936 | $5.28 | |
ETH | <0.01% | $0.000541 | 9,735 | $5.26 | |
ETH | <0.01% | $22.81 | 0.2305 | $5.26 | |
ETH | <0.01% | $0.010929 | 480.0593 | $5.25 | |
ETH | <0.01% | $0.238342 | 21.9488 | $5.23 | |
ETH | <0.01% | $0.000001 | 8,188,733.1886 | $5.22 | |
ETH | <0.01% | $0.851205 | 6.1298 | $5.22 | |
ETH | <0.01% | <$0.000001 | 18,695,919.6425 | $5.21 | |
ETH | <0.01% | $0.000931 | 5,578.9666 | $5.19 | |
ETH | <0.01% | <$0.000001 | 55,360,169.5487 | $5.19 | |
ETH | <0.01% | $0.003119 | 1,664.6978 | $5.19 | |
ETH | <0.01% | $0.331617 | 15.594 | $5.17 | |
ETH | <0.01% | $0.000411 | 12,565.1752 | $5.17 | |
ETH | <0.01% | $0.004003 | 1,286.2798 | $5.15 | |
ETH | <0.01% | <$0.000001 | 153,661,658.3695 | $5.12 | |
ETH | <0.01% | $0.005497 | 927.9554 | $5.1 | |
ETH | <0.01% | $0.002362 | 2,155.3964 | $5.09 | |
ETH | <0.01% | $0.221145 | 23.0071 | $5.09 | |
ETH | <0.01% | $0.005928 | 857.2462 | $5.08 | |
ETH | <0.01% | <$0.000001 | 149,837,868,021.114 | $5.08 | |
ETH | <0.01% | <$0.000001 | 15,261,413.5703 | $5.07 | |
ETH | <0.01% | $0.000077 | 66,211.1306 | $5.07 | |
ETH | <0.01% | <$0.000001 | 26,633,808.5227 | $5.04 | |
ETH | <0.01% | $0.010327 | 486.0003 | $5.02 | |
ETH | <0.01% | $0.143693 | 34.8624 | $5.01 | |
ETH | <0.01% | $0.001998 | 2,505.5309 | $5.01 | |
ETH | <0.01% | $0.57137 | 8.7612 | $5.01 | |
ETH | <0.01% | $0.062079 | 80.1424 | $4.98 | |
ETH | <0.01% | <$0.000001 | 58,342,901.75 | $4.95 | |
ETH | <0.01% | $0.147769 | 32.9918 | $4.88 | |
ETH | <0.01% | <$0.000001 | 45,124,086.3262 | $4.86 | |
ETH | <0.01% | $0.000108 | 45,151.6461 | $4.86 | |
ETH | <0.01% | $0.000001 | 4,107,102.6877 | $4.85 | |
ETH | <0.01% | $0.000006 | 744,286.2923 | $4.83 | |
ETH | <0.01% | $0.174818 | 27.5717 | $4.82 | |
ETH | <0.01% | $0.028324 | 169.0467 | $4.79 | |
ETH | <0.01% | $0.000268 | 17,762.6094 | $4.76 | |
ETH | <0.01% | $0.246449 | 19.2792 | $4.75 | |
ETH | <0.01% | $0.000646 | 7,320.7745 | $4.73 | |
ETH | <0.01% | $0.000003 | 1,671,262.9775 | $4.73 | |
ETH | <0.01% | <$0.000001 | 823,194,258.4884 | $4.71 | |
ETH | <0.01% | $0.025194 | 186.3831 | $4.7 | |
ETH | <0.01% | $0.005715 | 819.3989 | $4.68 | |
ETH | <0.01% | $0.000253 | 18,442.6054 | $4.67 | |
ETH | <0.01% | $0.045243 | 103.0668 | $4.66 | |
ETH | <0.01% | $0.538938 | 8.6448 | $4.66 | |
ETH | <0.01% | $0.014544 | 320.1016 | $4.66 | |
ETH | <0.01% | <$0.000001 | 34,316,396,649.4869 | $4.65 | |
ETH | <0.01% | $0.037117 | 124.6065 | $4.63 | |
ETH | <0.01% | $0.000182 | 25,262.6233 | $4.6 | |
ETH | <0.01% | <$0.000001 | 24,245,502,138,627.184 | $4.57 | |
ETH | <0.01% | $0.063875 | 71.5413 | $4.57 | |
ETH | <0.01% | $0.000047 | 96,567.9065 | $4.56 | |
ETH | <0.01% | $0.094686 | 48.0527 | $4.55 | |
ETH | <0.01% | $0.005457 | 832.9948 | $4.55 | |
ETH | <0.01% | $0.002672 | 1,694.2293 | $4.53 | |
ETH | <0.01% | $0.99985 | 4.5266 | $4.53 | |
ETH | <0.01% | <$0.000001 | 53,538,158.2854 | $4.52 | |
ETH | <0.01% | $187.1 | 0.0241 | $4.51 | |
ETH | <0.01% | $0.019787 | 227.9607 | $4.51 | |
ETH | <0.01% | $0.000001 | 4,889,484.8235 | $4.48 | |
ETH | <0.01% | <$0.000001 | 80,631,501.7359 | $4.47 | |
ETH | <0.01% | <$0.000001 | 35,999,311.068 | $4.46 | |
ETH | <0.01% | <$0.000001 | 4,756,691,414.8308 | $4.45 | |
ETH | <0.01% | $0.272984 | 16.2724 | $4.44 | |
ETH | <0.01% | $0.000558 | 7,947.4318 | $4.43 | |
ETH | <0.01% | $17.75 | 0.2494 | $4.43 | |
ETH | <0.01% | $0.002888 | 1,531.8778 | $4.42 | |
ETH | <0.01% | $0.000037 | 117,049.9163 | $4.38 | |
ETH | <0.01% | <$0.000001 | 16,199,471,586.4132 | $4.37 | |
ETH | <0.01% | $55.87 | 0.078 | $4.36 | |
ETH | <0.01% | <$0.000001 | 2,038,703,297.0725 | $4.35 | |
ETH | <0.01% | $0.031257 | 138.0674 | $4.32 | |
ETH | <0.01% | $0.011365 | 377.91 | $4.3 | |
ETH | <0.01% | $0.044686 | 96.0684 | $4.29 | |
ETH | <0.01% | $0.731321 | 5.7902 | $4.23 | |
ETH | <0.01% | $0.014956 | 282.959 | $4.23 | |
ETH | <0.01% | $0.004694 | 900 | $4.22 | |
ETH | <0.01% | $0.00161 | 2,622.7655 | $4.22 | |
ETH | <0.01% | <$0.000001 | 2,813,377,516.4368 | $4.22 | |
ETH | <0.01% | $0.000206 | 20,472.5928 | $4.22 | |
ETH | <0.01% | $1.21 | 3.4691 | $4.2 | |
ETH | <0.01% | $0.000058 | 71,198.3647 | $4.15 | |
ETH | <0.01% | <$0.000001 | 62,136,159.7235 | $4.15 | |
ETH | <0.01% | $0.000002 | 2,760,107.9561 | $4.14 | |
ETH | <0.01% | $0.000999 | 4,132.0832 | $4.13 | |
ETH | <0.01% | $0.000003 | 1,394,785.7505 | $4.13 | |
ETH | <0.01% | $0.000022 | 189,243.9779 | $4.13 | |
ETH | <0.01% | $0.147997 | 27.8618 | $4.12 | |
ETH | <0.01% | $6.57 | 0.6274 | $4.12 | |
ETH | <0.01% | $0.005101 | 807.4988 | $4.12 | |
ETH | <0.01% | <$0.000001 | 11,213,036,182.6436 | $4.12 | |
ETH | <0.01% | <$0.000001 | 1,314,666,990.6254 | $4.11 | |
ETH | <0.01% | $0.005571 | 737.5775 | $4.11 | |
ETH | <0.01% | $0.082396 | 49.8208 | $4.11 | |
ETH | <0.01% | $0.01466 | 279.2356 | $4.09 | |
ETH | <0.01% | $0.000621 | 6,588.6996 | $4.09 | |
ETH | <0.01% | <$0.000001 | 15,325,878,302.8384 | $4.08 | |
ETH | <0.01% | $0.059321 | 68.5961 | $4.07 | |
ETH | <0.01% | $0.004375 | 926.757 | $4.05 | |
ETH | <0.01% | $0.063298 | 64.0298 | $4.05 | |
ETH | <0.01% | $0.1781 | 22.74 | $4.05 | |
ETH | <0.01% | $0.000051 | 79,370.1166 | $4.04 | |
ETH | <0.01% | $0.000008 | 493,249.1961 | $4.03 | |
ETH | <0.01% | $0.689375 | 5.8205 | $4.01 | |
ETH | <0.01% | $0.000707 | 5,661.3016 | $4 | |
ETH | <0.01% | $4.84 | 0.826 | $4 | |
ETH | <0.01% | $0.092506 | 43.2161 | $4 | |
ETH | <0.01% | $0.122283 | 32.576 | $3.98 | |
ETH | <0.01% | <$0.000001 | 6,052,563,165.1288 | $3.98 | |
ETH | <0.01% | <$0.000001 | 324,736,492.9055 | $3.97 | |
ETH | <0.01% | $0.063398 | 62.5704 | $3.97 | |
ETH | <0.01% | $0.088604 | 44.5063 | $3.94 | |
ETH | <0.01% | $0.00215 | 1,833.2409 | $3.94 | |
ETH | <0.01% | $9.07 | 0.4337 | $3.93 | |
ETH | <0.01% | $71.34 | 0.0551 | $3.93 | |
ETH | <0.01% | $7.99 | 0.4902 | $3.92 | |
ETH | <0.01% | $0.004849 | 801.5518 | $3.89 | |
ETH | <0.01% | $0.000106 | 36,717.0883 | $3.89 | |
ETH | <0.01% | $0.009171 | 423.0382 | $3.88 | |
ETH | <0.01% | <$0.000001 | 90,520,226.1924 | $3.87 | |
ETH | <0.01% | <$0.000001 | 84,382,468.5769 | $3.85 | |
ETH | <0.01% | <$0.000001 | 13,945,640.2794 | $3.84 | |
ETH | <0.01% | <$0.000001 | 17,196,977,066,456,118 | $3.83 | |
ETH | <0.01% | $0.000058 | 65,579.7319 | $3.81 | |
ETH | <0.01% | $0.000019 | 199,611.4862 | $3.81 | |
ETH | <0.01% | $0.005613 | 675.9903 | $3.79 | |
ETH | <0.01% | $0.012561 | 301.899 | $3.79 | |
ETH | <0.01% | $0.125213 | 30.2414 | $3.79 | |
ETH | <0.01% | $8.01 | 0.4714 | $3.78 | |
ETH | <0.01% | $2.36 | 1.5915 | $3.76 | |
ETH | <0.01% | $0.027501 | 136.6084 | $3.76 | |
ETH | <0.01% | $0.001411 | 2,654.3737 | $3.75 | |
ETH | <0.01% | $0.000217 | 17,188.9541 | $3.73 | |
ETH | <0.01% | $0.013213 | 282.1524 | $3.73 | |
ETH | <0.01% | <$0.000001 | 16,909,393.0468 | $3.72 | |
ETH | <0.01% | $3.24 | 1.1464 | $3.71 | |
ETH | <0.01% | $0.000409 | 9,073.708 | $3.71 | |
ETH | <0.01% | <$0.000001 | 673,732,815,681.5394 | $3.69 | |
ETH | <0.01% | $3.68 | 1 | $3.68 | |
ETH | <0.01% | $0.000022 | 168,227.9638 | $3.67 | |
ETH | <0.01% | <$0.000001 | 52,465,897.2283 | $3.64 | |
ETH | <0.01% | $0.010825 | 336.0732 | $3.64 | |
ETH | <0.01% | $0.031651 | 114.4367 | $3.62 | |
ETH | <0.01% | $0.064074 | 56.3425 | $3.61 | |
ETH | <0.01% | $0.03101 | 116.3473 | $3.61 | |
ETH | <0.01% | $0.000427 | 8,408.3891 | $3.59 | |
ETH | <0.01% | $0.027624 | 129.7048 | $3.58 | |
ETH | <0.01% | $0.043709 | 81.4814 | $3.56 | |
ETH | <0.01% | $0.000127 | 27,969.666 | $3.56 | |
ETH | <0.01% | $535.69 | 0.0066245 | $3.55 | |
ETH | <0.01% | $0.054128 | 65.4655 | $3.54 | |
ETH | <0.01% | $0.000023 | 152,300.5991 | $3.54 | |
ETH | <0.01% | $1,902.72 | 0.00185854 | $3.54 | |
ETH | <0.01% | $0.000419 | 8,429.6797 | $3.54 | |
ETH | <0.01% | $0.108084 | 32.586 | $3.52 | |
ETH | <0.01% | $0.287549 | 12.2247 | $3.52 | |
ETH | <0.01% | $0.99181 | 3.5374 | $3.51 | |
ETH | <0.01% | $0.000021 | 165,050.3535 | $3.51 | |
ETH | <0.01% | $0.001818 | 1,927.4273 | $3.5 | |
ETH | <0.01% | <$0.000001 | 37,656,999.6965 | $3.5 | |
ETH | <0.01% | $0.001166 | 2,998.6454 | $3.5 | |
ETH | <0.01% | <$0.000001 | 4,108,848,426.8025 | $3.49 | |
ETH | <0.01% | <$0.000001 | 99,550,558.5665 | $3.49 | |
ETH | <0.01% | $22.98 | 0.1512 | $3.47 | |
ETH | <0.01% | $106.07 | 0.0328 | $3.47 | |
ETH | <0.01% | $1 | 3.4702 | $3.47 | |
ETH | <0.01% | $0.01 | 346.0361 | $3.46 | |
ETH | <0.01% | $0.044537 | 77.6472 | $3.46 | |
ETH | <0.01% | $114.13 | 0.0303 | $3.46 | |
ETH | <0.01% | <$0.000001 | 8,962,368.3225 | $3.45 | |
ETH | <0.01% | $0.00056 | 6,152.0686 | $3.45 | |
ETH | <0.01% | $0.000002 | 2,015,623.4401 | $3.44 | |
ETH | <0.01% | $0.017629 | 195.3057 | $3.44 | |
ETH | <0.01% | $0.074202 | 45.9178 | $3.41 | |
ETH | <0.01% | $0.001585 | 2,108.1777 | $3.34 | |
ETH | <0.01% | $0.000116 | 28,609.6798 | $3.33 | |
ETH | <0.01% | $0.00345 | 963.5716 | $3.32 | |
ETH | <0.01% | $0.000071 | 46,854.3018 | $3.32 | |
ETH | <0.01% | $0.000282 | 11,778.8422 | $3.32 | |
ETH | <0.01% | $0.000001 | 6,225,768.7863 | $3.31 | |
ETH | <0.01% | $11.42 | 0.2898 | $3.31 | |
ETH | <0.01% | $0.220758 | 14.9565 | $3.3 | |
ETH | <0.01% | $0.007183 | 458.0228 | $3.29 | |
ETH | <0.01% | $0.033583 | 97.8949 | $3.29 | |
ETH | <0.01% | $0.004869 | 675.0066 | $3.29 | |
ETH | <0.01% | $0.103545 | 31.7411 | $3.29 | |
ETH | <0.01% | $0.031651 | 103.8325 | $3.29 | |
ETH | <0.01% | $0.000144 | 22,816.8089 | $3.29 | |
ETH | <0.01% | <$0.000001 | 19,747,754.2357 | $3.29 | |
ETH | <0.01% | $0.000011 | 312,712.4784 | $3.28 | |
ETH | <0.01% | $0.000772 | 4,253.3706 | $3.28 | |
ETH | <0.01% | $0.086059 | 38.1219 | $3.28 | |
ETH | <0.01% | $0.002464 | 1,330.126 | $3.28 | |
ETH | <0.01% | $0.616613 | 5.2903 | $3.26 | |
ETH | <0.01% | $0.000165 | 19,780.8012 | $3.26 | |
ETH | <0.01% | $0.001171 | 2,769.585 | $3.24 | |
ETH | <0.01% | $0.000133 | 24,090.113 | $3.2 | |
ETH | <0.01% | $0.073945 | 43.1391 | $3.19 | |
ETH | <0.01% | <$0.000001 | 2,260,512,311.7236 | $3.19 | |
ETH | <0.01% | <$0.000001 | 2,683,004,298.8099 | $3.17 | |
ETH | <0.01% | $0.181215 | 17.5101 | $3.17 | |
ETH | <0.01% | $0.031575 | 100.3713 | $3.17 | |
ETH | <0.01% | <$0.000001 | 284,395,174.5408 | $3.16 | |
ETH | <0.01% | <$0.000001 | 13,156,798.4123 | $3.16 | |
ETH | <0.01% | $0.019787 | 159.7455 | $3.16 | |
ETH | <0.01% | $0.087528 | 35.9712 | $3.15 | |
ETH | <0.01% | $0.13357 | 23.4967 | $3.14 | |
ETH | <0.01% | $0.037963 | 82.5813 | $3.14 | |
ETH | <0.01% | $0.002324 | 1,349.1251 | $3.14 | |
ETH | <0.01% | $35.85 | 0.0868 | $3.11 | |
ETH | <0.01% | $0.089864 | 34.5405 | $3.1 | |
ETH | <0.01% | $0.001957 | 1,582.6701 | $3.1 | |
ETH | <0.01% | $0.00185 | 1,670.6726 | $3.09 | |
ETH | <0.01% | <$0.000001 | 12,545,197.9245 | $3.09 | |
ETH | <0.01% | $0.01586 | 194.4288 | $3.08 | |
ETH | <0.01% | $0.621605 | 4.9479 | $3.08 | |
ETH | <0.01% | $0.011478 | 267.753 | $3.07 | |
ETH | <0.01% | $0.000901 | 3,402.17 | $3.07 | |
ETH | <0.01% | $0.001378 | 2,223.1903 | $3.06 | |
ETH | <0.01% | $0.018079 | 169.4325 | $3.06 | |
ETH | <0.01% | $3.13 | 0.963 | $3.01 | |
ETH | <0.01% | $0.015227 | 197.9326 | $3.01 | |
ETH | <0.01% | $0.027966 | 107.7416 | $3.01 | |
ETH | <0.01% | $0.000268 | 11,222.7007 | $3.01 | |
ETH | <0.01% | $0.000434 | 6,938.0517 | $3.01 | |
ETH | <0.01% | $0.000029 | 103,289.04 | $3 | |
ETH | <0.01% | <$0.000001 | 123,590,918,074.0821 | $3 | |
ETH | <0.01% | $0.005544 | 540 | $2.99 | |
ETH | <0.01% | $0.025309 | 117.8447 | $2.98 | |
ETH | <0.01% | $0.000418 | 7,138.1203 | $2.98 | |
ETH | <0.01% | $0.000073 | 40,511.5088 | $2.97 | |
ETH | <0.01% | $0.000562 | 5,273.7079 | $2.96 | |
ETH | <0.01% | $0.137851 | 21.4912 | $2.96 | |
ETH | <0.01% | $0.103394 | 28.619 | $2.96 | |
ETH | <0.01% | $0.00048 | 6,159.0346 | $2.95 | |
ETH | <0.01% | $0.001301 | 2,260.6583 | $2.94 | |
ETH | <0.01% | $0.001588 | 1,850.7068 | $2.94 | |
ETH | <0.01% | $0.020235 | 145.2398 | $2.94 | |
ETH | <0.01% | $0.001399 | 2,098.0727 | $2.94 | |
ETH | <0.01% | $0.000194 | 15,082.7863 | $2.93 | |
ETH | <0.01% | $0.000017 | 169,911.27 | $2.93 | |
ETH | <0.01% | $0.081559 | 35.8357 | $2.92 | |
ETH | <0.01% | <$0.000001 | 51,430,216.2021 | $2.91 | |
ETH | <0.01% | <$0.000001 | 12,646,147.4441 | $2.91 | |
ETH | <0.01% | $0.41501 | 6.996 | $2.9 | |
ETH | <0.01% | $0.004045 | 716.6053 | $2.9 | |
ETH | <0.01% | <$0.000001 | 13,521,637,231.4717 | $2.9 | |
ETH | <0.01% | $0.047851 | 60.4823 | $2.89 | |
ETH | <0.01% | <$0.000001 | 2,485,762,346.8504 | $2.89 | |
ETH | <0.01% | $0.001373 | 2,105.9373 | $2.89 | |
ETH | <0.01% | $0.622221 | 4.6238 | $2.88 | |
ETH | <0.01% | $0.000001 | 5,144,230.0246 | $2.85 | |
ETH | <0.01% | $0.000002 | 1,314,676.851 | $2.85 | |
ETH | <0.01% | $0.000867 | 3,257.4926 | $2.83 | |
ETH | <0.01% | $0.008573 | 329.3788 | $2.82 | |
ETH | <0.01% | <$0.000001 | 60,180,506.5231 | $2.82 | |
ETH | <0.01% | $0.000028 | 101,885.8891 | $2.82 | |
ETH | <0.01% | $0.175186 | 16.0651 | $2.81 | |
ETH | <0.01% | $0.000102 | 27,536.1402 | $2.81 | |
ETH | <0.01% | <$0.000001 | 9,416,005,135,046.0137 | $2.8 | |
ETH | <0.01% | <$0.000001 | 35,871,673,352.9895 | $2.8 | |
ETH | <0.01% | $0.010444 | 268.056 | $2.8 | |
ETH | <0.01% | $0.081311 | 34.403 | $2.8 | |
ETH | <0.01% | $0.000303 | 9,198.8625 | $2.79 | |
ETH | <0.01% | <$0.000001 | 57,866,699,981.3987 | $2.78 | |
ETH | <0.01% | $0.444025 | 6.2405 | $2.77 | |
ETH | <0.01% | $0.000877 | 3,149.7306 | $2.76 | |
ETH | <0.01% | $0.000228 | 12,072.7979 | $2.75 | |
ETH | <0.01% | $0.001533 | 1,796.1358 | $2.75 | |
ETH | <0.01% | <$0.000001 | 18,486,898.0233 | $2.75 | |
ETH | <0.01% | <$0.000001 | 32,920,224,670.7072 | $2.74 | |
ETH | <0.01% | $0.083814 | 32.5123 | $2.72 | |
ETH | <0.01% | $1.48 | 1.8351 | $2.72 | |
ETH | <0.01% | $0.000001 | 4,120,972.1739 | $2.7 | |
ETH | <0.01% | <$0.000001 | 22,649,552,576.2824 | $2.7 | |
ETH | <0.01% | $0.000001 | 3,446,885.9614 | $2.7 | |
ETH | <0.01% | $0.000064 | 42,057.6991 | $2.69 | |
ETH | <0.01% | $0.000029 | 92,374.6258 | $2.69 | |
ETH | <0.01% | $0.060344 | 44.4981 | $2.69 | |
ETH | <0.01% | $0.000061 | 43,645.3963 | $2.67 | |
ETH | <0.01% | $0.000024 | 112,859.7218 | $2.67 | |
ETH | <0.01% | $0.091702 | 29.0494 | $2.66 | |
ETH | <0.01% | $0.074524 | 35.7 | $2.66 | |
ETH | <0.01% | $0.000004 | 638,138.3265 | $2.65 | |
ETH | <0.01% | $0.01457 | 181.8974 | $2.65 | |
ETH | <0.01% | $0.106558 | 24.8607 | $2.65 | |
ETH | <0.01% | $0.095192 | 27.7062 | $2.64 | |
ETH | <0.01% | $0.000111 | 23,636.5062 | $2.63 | |
ETH | <0.01% | $0.002616 | 1,007.19 | $2.63 | |
ETH | <0.01% | <$0.000001 | 57,514,070.5114 | $2.63 | |
ETH | <0.01% | $0.015843 | 165.5824 | $2.62 | |
ETH | <0.01% | $0.025754 | 101.7816 | $2.62 | |
ETH | <0.01% | <$0.000001 | 5,273,596,357.6787 | $2.61 | |
ETH | <0.01% | $0.000023 | 112,466.0673 | $2.61 | |
ETH | <0.01% | $0.000001 | 1,901,091.0524 | $2.6 | |
ETH | <0.01% | $0.000003 | 799,271.2529 | $2.6 | |
ETH | <0.01% | $0.095387 | 27.2598 | $2.6 | |
ETH | <0.01% | $0.435586 | 5.9681 | $2.6 | |
ETH | <0.01% | $0.020426 | 127.1701 | $2.6 | |
ETH | <0.01% | $0.000001 | 4,573,903.5994 | $2.58 | |
ETH | <0.01% | $0.000001 | 2,695,824.238 | $2.58 | |
ETH | <0.01% | $0.029053 | 88.3788 | $2.57 | |
ETH | <0.01% | $0.002125 | 1,206.6302 | $2.56 | |
ETH | <0.01% | <$0.000001 | 29,882,014,685.2002 | $2.55 | |
ETH | <0.01% | $0.014685 | 173.0898 | $2.54 | |
ETH | <0.01% | $0.000602 | 4,208.601 | $2.53 | |
ETH | <0.01% | $2.48 | 1.0178 | $2.52 | |
ETH | <0.01% | $0.011097 | 226.6871 | $2.52 | |
ETH | <0.01% | <$0.000001 | 28,112,263.1757 | $2.51 | |
ETH | <0.01% | $0.79383 | 3.1407 | $2.49 | |
ETH | <0.01% | <$0.000001 | 5,905,552,704.1272 | $2.49 | |
ETH | <0.01% | $0.938389 | 2.6515 | $2.49 | |
ETH | <0.01% | $0.534797 | 4.6473 | $2.49 | |
ETH | <0.01% | $0.000672 | 3,694.3282 | $2.48 | |
ETH | <0.01% | <$0.000001 | 18,959,318,182.7151 | $2.48 | |
ETH | <0.01% | $0.007942 | 312.2707 | $2.48 | |
ETH | <0.01% | $0.000108 | 22,857.2238 | $2.47 | |
ETH | <0.01% | $0.081095 | 30.4024 | $2.47 | |
ETH | <0.01% | $0.039497 | 61.6735 | $2.44 | |
ETH | <0.01% | $3.1 | 0.783 | $2.43 | |
ETH | <0.01% | $0.033819 | 71.5572 | $2.42 | |
ETH | <0.01% | <$0.000001 | 38,336,808,112.5212 | $2.42 | |
ETH | <0.01% | $0.020902 | 115.5767 | $2.42 | |
ETH | <0.01% | $0.097811 | 24.6359 | $2.41 | |
ETH | <0.01% | $0.004847 | 494.4812 | $2.4 | |
ETH | <0.01% | <$0.000001 | 1,313,850,885.1468 | $2.4 | |
ETH | <0.01% | <$0.000001 | 46,968,414,292,718.2 | $2.4 | |
ETH | <0.01% | $0.000135 | 17,709.3068 | $2.39 | |
ETH | <0.01% | $0.033947 | 70.1887 | $2.38 | |
ETH | <0.01% | $0.321272 | 7.4045 | $2.38 | |
ETH | <0.01% | $39.23 | 0.0606 | $2.38 | |
ETH | <0.01% | $0.00001 | 238,236.37 | $2.37 | |
ETH | <0.01% | $0.111466 | 21.2728 | $2.37 | |
ETH | <0.01% | $0.504168 | 4.6883 | $2.36 | |
ETH | <0.01% | $13.1 | 0.1803 | $2.36 | |
ETH | <0.01% | $0.000004 | 654,815.9385 | $2.35 | |
ETH | <0.01% | <$0.000001 | 27,665,235,365.9742 | $2.35 | |
ETH | <0.01% | $0.004148 | 564.4658 | $2.34 | |
ETH | <0.01% | $0.000001 | 3,366,945.9753 | $2.34 | |
ETH | <0.01% | $0.177323 | 13.1482 | $2.33 | |
ETH | <0.01% | $0.108973 | 21.3913 | $2.33 | |
ETH | <0.01% | <$0.000001 | 14,417,935.651 | $2.33 | |
ETH | <0.01% | $0.010909 | 211.4194 | $2.31 | |
ETH | <0.01% | $0.051984 | 44.2255 | $2.3 | |
ETH | <0.01% | $0.000462 | 4,971.561 | $2.3 | |
ETH | <0.01% | $0.752468 | 3.0463 | $2.29 | |
ETH | <0.01% | $0.000015 | 154,154.4332 | $2.28 | |
ETH | <0.01% | <$0.000001 | 788,085,429.4912 | $2.28 | |
ETH | <0.01% | $0.22042 | 10.3156 | $2.27 | |
ETH | <0.01% | $0.00027 | 8,400 | $2.27 | |
ETH | <0.01% | $1.04 | 2.1775 | $2.27 | |
ETH | <0.01% | $0.018484 | 122.0741 | $2.26 | |
ETH | <0.01% | $0.134472 | 16.7776 | $2.26 | |
ETH | <0.01% | $0.000002 | 1,355,630.5932 | $2.25 | |
ETH | <0.01% | $0.000525 | 4,282.6 | $2.25 | |
ETH | <0.01% | $0.010733 | 209.3759 | $2.25 | |
ETH | <0.01% | <$0.000001 | 55,139,054.9972 | $2.24 | |
ETH | <0.01% | $0.007114 | 314.6017 | $2.24 | |
ETH | <0.01% | $0.361982 | 6.1391 | $2.22 | |
ETH | <0.01% | $0.000033 | 66,880.454 | $2.22 | |
ETH | <0.01% | $0.024834 | 89.076 | $2.21 | |
ETH | <0.01% | $0.02212 | 99.9545 | $2.21 | |
ETH | <0.01% | $0.976537 | 2.2505 | $2.2 | |
ETH | <0.01% | $0.000006 | 359,317.2467 | $2.19 | |
ETH | <0.01% | $0.00002 | 107,983.0233 | $2.19 | |
ETH | <0.01% | $2.43 | 0.9 | $2.19 | |
ETH | <0.01% | $0.009892 | 220.5902 | $2.18 | |
ETH | <0.01% | $0.000143 | 15,252.7967 | $2.18 | |
ETH | <0.01% | $0.002163 | 1,003.8593 | $2.17 | |
ETH | <0.01% | $0.000694 | 3,104.688 | $2.16 | |
ETH | <0.01% | $1,894.54 | 0.00113665 | $2.15 | |
ETH | <0.01% | $0.22997 | 9.3522 | $2.15 | |
ETH | <0.01% | $0.000005 | 418,271.7023 | $2.15 | |
ETH | <0.01% | $0.04707 | 45.1839 | $2.13 | |
ETH | <0.01% | $0.000526 | 4,030.872 | $2.12 | |
ETH | <0.01% | $1.06 | 2.004 | $2.12 | |
ETH | <0.01% | $0.126989 | 16.6648 | $2.12 | |
ETH | <0.01% | $0.000002 | 1,247,752.2023 | $2.11 | |
ETH | <0.01% | $0.003871 | 543.384 | $2.1 | |
ETH | <0.01% | $0.000039 | 53,142.7156 | $2.08 | |
ETH | <0.01% | $0.003201 | 649.1056 | $2.08 | |
ETH | <0.01% | $0.000002 | 1,315,574.9214 | $2.08 | |
ETH | <0.01% | $0.999418 | 2.0782 | $2.08 | |
ETH | <0.01% | $0.175149 | 11.8534 | $2.08 | |
ETH | <0.01% | $0.000071 | 29,135.7076 | $2.07 | |
ETH | <0.01% | $0.000364 | 5,646.8823 | $2.06 | |
ETH | <0.01% | $0.007001 | 293.8947 | $2.06 | |
ETH | <0.01% | $98,729 | 0.00002079 | $2.05 | |
ETH | <0.01% | <$0.000001 | 90,306,988,068.1554 | $2.05 | |
ETH | <0.01% | $0.000191 | 10,729.8457 | $2.05 | |
ETH | <0.01% | <$0.000001 | 83,193,562.5157 | $2.04 | |
ETH | <0.01% | $0.00219 | 929.7329 | $2.04 | |
ETH | <0.01% | $0.117416 | 17.2636 | $2.03 | |
ETH | <0.01% | $0.00013 | 15,575.859 | $2.03 | |
ETH | <0.01% | $0.000175 | 11,541.7395 | $2.02 | |
ETH | <0.01% | $0.000205 | 9,887.2944 | $2.02 | |
ETH | <0.01% | $0.054459 | 37.0706 | $2.02 | |
ETH | <0.01% | $0.001308 | 1,543.4803 | $2.02 | |
ETH | <0.01% | $0.000001 | 1,423,866.1969 | $2.02 | |
ETH | <0.01% | <$0.000001 | 8,047,876,935.1993 | $2.01 | |
ETH | <0.01% | $0.000274 | 7,306.7895 | $2 | |
ETH | <0.01% | $0.00572 | 350.0066 | $2 | |
ETH | <0.01% | $0.000062 | 32,256.7333 | $2 | |
ETH | <0.01% | $0.002138 | 932.5003 | $1.99 | |
ETH | <0.01% | <$0.000001 | 384,099,794.4913 | $1.98 | |
ETH | <0.01% | $0.000265 | 7,463.1435 | $1.98 | |
ETH | <0.01% | $0.000058 | 34,230.9555 | $1.98 | |
ETH | <0.01% | $0.00023 | 8,544.5781 | $1.97 | |
ETH | <0.01% | $0.666385 | 2.9423 | $1.96 | |
ETH | <0.01% | $0.020023 | 97.9003 | $1.96 | |
ETH | <0.01% | $0.000043 | 44,979.2696 | $1.95 | |
ETH | <0.01% | $0.023542 | 81.7949 | $1.93 | |
ETH | <0.01% | $0.000012 | 164,775.5309 | $1.92 | |
ETH | <0.01% | <$0.000001 | 29,131,119,188.2619 | $1.92 | |
ETH | <0.01% | $0.034279 | 55.8827 | $1.92 | |
ETH | <0.01% | $0.000078 | 24,702.3484 | $1.92 | |
ETH | <0.01% | $6.75 | 0.2833 | $1.91 | |
ETH | <0.01% | $0.000114 | 16,762.8178 | $1.91 | |
ETH | <0.01% | $2.52 | 0.7585 | $1.91 | |
ETH | <0.01% | $0.000014 | 134,688.9317 | $1.9 | |
ETH | <0.01% | $0.002894 | 653.274 | $1.89 | |
ETH | <0.01% | $0.001586 | 1,190.1162 | $1.89 | |
ETH | <0.01% | $0.00018 | 10,446.8076 | $1.88 | |
ETH | <0.01% | $0.016375 | 114.6917 | $1.88 | |
ETH | <0.01% | $0.99763 | 1.8823 | $1.88 | |
ETH | <0.01% | <$0.000001 | 30,570,710.6847 | $1.88 | |
ETH | <0.01% | $0.030563 | 61.3039 | $1.87 | |
ETH | <0.01% | $0.000099 | 18,899.3015 | $1.87 | |
ETH | <0.01% | $0.003751 | 498.1522 | $1.87 | |
ETH | <0.01% | $0.065255 | 28.5847 | $1.87 | |
ETH | <0.01% | <$0.000001 | 6,291,369,006,495.4307 | $1.86 | |
ETH | <0.01% | $0.000001 | 3,089,857.6588 | $1.84 | |
ETH | <0.01% | $0.00001 | 188,882.7368 | $1.83 | |
ETH | <0.01% | $0.009979 | 181.121 | $1.81 | |
ETH | <0.01% | $0.233696 | 7.7334 | $1.81 | |
ETH | <0.01% | $0.000002 | 790,609.7441 | $1.8 | |
ETH | <0.01% | $0.999724 | 1.7986 | $1.8 | |
ETH | <0.01% | $0.047117 | 38.1263 | $1.8 | |
ETH | <0.01% | $0.005518 | 324.4977 | $1.79 | |
ETH | <0.01% | $0.004502 | 396.972 | $1.79 | |
ETH | <0.01% | $0.000772 | 2,310.3542 | $1.78 | |
ETH | <0.01% | $0.000004 | 489,792.5562 | $1.78 | |
ETH | <0.01% | $0.041803 | 42.6068 | $1.78 | |
ETH | <0.01% | $0.019015 | 93.2408 | $1.77 | |
ETH | <0.01% | $0.001565 | 1,131.6952 | $1.77 | |
ETH | <0.01% | $0.000055 | 32,352.8169 | $1.77 | |
ETH | <0.01% | $0.000677 | 2,609.8945 | $1.77 | |
ETH | <0.01% | $5.52 | 0.32 | $1.77 | |
ETH | <0.01% | <$0.000001 | 33,132,300.186 | $1.77 | |
ETH | <0.01% | <$0.000001 | 55,498,210,647.5192 | $1.76 | |
ETH | <0.01% | $0.499621 | 3.5263 | $1.76 | |
ETH | <0.01% | $0.001642 | 1,066.2404 | $1.75 | |
ETH | <0.01% | $0.663267 | 2.6314 | $1.75 | |
ETH | <0.01% | <$0.000001 | 28,180,466.2319 | $1.74 | |
ETH | <0.01% | $0.000228 | 7,552.1583 | $1.73 | |
ETH | <0.01% | $0.002134 | 808.0222 | $1.72 | |
ETH | <0.01% | <$0.000001 | 27,597,295.6128 | $1.72 | |
ETH | <0.01% | $0.000834 | 2,050.081 | $1.71 | |
ETH | <0.01% | $0.059662 | 28.6314 | $1.71 | |
ETH | <0.01% | $0.000515 | 3,302.2345 | $1.7 | |
ETH | <0.01% | $0.008554 | 198.446 | $1.7 | |
ETH | <0.01% | $0.000159 | 10,584.6215 | $1.69 | |
ETH | <0.01% | $0.000325 | 5,175.1793 | $1.68 | |
ETH | <0.01% | $0.178856 | 9.4072 | $1.68 | |
ETH | <0.01% | <$0.000001 | 16,692,980.1594 | $1.68 | |
ETH | <0.01% | $0.019933 | 83.8253 | $1.67 | |
ETH | <0.01% | $0.128545 | 12.9741 | $1.67 | |
ETH | <0.01% | $0.00261 | 638.2189 | $1.67 | |
ETH | <0.01% | $0.00079 | 2,105.1245 | $1.66 | |
ETH | <0.01% | <$0.000001 | 97,146,377.5648 | $1.66 | |
ETH | <0.01% | $0.004476 | 368.8095 | $1.65 | |
ETH | <0.01% | $0.015724 | 104.1277 | $1.64 | |
ETH | <0.01% | $0.000013 | 123,124.3764 | $1.62 | |
ETH | <0.01% | $0.014167 | 114.1309 | $1.62 | |
ETH | <0.01% | $0.008983 | 179.8382 | $1.62 | |
ETH | <0.01% | $0.012723 | 126.8154 | $1.61 | |
ETH | <0.01% | $0.071211 | 22.611 | $1.61 | |
ETH | <0.01% | $0.002554 | 629.8266 | $1.61 | |
ETH | <0.01% | $0.000265 | 6,038.8876 | $1.6 | |
ETH | <0.01% | $0.001336 | 1,197 | $1.6 | |
ETH | <0.01% | $0.001014 | 1,575.5511 | $1.6 | |
ETH | <0.01% | $4.34 | 0.3669 | $1.59 | |
ETH | <0.01% | <$0.000001 | 99,239,049,100,302,560 | $1.59 | |
ETH | <0.01% | $0.000105 | 15,162.8626 | $1.59 | |
ETH | <0.01% | $0.002672 | 593.0708 | $1.58 | |
ETH | <0.01% | <$0.000001 | 53,816,522,981.7464 | $1.56 | |
ETH | <0.01% | $0.000012 | 132,727.0334 | $1.56 | |
ETH | <0.01% | $0.000339 | 4,568.4154 | $1.55 | |
ETH | <0.01% | <$0.000001 | 6,898,331.4249 | $1.53 | |
ETH | <0.01% | $0.03074 | 49.8983 | $1.53 | |
ETH | <0.01% | $0.000001 | 2,355,326.244 | $1.53 | |
ETH | <0.01% | $0.093107 | 16.4157 | $1.53 | |
ETH | <0.01% | $0.00003 | 51,024.4812 | $1.53 | |
ETH | <0.01% | $0.539159 | 2.8314 | $1.53 | |
ETH | <0.01% | $0.000002 | 847,681.2764 | $1.53 | |
ETH | <0.01% | $0.006957 | 219.2018 | $1.53 | |
ETH | <0.01% | $0.003594 | 421.992 | $1.52 | |
ETH | <0.01% | $10.75 | 0.141 | $1.52 | |
ETH | <0.01% | $0.000243 | 6,231.5676 | $1.52 | |
ETH | <0.01% | $0.000019 | 77,697.511 | $1.51 | |
ETH | <0.01% | $0.00038 | 3,979.7642 | $1.51 | |
ETH | <0.01% | $0.022677 | 66.4994 | $1.51 | |
ETH | <0.01% | $0.002822 | 533.499 | $1.51 | |
ETH | <0.01% | $0.000223 | 6,756.6189 | $1.5 | |
ETH | <0.01% | $0.893663 | 1.6795 | $1.5 | |
ETH | <0.01% | $0.000002 | 666,936.07 | $1.49 | |
ETH | <0.01% | $0.002072 | 719.6635 | $1.49 | |
ETH | <0.01% | $0.000034 | 44,070.75 | $1.49 | |
ETH | <0.01% | $0.002093 | 708.6257 | $1.48 | |
ETH | <0.01% | $0.020985 | 70.6554 | $1.48 | |
ETH | <0.01% | $0.077128 | 19.224 | $1.48 | |
ETH | <0.01% | $0.003219 | 459.1946 | $1.48 | |
ETH | <0.01% | $0.001738 | 849.6685 | $1.48 | |
ETH | <0.01% | $0.001247 | 1,182.1429 | $1.47 | |
ETH | <0.01% | $0.134697 | 10.9423 | $1.47 | |
ETH | <0.01% | $2.53 | 0.5807 | $1.47 | |
ETH | <0.01% | $0.010732 | 136.7358 | $1.47 | |
ETH | <0.01% | <$0.000001 | 35,761,841.8739 | $1.47 | |
ETH | <0.01% | $0.000223 | 6,572.69 | $1.46 | |
ETH | <0.01% | $0.00226 | 645.6188 | $1.46 | |
ETH | <0.01% | $0.001536 | 948.756 | $1.46 | |
ETH | <0.01% | $0.004085 | 356.6138 | $1.46 | |
ETH | <0.01% | $0.052113 | 27.9 | $1.45 | |
ETH | <0.01% | $1.28 | 1.1348 | $1.45 | |
ETH | <0.01% | $0.001048 | 1,384.0645 | $1.45 | |
ETH | <0.01% | $0.000131 | 11,043.4389 | $1.44 | |
ETH | <0.01% | $0.000389 | 3,700.113 | $1.44 | |
ETH | <0.01% | $0.136093 | 10.5316 | $1.43 | |
ETH | <0.01% | $0.162664 | 8.7885 | $1.43 | |
ETH | <0.01% | <$0.000001 | 15,683,681,275.6522 | $1.42 | |
ETH | <0.01% | <$0.000001 | 3,924,994,709.2362 | $1.42 | |
ETH | <0.01% | $0.191424 | 7.4098 | $1.42 | |
ETH | <0.01% | $0.998621 | 1.4193 | $1.42 | |
ETH | <0.01% | $0.00012 | 11,695.8425 | $1.41 | |
ETH | <0.01% | $0.000155 | 9,058.2009 | $1.4 | |
ETH | <0.01% | $27.46 | 0.0509 | $1.4 | |
ETH | <0.01% | $0.000532 | 2,625.9088 | $1.4 | |
ETH | <0.01% | $0.000019 | 72,083.1597 | $1.4 | |
ETH | <0.01% | $0.110331 | 12.635 | $1.39 | |
ETH | <0.01% | $0.000014 | 100,805.0038 | $1.39 | |
ETH | <0.01% | $0.002124 | 653.9039 | $1.39 | |
ETH | <0.01% | $0.00397 | 348.8299 | $1.38 | |
ETH | <0.01% | $0.074342 | 18.591 | $1.38 | |
ETH | <0.01% | <$0.000001 | 48,647,105.5559 | $1.38 | |
ETH | <0.01% | $14.57 | 0.0946 | $1.38 | |
ETH | <0.01% | $0.001548 | 888.9164 | $1.38 | |
ETH | <0.01% | $0.023943 | 57.3509 | $1.37 | |
ETH | <0.01% | <$0.000001 | 13,970,365.3648 | $1.37 | |
ETH | <0.01% | $0.005991 | 228.545 | $1.37 | |
ETH | <0.01% | $0.003612 | 378.7966 | $1.37 | |
ETH | <0.01% | $0.000034 | 39,897.2755 | $1.37 | |
ETH | <0.01% | $0.000324 | 4,212.8529 | $1.36 | |
ETH | <0.01% | $0.0008 | 1,695.7578 | $1.36 | |
ETH | <0.01% | $0.365127 | 3.7036 | $1.35 | |
ETH | <0.01% | $373.6 | 0.00361779 | $1.35 | |
ETH | <0.01% | $1.57 | 0.8591 | $1.35 | |
ETH | <0.01% | $0.00014 | 9,592.5994 | $1.34 | |
ETH | <0.01% | $0.03066 | 43.8278 | $1.34 | |
ETH | <0.01% | $0.006472 | 206.9696 | $1.34 | |
ETH | <0.01% | $0.031847 | 41.9562 | $1.34 | |
ETH | <0.01% | $0.022833 | 58.2317 | $1.33 | |
ETH | <0.01% | $0.001597 | 832.2852 | $1.33 | |
ETH | <0.01% | <$0.000001 | 8,891,925.2284 | $1.32 | |
ETH | <0.01% | $0.130987 | 10.0656 | $1.32 | |
ETH | <0.01% | $0.000145 | 9,085.5732 | $1.32 | |
ETH | <0.01% | <$0.000001 | 11,688,014.4028 | $1.31 | |
ETH | <0.01% | $0.04529 | 28.9485 | $1.31 | |
ETH | <0.01% | $0.000001 | 1,212,295.7504 | $1.31 | |
ETH | <0.01% | $0.003536 | 369.5529 | $1.31 | |
ETH | <0.01% | <$0.000001 | 22,353,782.9831 | $1.3 | |
ETH | <0.01% | $0.055687 | 23.3616 | $1.3 | |
ETH | <0.01% | $0.00386 | 336.4768 | $1.3 | |
ETH | <0.01% | $0.000673 | 1,930.9128 | $1.3 | |
ETH | <0.01% | <$0.000001 | 14,382,321.0859 | $1.29 | |
ETH | <0.01% | $0.046284 | 27.8232 | $1.29 | |
ETH | <0.01% | $0.000979 | 1,315.4126 | $1.29 | |
ETH | <0.01% | $1.2 | 1.0643 | $1.28 | |
ETH | <0.01% | $0.001028 | 1,239.6929 | $1.27 | |
ETH | <0.01% | $0.000004 | 286,966.5493 | $1.27 | |
ETH | <0.01% | $0.001272 | 999.999 | $1.27 | |
ETH | <0.01% | $0.004461 | 284.4485 | $1.27 | |
ETH | <0.01% | $0.000007 | 169,465.5464 | $1.27 | |
ETH | <0.01% | $0.00003 | 42,815.527 | $1.26 | |
ETH | <0.01% | $2.2 | 0.573 | $1.26 | |
ETH | <0.01% | $0.013153 | 95.5015 | $1.26 | |
ETH | <0.01% | $0.186303 | 6.7275 | $1.25 | |
ETH | <0.01% | $0.753113 | 1.6633 | $1.25 | |
ETH | <0.01% | $0.06685 | 18.7099 | $1.25 | |
ETH | <0.01% | $0.000515 | 2,423.2568 | $1.25 | |
ETH | <0.01% | $0.810801 | 1.5385 | $1.25 | |
ETH | <0.01% | $0.000045 | 28,004.4109 | $1.25 | |
ETH | <0.01% | $0.000031 | 40,779.253 | $1.25 | |
ETH | <0.01% | $0.006778 | 183.5635 | $1.24 | |
ETH | <0.01% | $0.409358 | 3.0386 | $1.24 | |
ETH | <0.01% | $0.009465 | 131.289 | $1.24 | |
ETH | <0.01% | $0.32368 | 3.8024 | $1.23 | |
ETH | <0.01% | <$0.000001 | 7,245,240,335.5837 | $1.23 | |
ETH | <0.01% | $0.000008 | 152,413.3628 | $1.23 | |
ETH | <0.01% | $0.038177 | 32.0726 | $1.22 | |
ETH | <0.01% | <$0.000001 | 14,533,390,897.2543 | $1.22 | |
ETH | <0.01% | $0.000335 | 3,633 | $1.22 | |
ETH | <0.01% | $0.032918 | 36.6853 | $1.21 | |
ETH | <0.01% | $0.690658 | 1.7471 | $1.21 | |
ETH | <0.01% | <$0.000001 | 8,118,105,490.4918 | $1.2 | |
ETH | <0.01% | <$0.000001 | 238,814,422,697,158.5 | $1.2 | |
ETH | <0.01% | $0.001937 | 620.6002 | $1.2 | |
ETH | <0.01% | <$0.000001 | 335,092,539,162,961.44 | $1.19 | |
ETH | <0.01% | $0.015904 | 74.1839 | $1.18 | |
ETH | <0.01% | $0.00002 | 57,513.9025 | $1.18 | |
ETH | <0.01% | $0.000002 | 596,836.2048 | $1.18 | |
ETH | <0.01% | <$0.000001 | 2,159,599,696.7045 | $1.17 | |
ETH | <0.01% | $0.001733 | 673.8422 | $1.17 | |
ETH | <0.01% | $0.000575 | 2,022.2713 | $1.16 | |
ETH | <0.01% | <$0.000001 | 21,255,691.5034 | $1.15 | |
ETH | <0.01% | $0.000012 | 92,269.7964 | $1.15 | |
ETH | <0.01% | $0.99877 | 1.15 | $1.15 | |
ETH | <0.01% | $0.000005 | 252,643.3264 | $1.15 | |
ETH | <0.01% | $0.00003 | 38,212.4151 | $1.14 | |
ETH | <0.01% | $0.31644 | 3.6123 | $1.14 | |
ETH | <0.01% | $3.27 | 0.3489 | $1.14 | |
ETH | <0.01% | <$0.000001 | 196,765,987.79 | $1.14 | |
ETH | <0.01% | <$0.000001 | 12,368,049.9438 | $1.13 | |
ETH | <0.01% | $0.000875 | 1,289.256 | $1.13 | |
ETH | <0.01% | $0.003998 | 282.1489 | $1.13 | |
ETH | <0.01% | $0.003071 | 367.0821 | $1.13 | |
ETH | <0.01% | $0.151793 | 7.4203 | $1.13 | |
ETH | <0.01% | <$0.000001 | 9,079,515.0155 | $1.12 | |
ETH | <0.01% | <$0.000001 | 12,563,192.3505 | $1.12 | |
ETH | <0.01% | $0.039161 | 28.535 | $1.12 | |
ETH | <0.01% | <$0.000001 | 34,372,230,874.3162 | $1.12 | |
ETH | <0.01% | <$0.000001 | 5,219,015.7705 | $1.12 | |
ETH | <0.01% | $0.000235 | 4,723.2431 | $1.11 | |
ETH | <0.01% | $0.003654 | 300 | $1.1 | |
ETH | <0.01% | $0.00008 | 13,757.7943 | $1.1 | |
ETH | <0.01% | $252.36 | 0.00434131 | $1.1 | |
ETH | <0.01% | <$0.000001 | 7,389,102.4664 | $1.09 | |
ETH | <0.01% | $0.000826 | 1,324.5734 | $1.09 | |
ETH | <0.01% | $0.041614 | 26.2186 | $1.09 | |
ETH | <0.01% | $0.000001 | 881,722.5647 | $1.08 | |
ETH | <0.01% | $0.001535 | 705.0291 | $1.08 | |
ETH | <0.01% | $0.014353 | 75.2427 | $1.08 | |
ETH | <0.01% | $0.006138 | 175.5965 | $1.08 | |
ETH | <0.01% | $0.045908 | 23.4669 | $1.08 | |
ETH | <0.01% | $0.000608 | 1,758.8839 | $1.07 | |
ETH | <0.01% | $0.001229 | 866.6636 | $1.07 | |
ETH | <0.01% | $0.009987 | 106.6725 | $1.07 | |
ETH | <0.01% | $0.05601 | 18.9834 | $1.06 | |
ETH | <0.01% | $0.004018 | 264 | $1.06 | |
ETH | <0.01% | $0.005152 | 205.8551 | $1.06 | |
ETH | <0.01% | $0.000387 | 2,733.0613 | $1.06 | |
ETH | <0.01% | $0.001464 | 722.3219 | $1.06 | |
ETH | <0.01% | $0.000639 | 1,650.671 | $1.06 | |
ETH | <0.01% | <$0.000001 | 154,542,864,021.5272 | $1.05 | |
ETH | <0.01% | $0.000179 | 5,882.0734 | $1.05 | |
ETH | <0.01% | $0.651927 | 1.6163 | $1.05 | |
ETH | <0.01% | $0.000444 | 2,354.2504 | $1.05 | |
ETH | <0.01% | $0.000008 | 135,572.3612 | $1.05 | |
ETH | <0.01% | $0.003405 | 305.9311 | $1.04 | |
ETH | <0.01% | $0.009169 | 113.5155 | $1.04 | |
ETH | <0.01% | $0.004413 | 235.2094 | $1.04 | |
ETH | <0.01% | $0.000019 | 53,060.3239 | $1.03 | |
ETH | <0.01% | $0.005768 | 178.555 | $1.03 | |
ETH | <0.01% | $0.071558 | 14.3698 | $1.03 | |
ETH | <0.01% | $0.000001 | 803,797.3643 | $1.03 | |
ETH | <0.01% | $0.000153 | 6,707.8379 | $1.03 | |
ETH | <0.01% | $6.38 | 0.1596 | $1.02 | |
ETH | <0.01% | $0.000094 | 10,746.2811 | $1.01 | |
ETH | <0.01% | $0.051296 | 19.7448 | $1.01 | |
ETH | <0.01% | $2.73 | 0.3703 | $1.01 | |
ETH | <0.01% | $0.003765 | 268.346 | $1.01 | |
ETH | <0.01% | $0.000976 | 1,033.2816 | $1.01 | |
ETH | <0.01% | $1.14 | 0.882 | $1.01 | |
ETH | <0.01% | $0.002112 | 474.7329 | $1 | |
ETH | <0.01% | <$0.000001 | 119,805,396.2415 | $0.994 | |
ETH | <0.01% | <$0.000001 | 14,037,249.0545 | $0.994 | |
ETH | <0.01% | $0.000498 | 1,981.9622 | $0.9868 | |
ETH | <0.01% | $1.31 | 0.7507 | $0.9864 | |
ETH | <0.01% | $0.011533 | 85.5158 | $0.9862 | |
ETH | <0.01% | $7.14 | 0.1377 | $0.9833 | |
ETH | <0.01% | $0.000012 | 84,947.5783 | $0.9811 | |
ETH | <0.01% | $2.7 | 0.3624 | $0.9786 | |
ETH | <0.01% | $0.000245 | 3,992.83 | $0.9781 | |
ETH | <0.01% | $0.001779 | 548.2957 | $0.9753 | |
ETH | <0.01% | <$0.000001 | 7,699,892,261.0752 | $0.974 | |
ETH | <0.01% | <$0.000001 | 3,479,066.6939 | $0.9726 | |
ETH | <0.01% | $0.000315 | 3,089.6712 | $0.9725 | |
ETH | <0.01% | $0.017947 | 53.7894 | $0.9653 | |
ETH | <0.01% | $0.099779 | 9.6711 | $0.9649 | |
ETH | <0.01% | $0.000225 | 4,274.8788 | $0.9624 | |
ETH | <0.01% | $0.105669 | 9.084 | $0.9598 | |
ETH | <0.01% | $0.000095 | 10,000.8953 | $0.9489 | |
ETH | <0.01% | $0.030387 | 30.909 | $0.9392 | |
ETH | <0.01% | $0.005506 | 170.565 | $0.9391 | |
ETH | <0.01% | $0.000009 | 103,256.7256 | $0.9386 | |
ETH | <0.01% | $0.013322 | 70.4376 | $0.9383 | |
ETH | <0.01% | $0.105083 | 8.9041 | $0.9356 | |
ETH | <0.01% | $0.401235 | 2.3296 | $0.9346 | |
ETH | <0.01% | <$0.000001 | 15,733,592.0987 | $0.933 | |
ETH | <0.01% | $0.003404 | 273.06 | $0.9293 | |
ETH | <0.01% | $0.00045 | 2,063.2675 | $0.9291 | |
ETH | <0.01% | $0.000174 | 5,331.0831 | $0.9286 | |
ETH | <0.01% | $0.000001 | 762,838.626 | $0.9281 | |
ETH | <0.01% | $0.000397 | 2,339.061 | $0.9281 | |
ETH | <0.01% | $0.000099 | 9,328.4124 | $0.9209 | |
ETH | <0.01% | <$0.000001 | 31,590,184.8249 | $0.9168 | |
ETH | <0.01% | $0.017232 | 52.9662 | $0.9127 | |
ETH | <0.01% | $1.29 | 0.7053 | $0.9098 | |
ETH | <0.01% | $0.000052 | 17,530.1761 | $0.9087 | |
ETH | <0.01% | $0.000017 | 53,347.6881 | $0.9041 | |
ETH | <0.01% | $0.037131 | 24.3512 | $0.9041 | |
ETH | <0.01% | <$0.000001 | 3,760,650,497.1558 | $0.9028 | |
ETH | <0.01% | $0.143103 | 6.3064 | $0.9024 | |
ETH | <0.01% | <$0.000001 | 6,025,628,517.6056 | $0.9023 | |
ETH | <0.01% | $0.089886 | 10.0106 | $0.8998 | |
ETH | <0.01% | <$0.000001 | 2,937,239.2956 | $0.8928 | |
ETH | <0.01% | $0.000012 | 75,648.0515 | $0.8918 | |
ETH | <0.01% | $0.0024 | 371.195 | $0.8907 | |
ETH | <0.01% | $0.00001 | 84,758.559 | $0.8899 | |
ETH | <0.01% | $0.006384 | 139.085 | $0.8878 | |
ETH | <0.01% | $0.009834 | 90.0602 | $0.8856 | |
ETH | <0.01% | $0.000001 | 1,349,504.9842 | $0.8838 | |
ETH | <0.01% | $0.270263 | 3.264 | $0.8821 | |
ETH | <0.01% | $0.195161 | 4.5196 | $0.882 | |
ETH | <0.01% | $0.000028 | 31,542.8341 | $0.8771 | |
ETH | <0.01% | $0.000007 | 127,120.6365 | $0.8758 | |
ETH | <0.01% | <$0.000001 | 15,615,244,296.741 | $0.8734 | |
ETH | <0.01% | $0.003567 | 244.8195 | $0.8732 | |
ETH | <0.01% | $0.489908 | 1.7805 | $0.8722 | |
ETH | <0.01% | $0.044836 | 19.4416 | $0.8716 | |
ETH | <0.01% | $0.007097 | 122.4854 | $0.8692 | |
ETH | <0.01% | $0.000029 | 29,899.4406 | $0.8691 | |
ETH | <0.01% | $0.00035 | 2,481.0916 | $0.8673 | |
ETH | <0.01% | $0.023958 | 36.1847 | $0.8669 | |
ETH | <0.01% | $0.001606 | 538.9746 | $0.8657 | |
ETH | <0.01% | $0.002037 | 423.9512 | $0.8635 | |
ETH | <0.01% | $1.3 | 0.662 | $0.8606 | |
ETH | <0.01% | $0.000152 | 5,646.3427 | $0.8564 | |
ETH | <0.01% | $2.93 | 0.2917 | $0.8547 | |
ETH | <0.01% | $0.328876 | 2.5969 | $0.854 | |
ETH | <0.01% | $0.00005 | 16,915.7044 | $0.8528 | |
ETH | <0.01% | $0.000007 | 115,134.912 | $0.8524 | |
ETH | <0.01% | $0.000376 | 2,244.812 | $0.8442 | |
ETH | <0.01% | $0.060368 | 13.9449 | $0.8418 | |
ETH | <0.01% | $0.019639 | 42.733 | $0.8392 | |
ETH | <0.01% | $0.000123 | 6,750.9984 | $0.8303 | |
ETH | <0.01% | $0.000006 | 128,523.0176 | $0.8251 | |
ETH | <0.01% | $0.001648 | 500.0335 | $0.8239 | |
ETH | <0.01% | $0.01701 | 48.3353 | $0.8221 | |
ETH | <0.01% | $0.273804 | 3.0006 | $0.8215 | |
ETH | <0.01% | $0.000924 | 888.3181 | $0.8211 | |
ETH | <0.01% | <$0.000001 | 15,463,014,764.6133 | $0.8202 | |
ETH | <0.01% | $0.001471 | 554.8673 | $0.816 | |
ETH | <0.01% | $0.000118 | 6,902.9402 | $0.8148 | |
ETH | <0.01% | $0.00117 | 696.1881 | $0.8147 | |
ETH | <0.01% | $0.031976 | 25.4145 | $0.8126 | |
ETH | <0.01% | $0.000168 | 4,839.4518 | $0.8123 | |
ETH | <0.01% | <$0.000001 | 26,628,868,838.5566 | $0.8118 | |
ETH | <0.01% | $0.001691 | 479 | $0.8099 | |
ETH | <0.01% | $0.000359 | 2,241.9312 | $0.8057 | |
ETH | <0.01% | $0.007311 | 110.1568 | $0.8053 | |
ETH | <0.01% | <$0.000001 | 34,525,081.1687 | $0.8033 | |
ETH | <0.01% | $0.04417 | 18.1598 | $0.8021 | |
ETH | <0.01% | <$0.000001 | 10,763,777,053.9451 | $0.7988 | |
ETH | <0.01% | $0.000082 | 9,668.5281 | $0.7971 | |
ETH | <0.01% | <$0.000001 | 44,263,257.8205 | $0.7941 | |
ETH | <0.01% | $0.001805 | 438.5547 | $0.7916 | |
ETH | <0.01% | $0.000326 | 2,424.9327 | $0.791 | |
ETH | <0.01% | $0.038257 | 20.6577 | $0.7903 | |
ETH | <0.01% | $0.005589 | 141.0847 | $0.7885 | |
ETH | <0.01% | $0.000138 | 5,679.0447 | $0.7859 | |
ETH | <0.01% | <$0.000001 | 148,834,826,683.9375 | $0.7833 | |
ETH | <0.01% | $0.0025 | 312.9455 | $0.7823 | |
ETH | <0.01% | $0.00122 | 635.8523 | $0.7755 | |
ETH | <0.01% | <$0.000001 | 83,480,473.2419 | $0.7704 | |
ETH | <0.01% | $0.00003 | 26,055.0414 | $0.7686 | |
ETH | <0.01% | $0.009391 | 81.7794 | $0.7679 | |
ETH | <0.01% | $0.006378 | 120.3 | $0.7672 | |
ETH | <0.01% | <$0.000001 | 9,246,409,436.8888 | $0.7644 | |
ETH | <0.01% | $0.001904 | 401.3768 | $0.7644 | |
ETH | <0.01% | $0.002056 | 371.2723 | $0.7634 | |
ETH | <0.01% | $0.000012 | 61,850.4746 | $0.7632 | |
ETH | <0.01% | $0.866611 | 0.8787 | $0.7614 | |
ETH | <0.01% | $0.049875 | 15.1852 | $0.7573 | |
ETH | <0.01% | $0.000486 | 1,556.763 | $0.7559 | |
ETH | <0.01% | $0.000117 | 6,427.7155 | $0.751 | |
ETH | <0.01% | $0.000125 | 5,982.9937 | $0.7498 | |
ETH | <0.01% | $0.426046 | 1.7485 | $0.7449 | |
ETH | <0.01% | $0.003569 | 207.3002 | $0.7397 | |
ETH | <0.01% | $0.493108 | 1.5 | $0.7396 | |
ETH | <0.01% | $0.002475 | 297.9608 | $0.7375 | |
ETH | <0.01% | $0.021092 | 34.8449 | $0.7349 | |
ETH | <0.01% | $3.06 | 0.2399 | $0.734 | |
ETH | <0.01% | $0.000317 | 2,311.7617 | $0.7338 | |
ETH | <0.01% | $0.000752 | 974.3336 | $0.7325 | |
ETH | <0.01% | $0.000014 | 50,737.1486 | $0.7321 | |
ETH | <0.01% | $0.185749 | 3.939 | $0.7316 | |
ETH | <0.01% | $0.233775 | 3.1252 | $0.7305 | |
ETH | <0.01% | $2,012 | 0.00036279 | $0.7299 | |
ETH | <0.01% | $19.03 | 0.0383 | $0.7287 | |
ETH | <0.01% | $0.01644 | 44.2611 | $0.7276 | |
ETH | <0.01% | $0.000032 | 22,748.4206 | $0.7255 | |
ETH | <0.01% | $0.001568 | 462.2248 | $0.7249 | |
ETH | <0.01% | $0.06721 | 10.7701 | $0.7238 | |
ETH | <0.01% | $0.000003 | 260,864.8856 | $0.7225 | |
ETH | <0.01% | $0.005938 | 121.3629 | $0.7206 | |
ETH | <0.01% | $0.024727 | 29.0963 | $0.7194 | |
ETH | <0.01% | $0.025929 | 27.7476 | $0.7194 | |
ETH | <0.01% | $0.001052 | 679.0103 | $0.7139 | |
ETH | <0.01% | $0.18736 | 3.8046 | $0.7128 | |
ETH | <0.01% | <$0.000001 | 3,476,946.5021 | $0.7105 | |
ETH | <0.01% | <$0.000001 | 7,244,241.0581 | $0.7101 | |
ETH | <0.01% | <$0.000001 | 3,910,531,823,346.68 | $0.71 | |
ETH | <0.01% | $0.000056 | 12,611.0814 | $0.7096 | |
ETH | <0.01% | $0.000551 | 1,287.1055 | $0.7094 | |
ETH | <0.01% | <$0.000001 | 28,450,104.5046 | $0.706 | |
ETH | <0.01% | $0.00413 | 170.5992 | $0.7045 | |
ETH | <0.01% | $0.000031 | 22,396.9161 | $0.7016 | |
ETH | <0.01% | $0.005321 | 131.712 | $0.7008 | |
ETH | <0.01% | $0.004748 | 147.5242 | $0.7003 | |
ETH | <0.01% | $0.007512 | 93.2243 | $0.7002 | |
ETH | <0.01% | $0.002954 | 236.7048 | $0.6992 | |
ETH | <0.01% | $0.000692 | 1,010.5023 | $0.6989 | |
ETH | <0.01% | $0.000001 | 1,280,197.5246 | $0.6978 | |
ETH | <0.01% | $0.001109 | 629.146 | $0.6974 | |
ETH | <0.01% | $616.37 | 0.00113047 | $0.6967 | |
ETH | <0.01% | $0.000007 | 94,237.9034 | $0.6964 | |
ETH | <0.01% | $0.002164 | 318.1133 | $0.6885 | |
ETH | <0.01% | $0.000035 | 19,749.6741 | $0.6873 | |
ETH | <0.01% | $0.000019 | 36,772.6595 | $0.6858 | |
ETH | <0.01% | <$0.000001 | 8,941,217,020.0769 | $0.6851 | |
ETH | <0.01% | $0.000074 | 9,223.6519 | $0.685 | |
ETH | <0.01% | $0.010578 | 64.7111 | $0.6845 | |
ETH | <0.01% | $0.000115 | 5,939.6419 | $0.6812 | |
ETH | <0.01% | $0.64856 | 1.0445 | $0.6774 | |
ETH | <0.01% | $0.000069 | 9,843.3 | $0.6762 | |
ETH | <0.01% | $0.000002 | 329,755.9608 | $0.6719 | |
ETH | <0.01% | $0.011139 | 60.2092 | $0.6706 | |
ETH | <0.01% | $0.00048 | 1,392.1279 | $0.6675 | |
ETH | <0.01% | $0.000171 | 3,893.76 | $0.6647 | |
ETH | <0.01% | $0.006112 | 108.4487 | $0.6628 | |
ETH | <0.01% | $0.027956 | 23.6166 | $0.6602 | |
ETH | <0.01% | <$0.000001 | 236,716,133,667.0658 | $0.659 | |
ETH | <0.01% | $0.000004 | 171,116.1381 | $0.6587 | |
ETH | <0.01% | $0.025889 | 25.4171 | $0.658 | |
ETH | <0.01% | $0.029095 | 22.5166 | $0.6551 | |
ETH | <0.01% | $0.007008 | 93.4523 | $0.6549 | |
ETH | <0.01% | <$0.000001 | 4,906,873,471.9989 | $0.6527 | |
ETH | <0.01% | $0.000047 | 13,895.1643 | $0.6526 | |
ETH | <0.01% | $0.101733 | 6.3911 | $0.6501 | |
ETH | <0.01% | <$0.000001 | 10,608,488.8529 | $0.6488 | |
ETH | <0.01% | $0.000322 | 2,012.5098 | $0.6478 | |
ETH | <0.01% | $0.199528 | 3.2454 | $0.6475 | |
ETH | <0.01% | $0.021419 | 30.1491 | $0.6457 | |
ETH | <0.01% | $0.30933 | 2.0674 | $0.6395 | |
ETH | <0.01% | $0.000366 | 1,740.9258 | $0.6368 | |
ETH | <0.01% | $0.012364 | 51.252 | $0.6336 | |
ETH | <0.01% | $0.002376 | 265.5568 | $0.6309 | |
ETH | <0.01% | $0.013844 | 45.424 | $0.6288 | |
ETH | <0.01% | <$0.000001 | 4,105,253,166.1946 | $0.6251 | |
ETH | <0.01% | $0.006692 | 92.6471 | $0.62 | |
ETH | <0.01% | $0.000235 | 2,639.1485 | $0.6195 | |
ETH | <0.01% | $3.2 | 0.1927 | $0.6165 | |
ETH | <0.01% | $0.000301 | 2,043.6077 | $0.616 | |
ETH | <0.01% | <$0.000001 | 9,563,576.5117 | $0.6148 | |
ETH | <0.01% | $0.000237 | 2,589.8679 | $0.6125 | |
ETH | <0.01% | $0.013679 | 44.6578 | $0.6108 | |
ETH | <0.01% | $0.038115 | 16.0196 | $0.6105 | |
ETH | <0.01% | $0.000411 | 1,483.167 | $0.6098 | |
ETH | <0.01% | <$0.000001 | 3,556,080,033.0607 | $0.6088 | |
ETH | <0.01% | <$0.000001 | 9,807,457,124.79 | $0.6078 | |
ETH | <0.01% | <$0.000001 | 2,000,959.6545 | $0.6069 | |
ETH | <0.01% | $0.02323 | 26.127 | $0.6069 | |
ETH | <0.01% | $0.019083 | 31.7998 | $0.6068 | |
ETH | <0.01% | $24.71 | 0.0245 | $0.6063 | |
ETH | <0.01% | $0.000174 | 3,477.3002 | $0.6061 | |
ETH | <0.01% | $0.000526 | 1,144.7774 | $0.6021 | |
ETH | <0.01% | $0.002174 | 275.5069 | $0.5989 | |
ETH | <0.01% | $0.006102 | 98.0524 | $0.5983 | |
ETH | <0.01% | <$0.000001 | 9,735,309.5878 | $0.5952 | |
ETH | <0.01% | $0.025599 | 23.2426 | $0.5949 | |
ETH | <0.01% | $0.024727 | 23.99 | $0.5932 | |
ETH | <0.01% | $0.000361 | 1,642.25 | $0.5929 | |
ETH | <0.01% | <$0.000001 | 1,318,480.3035 | $0.5924 | |
ETH | <0.01% | $0.001148 | 515.1139 | $0.5913 | |
ETH | <0.01% | $0.000555 | 1,063.3275 | $0.5903 | |
ETH | <0.01% | $0.000484 | 1,219.5318 | $0.59 | |
ETH | <0.01% | $0.007501 | 78.0447 | $0.5854 | |
ETH | <0.01% | $0.023717 | 24.5132 | $0.5813 | |
ETH | <0.01% | $0.001069 | 540.3183 | $0.5775 | |
ETH | <0.01% | <$0.000001 | 10,122,600,874.3112 | $0.5743 | |
ETH | <0.01% | $0.001856 | 309.4119 | $0.5742 | |
ETH | <0.01% | $0.424688 | 1.35 | $0.5733 | |
ETH | <0.01% | $0.000004 | 147,039.1556 | $0.5724 | |
ETH | <0.01% | $1,755.01 | 0.00032501 | $0.5704 | |
ETH | <0.01% | <$0.000001 | 2,118,062.9674 | $0.5693 | |
ETH | <0.01% | $0.000348 | 1,637.5116 | $0.5691 | |
ETH | <0.01% | $0.000418 | 1,361.2076 | $0.5685 | |
ETH | <0.01% | $0.274655 | 2.07 | $0.5685 | |
ETH | <0.01% | $0.073795 | 7.6881 | $0.5673 | |
ETH | <0.01% | $0.013434 | 42.0422 | $0.5648 | |
ETH | <0.01% | <$0.000001 | 4,903,894.8877 | $0.562 | |
ETH | <0.01% | $0.000008 | 74,205.9415 | $0.5595 | |
ETH | <0.01% | <$0.000001 | 1,615,096,922.4732 | $0.5551 | |
ETH | <0.01% | $3.81 | 0.1452 | $0.5531 | |
ETH | <0.01% | $0.000027 | 20,083.354 | $0.55 | |
ETH | <0.01% | $0.000253 | 2,161.1275 | $0.5468 | |
ETH | <0.01% | $0.22175 | 2.4634 | $0.5462 | |
ETH | <0.01% | $0.000341 | 1,583.2642 | $0.5402 | |
ETH | <0.01% | $0.000045 | 12,059.0149 | $0.5393 | |
ETH | <0.01% | $0.000002 | 237,465.0705 | $0.5378 | |
ETH | <0.01% | $0.003795 | 141.6356 | $0.5374 | |
ETH | <0.01% | $0.002095 | 255.3581 | $0.5349 | |
ETH | <0.01% | $0.002494 | 214.5321 | $0.5349 | |
ETH | <0.01% | $0.032953 | 15.9992 | $0.5272 | |
ETH | <0.01% | <$0.000001 | 30,048,243.4565 | $0.5256 | |
ETH | <0.01% | $11.98 | 0.0439 | $0.5255 | |
ETH | <0.01% | $0.000211 | 2,471.0242 | $0.5216 | |
ETH | <0.01% | $0.000541 | 962.8867 | $0.521 | |
ETH | <0.01% | $0.000278 | 1,869.3855 | $0.5203 | |
ETH | <0.01% | $0.000876 | 593.0996 | $0.5198 | |
ETH | <0.01% | $0.00036 | 1,439.9386 | $0.5186 | |
ETH | <0.01% | $0.008356 | 62.005 | $0.5181 | |
ETH | <0.01% | $0.000223 | 2,303 | $0.5134 | |
ETH | <0.01% | <$0.000001 | 1,130,099,900.9293 | $0.5131 | |
ETH | <0.01% | $0.000164 | 3,123.5772 | $0.5115 | |
ETH | <0.01% | $0.000076 | 6,696.3712 | $0.509 | |
ETH | <0.01% | $1.21 | 0.4199 | $0.508 | |
ETH | <0.01% | $0.000004 | 129,526.3948 | $0.5061 | |
ETH | <0.01% | $0.006577 | 76.8811 | $0.5056 | |
ETH | <0.01% | <$0.000001 | 10,114,990.0634 | $0.5053 | |
ETH | <0.01% | $0.136588 | 3.6853 | $0.5033 | |
ETH | <0.01% | $0.016075 | 31.1673 | $0.501 | |
ETH | <0.01% | $4.54 | 0.1099 | $0.4991 | |
ETH | <0.01% | $0.050073 | 9.8513 | $0.4932 | |
ETH | <0.01% | $0.042198 | 11.6825 | $0.4929 | |
ETH | <0.01% | $0.07944 | 6.2051 | $0.4929 | |
ETH | <0.01% | $0.049318 | 9.9745 | $0.4919 | |
ETH | <0.01% | <$0.000001 | 17,672,369.2369 | $0.4899 | |
ETH | <0.01% | $0.000053 | 9,187.8831 | $0.4877 | |
ETH | <0.01% | $0.073828 | 6.5979 | $0.4871 | |
ETH | <0.01% | $0.009292 | 52.2851 | $0.4858 | |
ETH | <0.01% | $0.017854 | 27.144 | $0.4846 | |
ETH | <0.01% | <$0.000001 | 701,125,488.8772 | $0.4838 | |
ETH | <0.01% | $0.003956 | 122.321 | $0.4838 | |
ETH | <0.01% | $0.000001 | 345,688.3831 | $0.4836 | |
ETH | <0.01% | $0.006386 | 75.744 | $0.4836 | |
ETH | <0.01% | $0.002342 | 205.9074 | $0.4822 | |
ETH | <0.01% | $0.008012 | 60.1614 | $0.4819 | |
ETH | <0.01% | <$0.000001 | 2,059,987.7479 | $0.4811 | |
ETH | <0.01% | $0.000843 | 570 | $0.4803 | |
ETH | <0.01% | $0.021666 | 22.0343 | $0.4773 | |
ETH | <0.01% | $0.000014 | 33,327.3288 | $0.4769 | |
ETH | <0.01% | $0.296174 | 1.6097 | $0.4767 | |
ETH | <0.01% | <$0.000001 | 16,302,414,052.7072 | $0.4762 | |
ETH | <0.01% | $0.000224 | 2,103.3638 | $0.4701 | |
ETH | <0.01% | $0.031568 | 14.826 | $0.468 | |
ETH | <0.01% | $0.000157 | 2,985.9064 | $0.4676 | |
ETH | <0.01% | $0.000979 | 476.9952 | $0.4671 | |
ETH | <0.01% | $43.11 | 0.0107 | $0.462 | |
ETH | <0.01% | $0.005017 | 91.9478 | $0.4612 | |
ETH | <0.01% | $0.002543 | 181.1474 | $0.4606 | |
ETH | <0.01% | $0.000377 | 1,220.934 | $0.46 | |
ETH | <0.01% | <$0.000001 | 8,728,885,315.2832 | $0.459 | |
ETH | <0.01% | $0.085606 | 5.3574 | $0.4586 | |
ETH | <0.01% | $0.000193 | 2,370 | $0.4578 | |
ETH | <0.01% | $0.070278 | 6.5089 | $0.4574 | |
ETH | <0.01% | $0.00007 | 6,519.7306 | $0.4572 | |
ETH | <0.01% | $0.000219 | 2,081.4983 | $0.4559 | |
ETH | <0.01% | $0.070673 | 6.4507 | $0.4558 | |
ETH | <0.01% | $0.00004 | 11,312.9079 | $0.4515 | |
ETH | <0.01% | $0.004345 | 103.4704 | $0.4495 | |
ETH | <0.01% | $0.001644 | 272.8805 | $0.4486 | |
ETH | <0.01% | <$0.000001 | 73,964,754.8635 | $0.4479 | |
ETH | <0.01% | $9.25 | 0.0483 | $0.4469 | |
ETH | <0.01% | $0.000037 | 11,854.6404 | $0.4438 | |
ETH | <0.01% | $0.004261 | 103.9998 | $0.4431 | |
ETH | <0.01% | $0.000473 | 934.4453 | $0.4419 | |
ETH | <0.01% | $0.006615 | 66.7748 | $0.4417 | |
ETH | <0.01% | $0.020698 | 21.3214 | $0.4413 | |
ETH | <0.01% | $0.000046 | 9,675.8284 | $0.4405 | |
ETH | <0.01% | $0.034737 | 12.6621 | $0.4398 | |
ETH | <0.01% | $0.003887 | 113.0467 | $0.4393 | |
ETH | <0.01% | $0.000363 | 1,202.5907 | $0.4366 | |
ETH | <0.01% | $0.003366 | 129.6315 | $0.4362 | |
ETH | <0.01% | <$0.000001 | 2,142,125.9829 | $0.4358 | |
ETH | <0.01% | $0.030971 | 14 | $0.4335 | |
ETH | <0.01% | <$0.000001 | 28,882,690,149,490.141 | $0.4331 | |
ETH | <0.01% | $0.032934 | 13.0957 | $0.4312 | |
ETH | <0.01% | $0.000017 | 25,538.06 | $0.4292 | |
ETH | <0.01% | $0.037299 | 11.401 | $0.4252 | |
ETH | <0.01% | $0.000155 | 2,745.2958 | $0.4248 | |
ETH | <0.01% | $0.093219 | 4.55 | $0.4241 | |
ETH | <0.01% | $0.000014 | 30,325.5848 | $0.4197 | |
ETH | <0.01% | $1.13 | 0.367 | $0.4146 | |
ETH | <0.01% | $0.000017 | 24,201.0632 | $0.4115 | |
ETH | <0.01% | $1.14 | 0.36 | $0.4103 | |
ETH | <0.01% | $0.000001 | 381,575.08 | $0.4082 | |
ETH | <0.01% | $0.001824 | 223.6649 | $0.4078 | |
ETH | <0.01% | $0.183411 | 2.2209 | $0.4073 | |
ETH | <0.01% | $8.3 | 0.0491 | $0.4073 | |
ETH | <0.01% | $0.006933 | 58.4266 | $0.405 | |
ETH | <0.01% | $0.002899 | 139.3875 | $0.404 | |
ETH | <0.01% | $0.017739 | 22.7211 | $0.403 | |
ETH | <0.01% | $0.00027 | 1,487.0172 | $0.4015 | |
ETH | <0.01% | $0.023124 | 17.3603 | $0.4014 | |
ETH | <0.01% | $0.000666 | 600 | $0.3995 | |
ETH | <0.01% | $0.020274 | 19.6878 | $0.3991 | |
ETH | <0.01% | $0.000361 | 1,104.349 | $0.3982 | |
ETH | <0.01% | <$0.000001 | 22,297,576,275.0202 | $0.398 | |
ETH | <0.01% | $0.000879 | 452.6315 | $0.398 | |
ETH | <0.01% | $0.000014 | 28,113.6276 | $0.3975 | |
ETH | <0.01% | $34.51 | 0.0115 | $0.396 | |
ETH | <0.01% | $0.006717 | 58.7991 | $0.3949 | |
ETH | <0.01% | $1.23 | 0.3191 | $0.3924 | |
ETH | <0.01% | $0.001041 | 375.7121 | $0.3912 | |
ETH | <0.01% | $0.000039 | 9,926.2307 | $0.3904 | |
ETH | <0.01% | $0.003527 | 110.6683 | $0.3903 | |
ETH | <0.01% | $0.01659 | 23.4588 | $0.3891 | |
ETH | <0.01% | $0.000856 | 454.0216 | $0.3884 | |
ETH | <0.01% | $0.000297 | 1,298.1126 | $0.3855 | |
ETH | <0.01% | $0.001483 | 259.7256 | $0.3852 | |
ETH | <0.01% | $0.007563 | 50.5635 | $0.3824 | |
ETH | <0.01% | $0.08107 | 4.7144 | $0.3821 | |
ETH | <0.01% | <$0.000001 | 3,611,863,212.597 | $0.3816 | |
ETH | <0.01% | $0.000043 | 8,799.642 | $0.3805 | |
ETH | <0.01% | <$0.000001 | 10,251,508.1012 | $0.3791 | |
ETH | <0.01% | $0.479857 | 0.7902 | $0.3791 | |
ETH | <0.01% | $0.000063 | 5,940.9306 | $0.3739 | |
ETH | <0.01% | $0.007308 | 51.0149 | $0.3727 | |
ETH | <0.01% | $0.000373 | 996.0121 | $0.3718 | |
ETH | <0.01% | $0.035843 | 10.35 | $0.3709 | |
ETH | <0.01% | $0.0001 | 3,689.1855 | $0.3674 | |
ETH | <0.01% | $0.00014 | 2,615.6382 | $0.3668 | |
ETH | <0.01% | $0.00001 | 37,891.0814 | $0.3641 | |
ETH | <0.01% | $0.01057 | 34.4481 | $0.3641 | |
ETH | <0.01% | $2.84 | 0.1281 | $0.3637 | |
ETH | <0.01% | $0.00011 | 3,301.8346 | $0.3636 | |
ETH | <0.01% | $0.038367 | 9.4639 | $0.363 | |
ETH | <0.01% | $0.056847 | 6.3856 | $0.363 | |
ETH | <0.01% | $0.001764 | 202.9989 | $0.358 | |
ETH | <0.01% | $0.007936 | 45.0927 | $0.3578 | |
ETH | <0.01% | $0.008783 | 40.6928 | $0.3574 | |
ETH | <0.01% | $8,121.62 | 0.00004382 | $0.3558 | |
ETH | <0.01% | $0.003843 | 92.3648 | $0.3549 | |
ETH | <0.01% | $0.014001 | 25.354 | $0.3549 | |
ETH | <0.01% | <$0.000001 | 9,896,105.1441 | $0.3546 | |
ETH | <0.01% | $9.37 | 0.0378 | $0.3543 | |
ETH | <0.01% | $0.000002 | 193,254.4053 | $0.352 | |
ETH | <0.01% | $0.999572 | 0.3519 | $0.3517 | |
ETH | <0.01% | $0.00233 | 150.8371 | $0.3514 | |
ETH | <0.01% | $0.322641 | 1.0848 | $0.35 | |
ETH | <0.01% | $0.591034 | 0.5922 | $0.3499 | |
ETH | <0.01% | $0.000135 | 2,576.112 | $0.349 | |
ETH | <0.01% | <$0.000001 | 7,600,909.992 | $0.3466 | |
ETH | <0.01% | $0.000211 | 1,633.0801 | $0.3451 | |
ETH | <0.01% | <$0.000001 | 2,099,302,844,735.2161 | $0.3448 | |
ETH | <0.01% | $0.00573 | 60 | $0.3438 | |
ETH | <0.01% | $0.000009 | 37,799.5599 | $0.3431 | |
ETH | <0.01% | $0.016374 | 20.9245 | $0.3426 | |
ETH | <0.01% | <$0.000001 | 4,196,095,393.7313 | $0.3411 | |
ETH | <0.01% | $0.000003 | 97,755.3631 | $0.3401 | |
ETH | <0.01% | $0.001077 | 313.9841 | $0.3383 | |
ETH | <0.01% | $0.015133 | 22.3389 | $0.338 | |
ETH | <0.01% | $0.014269 | 23.6801 | $0.3378 | |
ETH | <0.01% | $0.021279 | 15.8563 | $0.3374 | |
ETH | <0.01% | $0.000149 | 2,261.2864 | $0.3369 | |
ETH | <0.01% | $0.000847 | 397.6148 | $0.3369 | |
ETH | <0.01% | $0.039945 | 8.3527 | $0.3336 | |
ETH | <0.01% | $3,331.53 | 0.0001 | $0.3331 | |
ETH | <0.01% | $27.37 | 0.012 | $0.3295 | |
ETH | <0.01% | $0.257368 | 1.2786 | $0.329 | |
ETH | <0.01% | $0.000656 | 500.1408 | $0.3283 | |
ETH | <0.01% | $0.007838 | 41.8273 | $0.3278 | |
ETH | <0.01% | $0.013763 | 23.8018 | $0.3275 | |
ETH | <0.01% | $0.127434 | 2.5645 | $0.3268 | |
ETH | <0.01% | $0.409561 | 0.7978 | $0.3267 | |
ETH | <0.01% | $0.011059 | 29.5066 | $0.3263 | |
ETH | <0.01% | $0.000723 | 450.5287 | $0.3257 | |
ETH | <0.01% | $0.000025 | 13,150.1153 | $0.3252 | |
ETH | <0.01% | $0.000599 | 543.0122 | $0.3251 | |
ETH | <0.01% | $0.104059 | 3.1108 | $0.3237 | |
ETH | <0.01% | $0.159749 | 2.0214 | $0.3229 | |
ETH | <0.01% | $0.000266 | 1,213 | $0.3227 | |
ETH | <0.01% | <$0.000001 | 697,512.136 | $0.3217 | |
ETH | <0.01% | $0.000848 | 378.8482 | $0.3213 | |
ETH | <0.01% | $0.001575 | 202.0627 | $0.3183 | |
ETH | <0.01% | $0.000016 | 19,202.3265 | $0.3156 | |
ETH | <0.01% | $0.785256 | 0.402 | $0.3156 | |
ETH | <0.01% | $0.000624 | 504.5724 | $0.3147 | |
ETH | <0.01% | $0.03472 | 9 | $0.3124 | |
ETH | <0.01% | $0.114378 | 2.7018 | $0.309 | |
ETH | <0.01% | $0.001836 | 168 | $0.3084 | |
ETH | <0.01% | $0.00024 | 1,283.4717 | $0.3078 | |
ETH | <0.01% | $0.002622 | 117.3524 | $0.3077 | |
ETH | <0.01% | $0.000235 | 1,308.6629 | $0.3076 | |
ETH | <0.01% | $0.000419 | 732.5891 | $0.307 | |
ETH | <0.01% | $0.000041 | 7,514.1037 | $0.3062 | |
ETH | <0.01% | $0.000027 | 11,285.3804 | $0.3061 | |
ETH | <0.01% | $1 | 0.3033 | $0.3042 | |
ETH | <0.01% | $0.082941 | 3.6664 | $0.304 | |
ETH | <0.01% | $0.004449 | 67.9306 | $0.3022 | |
ETH | <0.01% | $0.000088 | 3,423.9418 | $0.3011 | |
ETH | <0.01% | $0.06095 | 4.935 | $0.3007 | |
ETH | <0.01% | $0.000618 | 486.3389 | $0.3006 | |
ETH | <0.01% | $0.01002 | 30 | $0.3006 | |
ETH | <0.01% | $0.011247 | 26.7115 | $0.3004 | |
ETH | <0.01% | $0.199702 | 1.4859 | $0.2967 | |
ETH | <0.01% | $0.000355 | 834.6104 | $0.2965 | |
ETH | <0.01% | $0.000052 | 5,691.0531 | $0.296 | |
ETH | <0.01% | $0.064931 | 4.5419 | $0.2949 | |
ETH | <0.01% | $0.000013 | 23,017.7069 | $0.2915 | |
ETH | <0.01% | $0.000841 | 346.1466 | $0.2912 | |
ETH | <0.01% | $0.073513 | 3.9535 | $0.2906 | |
ETH | <0.01% | $0.00052 | 557.8151 | $0.2902 | |
ETH | <0.01% | <$0.000001 | 2,780,136.3218 | $0.2896 | |
ETH | <0.01% | <$0.000001 | 2,560,112.7968 | $0.2885 | |
ETH | <0.01% | $0.000006 | 49,099.9601 | $0.2882 | |
ETH | <0.01% | $0.000215 | 1,343.6331 | $0.2882 | |
ETH | <0.01% | $0.000001 | 431,176.8728 | $0.2873 | |
ETH | <0.01% | $0.000538 | 533.5011 | $0.287 | |
ETH | <0.01% | $0.00439 | 65.25 | $0.2864 | |
ETH | <0.01% | $0.001835 | 155.81 | $0.2859 | |
ETH | <0.01% | $0.0072 | 39.6458 | $0.2854 | |
ETH | <0.01% | $0.006731 | 42.263 | $0.2844 | |
ETH | <0.01% | $0.000042 | 6,705.5196 | $0.2831 | |
ETH | <0.01% | $0.000065 | 4,358.4808 | $0.2817 | |
ETH | <0.01% | $0.000016 | 17,738.1559 | $0.2809 | |
ETH | <0.01% | $0.010589 | 26.4915 | $0.2805 | |
ETH | <0.01% | $0.000006 | 43,557.2898 | $0.2797 | |
ETH | <0.01% | $0.000062 | 4,513.7066 | $0.2793 | |
ETH | <0.01% | $2.14 | 0.13 | $0.2781 | |
ETH | <0.01% | $0.000002 | 125,161.101 | $0.2778 | |
ETH | <0.01% | $0.000462 | 601.1958 | $0.2778 | |
ETH | <0.01% | <$0.000001 | 14,618,831,383.4382 | $0.277 | |
ETH | <0.01% | $0.459293 | 0.5984 | $0.2748 | |
ETH | <0.01% | $0.000352 | 779.3619 | $0.274 | |
ETH | <0.01% | $0.000852 | 321.3791 | $0.2739 | |
ETH | <0.01% | $0.000662 | 410.3898 | $0.2715 | |
ETH | <0.01% | $0.02623 | 10.35 | $0.2714 | |
ETH | <0.01% | $0.007889 | 34.1691 | $0.2695 | |
ETH | <0.01% | $0.447851 | 0.6 | $0.2687 | |
ETH | <0.01% | $0.086992 | 3.0775 | $0.2677 | |
ETH | <0.01% | $0.00337 | 79.2906 | $0.2671 | |
ETH | <0.01% | $0.000212 | 1,236.2303 | $0.262 | |
ETH | <0.01% | $0.001455 | 180 | $0.2619 | |
ETH | <0.01% | $0.00006 | 4,314.7802 | $0.2608 | |
ETH | <0.01% | $0.000739 | 351.4685 | $0.2598 | |
ETH | <0.01% | $0.129427 | 1.9978 | $0.2585 | |
ETH | <0.01% | <$0.000001 | 1,244,208.0541 | $0.2584 | |
ETH | <0.01% | $0.00099 | 260.9365 | $0.2583 | |
ETH | <0.01% | $0.000074 | 3,486.8805 | $0.2579 | |
ETH | <0.01% | $0.000317 | 806.0722 | $0.2551 | |
ETH | <0.01% | $0.201508 | 1.266 | $0.2551 | |
ETH | <0.01% | $0.002023 | 125.7178 | $0.2543 | |
ETH | <0.01% | $0.000001 | 289,348.3375 | $0.2536 | |
ETH | <0.01% | $1,689.45 | 0.00014989 | $0.2532 | |
ETH | <0.01% | $0.112346 | 2.2385 | $0.2514 | |
ETH | <0.01% | $0.000471 | 532.5892 | $0.251 | |
ETH | <0.01% | $0.065434 | 3.8305 | $0.2506 | |
ETH | <0.01% | $0.000021 | 11,967.9684 | $0.2498 | |
ETH | <0.01% | $0.000064 | 3,896.2086 | $0.2484 | |
ETH | <0.01% | $0.000576 | 429.243 | $0.2473 | |
ETH | <0.01% | $0.000022 | 11,110.2078 | $0.2467 | |
ETH | <0.01% | $0.082107 | 3 | $0.2463 | |
ETH | <0.01% | $0.003524 | 69.8783 | $0.2462 | |
ETH | <0.01% | $0.000574 | 426.9058 | $0.2451 | |
ETH | <0.01% | $0.999761 | 0.2449 | $0.2447 | |
ETH | <0.01% | $0.000241 | 1,011.974 | $0.2442 | |
ETH | <0.01% | $0.001083 | 224.8379 | $0.2434 | |
ETH | <0.01% | $0.003608 | 67.1573 | $0.2422 | |
ETH | <0.01% | $0.000274 | 882.4897 | $0.2414 | |
ETH | <0.01% | <$0.000001 | 21,613,519.2884 | $0.2377 | |
ETH | <0.01% | $0.000035 | 6,781.9888 | $0.2372 | |
ETH | <0.01% | $0.000115 | 2,067.711 | $0.237 | |
ETH | <0.01% | $0.000538 | 438.9572 | $0.2362 | |
ETH | <0.01% | $0.000001 | 391,293.818 | $0.2355 | |
ETH | <0.01% | $0.00001 | 22,645.3957 | $0.233 | |
ETH | <0.01% | $0.000089 | 2,598.1622 | $0.2308 | |
ETH | <0.01% | $0.030445 | 7.5583 | $0.2301 | |
ETH | <0.01% | $0.001648 | 137.6873 | $0.2268 | |
ETH | <0.01% | $0.021118 | 10.7125 | $0.2262 | |
ETH | <0.01% | <$0.000001 | 496,490.28 | $0.2248 | |
ETH | <0.01% | $0.000108 | 2,078.499 | $0.2236 | |
ETH | <0.01% | $0.041302 | 5.3948 | $0.2228 | |
ETH | <0.01% | $0.205771 | 1.0791 | $0.222 | |
ETH | <0.01% | $0.000229 | 964.269 | $0.2212 | |
ETH | <0.01% | $0.000029 | 7,618.5669 | $0.2206 | |
ETH | <0.01% | $0.000258 | 852.1598 | $0.2199 | |
ETH | <0.01% | $0.093193 | 2.3606 | $0.2199 | |
ETH | <0.01% | $0.000817 | 268.6146 | $0.2195 | |
ETH | <0.01% | $0.000619 | 354.3688 | $0.2192 | |
ETH | <0.01% | <$0.000001 | 70,521,587.1925 | $0.2183 | |
ETH | <0.01% | $0.000123 | 1,772.6051 | $0.2171 | |
ETH | <0.01% | $0.000516 | 420 | $0.2168 | |
ETH | <0.01% | $1.31 | 0.1643 | $0.2154 | |
ETH | <0.01% | $12.32 | 0.0174 | $0.2148 | |
ETH | <0.01% | $0.000007 | 31,425.52 | $0.2133 | |
ETH | <0.01% | <$0.000001 | 1,032,480,682.7265 | $0.2129 | |
ETH | <0.01% | $0.00069 | 305.8985 | $0.2111 | |
ETH | <0.01% | $0.002001 | 105.3513 | $0.2108 | |
ETH | <0.01% | $0.012121 | 17.3817 | $0.2106 | |
ETH | <0.01% | $0.00455 | 46.2801 | $0.2105 | |
ETH | <0.01% | $0.000012 | 18,146.0532 | $0.21 | |
ETH | <0.01% | $0.000011 | 19,375.1021 | $0.2097 | |
ETH | <0.01% | $0.003782 | 55.4025 | $0.2095 | |
ETH | <0.01% | $0.000153 | 1,369.5016 | $0.2091 | |
ETH | <0.01% | $0.003059 | 68.3597 | $0.209 | |
ETH | <0.01% | $0.00017 | 1,221.8776 | $0.2077 | |
ETH | <0.01% | <$0.000001 | 3,545,778.9697 | $0.2073 | |
ETH | <0.01% | $0.001544 | 134.3084 | $0.2073 | |
ETH | <0.01% | $0.000305 | 680.2737 | $0.2072 | |
ETH | <0.01% | $0.001244 | 166.4324 | $0.207 | |
ETH | <0.01% | $0.00101 | 204.4428 | $0.2065 | |
ETH | <0.01% | $0.00072 | 286.0176 | $0.2058 | |
ETH | <0.01% | $0.000017 | 12,439.7288 | $0.2056 | |
ETH | <0.01% | $0.006189 | 33.0831 | $0.2047 | |
ETH | <0.01% | $0.000003 | 61,973.967 | $0.2026 | |
ETH | <0.01% | $0.008983 | 22.5236 | $0.2023 | |
ETH | <0.01% | $0.000025 | 7,934.646 | $0.2009 | |
ETH | <0.01% | $0.004406 | 45.5622 | $0.2007 | |
ETH | <0.01% | $0.706216 | 0.2828 | $0.1997 | |
ETH | <0.01% | $0.00012 | 1,665.4375 | $0.1993 | |
ETH | <0.01% | $0.257495 | 0.7623 | $0.1962 | |
ETH | <0.01% | <$0.000001 | 35,980,101.4456 | $0.1961 | |
ETH | <0.01% | $0.000173 | 1,130.0862 | $0.1958 | |
ETH | <0.01% | $0.012123 | 16.1538 | $0.1958 | |
ETH | <0.01% | $0.000001 | 182,423.3568 | $0.1951 | |
ETH | <0.01% | $0.048716 | 4.0061 | $0.1951 | |
ETH | <0.01% | $0.00022 | 886.2425 | $0.1948 | |
ETH | <0.01% | $0.000009 | 22,286.0517 | $0.1937 | |
ETH | <0.01% | $0.002001 | 96.7297 | $0.1935 | |
ETH | <0.01% | $0.566689 | 0.3415 | $0.1935 | |
ETH | <0.01% | $0.023542 | 8.1777 | $0.1925 | |
ETH | <0.01% | $0.000998 | 192.7567 | $0.1924 | |
ETH | <0.01% | <$0.000001 | 1,744,409.7885 | $0.1919 | |
ETH | <0.01% | $0.000001 | 322,690.84 | $0.1893 | |
ETH | <0.01% | <$0.000001 | 691,907.4647 | $0.1888 | |
ETH | <0.01% | $0.000031 | 6,125.8596 | $0.1886 | |
ETH | <0.01% | $0.000511 | 368.991 | $0.1885 | |
ETH | <0.01% | <$0.000001 | 5,697,082,503.3405 | $0.188 | |
ETH | <0.01% | <$0.000001 | 6,677,099.7691 | $0.1874 | |
ETH | <0.01% | $0.004804 | 38.9551 | $0.1871 | |
ETH | <0.01% | $0.000009 | 19,818.8883 | $0.1847 | |
ETH | <0.01% | $0.000061 | 3,000 | $0.1843 | |
ETH | <0.01% | $0.090457 | 2.0308 | $0.1837 | |
ETH | <0.01% | $0.039323 | 4.623 | $0.1817 | |
ETH | <0.01% | $0.000022 | 8,137.8451 | $0.1783 | |
ETH | <0.01% | <$0.000001 | 3,363,995.02 | $0.178 | |
ETH | <0.01% | $0.000081 | 2,204.9333 | $0.1774 | |
ETH | <0.01% | $0.02739 | 6.4757 | $0.1773 | |
ETH | <0.01% | $0.00023 | 768.7137 | $0.1768 | |
ETH | <0.01% | $0.000027 | 6,464.1988 | $0.1764 | |
ETH | <0.01% | <$0.000001 | 29,320,079.3161 | $0.1758 | |
ETH | <0.01% | $0.000802 | 219.201 | $0.1757 | |
ETH | <0.01% | <$0.000001 | 13,006,590.1625 | $0.1751 | |
ETH | <0.01% | <$0.000001 | 44,204,123.8169 | $0.175 | |
ETH | <0.01% | $0.00032 | 541.7168 | $0.1736 | |
ETH | <0.01% | $0.03224 | 5.3834 | $0.1735 | |
ETH | <0.01% | $0.000056 | 3,084.0606 | $0.1733 | |
ETH | <0.01% | $0.02736 | 6.3221 | $0.1729 | |
ETH | <0.01% | <$0.000001 | 39,497,012.522 | $0.1725 | |
ETH | <0.01% | <$0.000001 | 5,123,199.2156 | $0.1719 | |
ETH | <0.01% | $0.00025 | 685.4244 | $0.1716 | |
ETH | <0.01% | $4.58 | 0.037 | $0.1694 | |
ETH | <0.01% | $0.000017 | 9,908.907 | $0.169 | |
ETH | <0.01% | $0.000557 | 301.605 | $0.1681 | |
ETH | <0.01% | $1.22 | 0.1378 | $0.168 | |
ETH | <0.01% | $3.51 | 0.0476 | $0.1671 | |
ETH | <0.01% | $0.004992 | 33.4374 | $0.1669 | |
ETH | <0.01% | $0.000199 | 833.5916 | $0.1662 | |
ETH | <0.01% | $0.004091 | 40.6039 | $0.166 | |
ETH | <0.01% | <$0.000001 | 6,787,205,126.8772 | $0.1658 | |
ETH | <0.01% | $0.172407 | 0.9541 | $0.1644 | |
ETH | <0.01% | $0.000142 | 1,147.7329 | $0.1627 | |
ETH | <0.01% | $0.001174 | 138.2075 | $0.1622 | |
ETH | <0.01% | $0.000349 | 461.1457 | $0.1609 | |
ETH | <0.01% | <$0.000001 | 701,042,653.2656 | $0.1605 | |
ETH | <0.01% | <$0.000001 | 4,085,745,345.8312 | $0.1593 | |
ETH | <0.01% | <$0.000001 | 1,453,909.617 | $0.1575 | |
ETH | <0.01% | $0.000386 | 408.4316 | $0.1575 | |
ETH | <0.01% | $0.009074 | 17.3631 | $0.1575 | |
ETH | <0.01% | $0.000022 | 7,227.8769 | $0.1572 | |
ETH | <0.01% | $0.000022 | 7,145.2548 | $0.157 | |
ETH | <0.01% | <$0.000001 | 1,696,037.511 | $0.1564 | |
ETH | <0.01% | $0.001317 | 117.7496 | $0.155 | |
ETH | <0.01% | $0.000043 | 3,601.7081 | $0.1549 | |
ETH | <0.01% | <$0.000001 | 1,348,976,237.4991 | $0.1545 | |
ETH | <0.01% | $0.000149 | 1,035 | $0.1543 | |
ETH | <0.01% | $0.000078 | 1,967.2168 | $0.1528 | |
ETH | <0.01% | $0.002882 | 52.3888 | $0.151 | |
ETH | <0.01% | $0.014872 | 10.1582 | $0.151 | |
ETH | <0.01% | $30.75 | 0.00491231 | $0.151 | |
ETH | <0.01% | $0.000487 | 309.8776 | $0.1509 | |
ETH | <0.01% | $0.000164 | 917.7442 | $0.1507 | |
ETH | <0.01% | $0.014387 | 10.4488 | $0.1503 | |
ETH | <0.01% | $0.000042 | 3,582.7441 | $0.15 | |
ETH | <0.01% | $0.000882 | 169.9251 | $0.1499 | |
ETH | <0.01% | $0.009324 | 16.0852 | $0.1499 | |
ETH | <0.01% | $0.000201 | 739.2143 | $0.1487 | |
ETH | <0.01% | $0.000035 | 4,184.013 | $0.1479 | |
ETH | <0.01% | $2.14 | 0.069 | $0.1473 | |
ETH | <0.01% | $2.4 | 0.0612 | $0.1469 | |
ETH | <0.01% | $0.001621 | 90.4776 | $0.1466 | |
ETH | <0.01% | $93,740 | 0.00000156 | $0.1462 | |
ETH | <0.01% | $0.000003 | 48,386.0247 | $0.1461 | |
ETH | <0.01% | $0.000392 | 370.2784 | $0.1449 | |
ETH | <0.01% | $0.000422 | 343.1827 | $0.1449 | |
ETH | <0.01% | $0.00012 | 1,201.8577 | $0.1442 | |
ETH | <0.01% | <$0.000001 | 503,760.2249 | $0.144 | |
ETH | <0.01% | $0.000075 | 1,915.431 | $0.1434 | |
ETH | <0.01% | $0.00003 | 4,695.4434 | $0.1427 | |
ETH | <0.01% | $1.87 | 0.0762 | $0.1424 | |
ETH | <0.01% | $0.00146 | 97.413 | $0.1422 | |
ETH | <0.01% | $0.995899 | 0.1427 | $0.142 | |
ETH | <0.01% | $0.009183 | 15.4363 | $0.1417 | |
ETH | <0.01% | <$0.000001 | 1,289,816,290.6882 | $0.1407 | |
ETH | <0.01% | $0.000931 | 150.012 | $0.1396 | |
ETH | <0.01% | <$0.000001 | 642,908.9995 | $0.1392 | |
ETH | <0.01% | $0.005827 | 23.7456 | $0.1383 | |
ETH | <0.01% | $0.135762 | 1.0115 | $0.1373 | |
ETH | <0.01% | $0.000914 | 150 | $0.137 | |
ETH | <0.01% | $0.000108 | 1,273.051 | $0.1368 | |
ETH | <0.01% | $0.001575 | 86.8589 | $0.1367 | |
ETH | <0.01% | $0.002202 | 61.8146 | $0.1361 | |
ETH | <0.01% | $0.000631 | 215.8304 | $0.136 | |
ETH | <0.01% | $0.000001 | 91,294.9087 | $0.1345 | |
ETH | <0.01% | $0.101399 | 1.3272 | $0.1345 | |
ETH | <0.01% | $0.001428 | 93.6371 | $0.1336 | |
ETH | <0.01% | $0.011717 | 11.4 | $0.1335 | |
ETH | <0.01% | $0.000118 | 1,125.8085 | $0.133 | |
ETH | <0.01% | $0.000035 | 3,844.6553 | $0.1329 | |
ETH | <0.01% | $0.000143 | 928.2125 | $0.1329 | |
ETH | <0.01% | $0.001489 | 89.2944 | $0.1329 | |
ETH | <0.01% | $0.011498 | 11.5301 | $0.1325 | |
ETH | <0.01% | $0.883964 | 0.1492 | $0.1319 | |
ETH | <0.01% | $0.183093 | 0.7178 | $0.1314 | |
ETH | <0.01% | $0.00002 | 6,477.9281 | $0.1297 | |
ETH | <0.01% | $0.000052 | 2,510.091 | $0.1296 | |
ETH | <0.01% | $0.000131 | 988.7763 | $0.1293 | |
ETH | <0.01% | $0.043047 | 3 | $0.1291 | |
ETH | <0.01% | $0.008168 | 15.7636 | $0.1287 | |
ETH | <0.01% | $0.000159 | 807.225 | $0.1282 | |
ETH | <0.01% | $0.005001 | 25.4251 | $0.1271 | |
ETH | <0.01% | $0.000041 | 3,125.5193 | $0.1267 | |
ETH | <0.01% | $0.004128 | 30 | $0.1238 | |
ETH | <0.01% | $0.000001 | 155,334.1803 | $0.1231 | |
ETH | <0.01% | $0.000066 | 1,855.5255 | $0.1231 | |
ETH | <0.01% | $0.40807 | 0.3004 | $0.1225 | |
ETH | <0.01% | $0.007968 | 15 | $0.1195 | |
ETH | <0.01% | $162.55 | 0.00073399 | $0.1193 | |
ETH | <0.01% | $0.000175 | 682.0979 | $0.1192 | |
ETH | <0.01% | $0.00017 | 693.6331 | $0.1182 | |
ETH | <0.01% | $0.000134 | 877.468 | $0.1178 | |
ETH | <0.01% | $0.094184 | 1.2491 | $0.1176 | |
ETH | <0.01% | <$0.000001 | 2,055,328.2834 | $0.1171 | |
ETH | <0.01% | $5,437.08 | 0.00002151 | $0.1169 | |
ETH | <0.01% | <$0.000001 | 975,439.9201 | $0.1167 | |
ETH | <0.01% | $0.000382 | 304.1969 | $0.1162 | |
ETH | <0.01% | $0.003437 | 33.5994 | $0.1154 | |
ETH | <0.01% | $0.00019 | 607.6714 | $0.1153 | |
ETH | <0.01% | $0.212875 | 0.5351 | $0.1139 | |
ETH | <0.01% | $0.137174 | 0.8302 | $0.1138 | |
ETH | <0.01% | <$0.000001 | 202,421,596.2915 | $0.1132 | |
ETH | <0.01% | $13,373.31 | 0.00000844 | $0.1128 | |
ETH | <0.01% | <$0.000001 | 4,831,694,414.5992 | $0.1123 | |
ETH | <0.01% | $0.000026 | 4,353.6989 | $0.1122 | |
ETH | <0.01% | <$0.000001 | 490,040.2936 | $0.1119 | |
ETH | <0.01% | $0.314225 | 0.3564 | $0.1119 | |
ETH | <0.01% | $0.000002 | 62,470.3971 | $0.1118 | |
ETH | <0.01% | $0.01071 | 10.4149 | $0.1115 | |
ETH | <0.01% | $106.36 | 0.0010455 | $0.1111 | |
ETH | <0.01% | <$0.000001 | 20,041,534.3122 | $0.1108 | |
ETH | <0.01% | $0.014336 | 7.7302 | $0.1108 | |
ETH | <0.01% | $0.002143 | 51.3179 | $0.1099 | |
ETH | <0.01% | $0.000014 | 8,045.454 | $0.1098 | |
ETH | <0.01% | $0.024682 | 4.4335 | $0.1094 | |
ETH | <0.01% | $0.000122 | 900 | $0.1093 | |
ETH | <0.01% | $54.84 | 0.00198 | $0.1085 | |
ETH | <0.01% | $0.000132 | 819.5919 | $0.1083 | |
ETH | <0.01% | $0.001999 | 54.0564 | $0.108 | |
ETH | <0.01% | $0.086075 | 1.2549 | $0.108 | |
ETH | <0.01% | $0.000499 | 215.397 | $0.1075 | |
ETH | <0.01% | $0.008449 | 12.7091 | $0.1073 | |
ETH | <0.01% | $0.000026 | 4,077.8769 | $0.107 | |
ETH | <0.01% | $0.001024 | 104.0791 | $0.1065 | |
ETH | <0.01% | $0.000063 | 1,693.1117 | $0.1063 | |
ETH | <0.01% | $0.000251 | 423.1604 | $0.1061 | |
ETH | <0.01% | $0.000352 | 300 | $0.1056 | |
ETH | <0.01% | $0.000002 | 60,908.3118 | $0.1054 | |
ETH | <0.01% | $0.051511 | 2.04 | $0.105 | |
ETH | <0.01% | $0.000001 | 164,225.7491 | $0.1048 | |
ETH | <0.01% | $0.000617 | 168.7681 | $0.104 | |
ETH | <0.01% | $0.004093 | 25.4035 | $0.1039 | |
ETH | <0.01% | $0.069298 | 1.5 | $0.1039 | |
ETH | <0.01% | $0.000132 | 783 | $0.1029 | |
ETH | <0.01% | $0.002586 | 39.8217 | $0.1029 | |
ETH | <0.01% | $0.000156 | 657.4255 | $0.1023 | |
ETH | <0.01% | $0.002897 | 35.3413 | $0.1023 | |
ETH | <0.01% | $27.33 | 0.00374065 | $0.1022 | |
ETH | <0.01% | $0.000034 | 3,000 | $0.1015 | |
ETH | <0.01% | $0.064144 | 1.5811 | $0.1014 | |
ETH | <0.01% | $5.6 | 0.018 | $0.1007 | |
ETH | <0.01% | $0.000756 | 133.1116 | $0.1006 | |
BSC | <0.01% | $0.004571 | 8,901,746,638,094.19 | $40,691,090,320.68 | |
BSC | <0.01% | $0.004571 | 347,539,706,469.9323 | $1,588,651,099.71 | |
BSC | <0.01% | $0.003101 | 221,196,844,751.227 | $685,837,794.81 | |
BSC | <0.01% | $0.004571 | 91,864,097,985.5108 | $419,923,242.07 | |
BSC | <0.01% | $0.004571 | 84,036,330,538.7301 | $384,141,456.19 | |
BSC | <0.01% | $0.004571 | 52,107,744,999.825 | $238,191,564.46 | |
BSC | <0.01% | $0.004571 | 36,598,497,917.781 | $167,296,694.11 | |
BSC | <0.01% | $0.009053 | 3,795,539,202.4846 | $34,359,118.63 | |
BSC | <0.01% | $0.000046 | 31,346,285,444.1428 | $1,439,107.96 | |
BSC | <0.01% | $1 | 147,670.0866 | $147,670.09 | |
BSC | <0.01% | $617.08 | 103.4437 | $63,832.83 | |
BSC | <0.01% | $5.9 | 3,927.0539 | $23,166.74 | |
BSC | <0.01% | $0.016205 | 1,410,730.6235 | $22,860.35 | |
BSC | <0.01% | $0.999935 | 11,023.0302 | $11,022.31 | |
BSC | <0.01% | $0.181288 | 60,549.6235 | $10,976.95 | |
BSC | <0.01% | $6.74 | 476.7265 | $3,213.14 | |
BSC | <0.01% | <$0.000001 | 43,742,154,934.837 | $2,891.93 | |
BSC | <0.01% | $93,665.52 | 0.0301 | $2,819.01 | |
BSC | <0.01% | $1,782.35 | 0.9812 | $1,748.92 | |
BSC | <0.01% | $0.001884 | 787,458.8109 | $1,483.67 | |
BSC | <0.01% | $0.084205 | 14,981.2131 | $1,261.49 | |
BSC | <0.01% | $2.02 | 572.4534 | $1,156.36 | |
BSC | <0.01% | $0.058566 | 19,236.36 | $1,126.6 | |
BSC | <0.01% | <$0.000001 | 34,125,366,018.2336 | $1,097.95 | |
BSC | <0.01% | $0.000014 | 75,033,066.2019 | $1,025.86 | |
BSC | <0.01% | $0.013695 | 71,701.9 | $981.95 | |
BSC | <0.01% | $0.028342 | 34,601.3022 | $980.67 | |
BSC | <0.01% | <$0.000001 | 25,541,847,131.9706 | $960.37 | |
BSC | <0.01% | $1 | 943.4517 | $943.88 | |
BSC | <0.01% | <$0.000001 | 21,505,404,024.1356 | $896.5 | |
BSC | <0.01% | $2.08 | 427.5142 | $890.12 | |
BSC | <0.01% | $616.97 | 1.4197 | $875.89 | |
BSC | <0.01% | $0.002952 | 271,370.3388 | $801.05 | |
BSC | <0.01% | $2.25 | 341.3135 | $767.01 | |
BSC | <0.01% | $0.000001 | 470,267,404.292 | $700.7 | |
BSC | <0.01% | $0.062503 | 10,082.4824 | $630.19 | |
BSC | <0.01% | $0.024332 | 25,092.0868 | $610.54 | |
BSC | <0.01% | $0.002045 | 280,453.6165 | $573.63 | |
BSC | <0.01% | $0.015498 | 35,454.2253 | $549.45 | |
BSC | <0.01% | $151.34 | 3.4134 | $516.58 | |
BSC | <0.01% | $4.08 | 115.264 | $470.48 | |
BSC | <0.01% | $0.246421 | 1,705.6692 | $420.31 | |
BSC | <0.01% | $0.000067 | 5,206,304.8195 | $350.9 | |
BSC | <0.01% | $0.007062 | 49,571.1738 | $350.08 | |
BSC | <0.01% | $2.16 | 160.2181 | $345.62 | |
BSC | <0.01% | $0.069279 | 4,738.1547 | $328.25 | |
BSC | <0.01% | $0.029502 | 10,683.7605 | $315.19 | |
BSC | <0.01% | $0.506908 | 592.7258 | $300.46 | |
BSC | <0.01% | $0.696649 | 414.0719 | $288.46 | |
BSC | <0.01% | $0.000833 | 345,934.9534 | $288.33 | |
BSC | <0.01% | $0.002011 | 138,450 | $278.43 | |
BSC | <0.01% | $0.004626 | 59,435.3018 | $274.93 | |
BSC | <0.01% | <$0.000001 | 177,872,712,704.1213 | $254.71 | |
BSC | <0.01% | $1.17 | 205.716 | $240.69 | |
BSC | <0.01% | $0.000008 | 21,843,645.73 | $169.19 | |
BSC | <0.01% | $2.72 | 55.9252 | $152.05 | |
BSC | <0.01% | $1.86 | 80.5197 | $150.09 | |
BSC | <0.01% | $0.000009 | 16,254,511.3489 | $146.78 | |
BSC | <0.01% | $0.00184 | 74,477.892 | $137.01 | |
BSC | <0.01% | $0.999828 | 136.4745 | $136.45 | |
BSC | <0.01% | $0.01074 | 12,098.4237 | $129.93 | |
BSC | <0.01% | $175.07 | 0.7143 | $125.06 | |
BSC | <0.01% | $0.000501 | 247,335.4888 | $124.04 | |
BSC | <0.01% | $0.029575 | 4,125.286 | $122.01 | |
BSC | <0.01% | <$0.000001 | 518,478,115,989.9244 | $121.29 | |
BSC | <0.01% | $0.000091 | 1,273,537.2236 | $116.18 | |
BSC | <0.01% | $0.000007 | 16,438,134.7509 | $112.77 | |
BSC | <0.01% | <$0.000001 | 6,571,317,085.9345 | $111 | |
BSC | <0.01% | $0.268836 | 389.8168 | $104.8 | |
BSC | <0.01% | $0.055899 | 1,868.9369 | $104.47 | |
BSC | <0.01% | <$0.000001 | 37,491,037,155.6237 | $104.11 | |
BSC | <0.01% | $0.000366 | 277,612.9651 | $101.69 | |
BSC | <0.01% | $0.016364 | 5,963.8935 | $97.6 | |
BSC | <0.01% | $0.015824 | 6,030.1105 | $95.42 | |
BSC | <0.01% | $0.214936 | 430.4325 | $92.52 | |
BSC | <0.01% | $1.3 | 70.7442 | $92.16 | |
BSC | <0.01% | $162.26 | 0.5671 | $92.01 | |
BSC | <0.01% | $0.000209 | 434,174.9101 | $90.7 | |
BSC | <0.01% | $0.001465 | 61,875.4833 | $90.66 | |
BSC | <0.01% | $0.254859 | 350.4837 | $89.32 | |
BSC | <0.01% | $22.7 | 3.8897 | $88.3 | |
BSC | <0.01% | $2.83 | 29.5041 | $83.51 | |
BSC | <0.01% | <$0.000001 | 34,810,174,670,725.168 | $82.95 | |
BSC | <0.01% | $0.01503 | 5,512.9966 | $82.86 | |
BSC | <0.01% | $0.000037 | 2,193,798.3581 | $80.29 | |
BSC | <0.01% | $2.48 | 32.1299 | $79.6 | |
BSC | <0.01% | $0.000003 | 26,972,628.8972 | $73.76 | |
BSC | <0.01% | <$0.000001 | 659,102,182,147,428.63 | $73.59 | |
BSC | <0.01% | $50.12 | 1.4113 | $70.74 | |
BSC | <0.01% | $0.003784 | 18,687.6123 | $70.72 | |
BSC | <0.01% | $360.04 | 0.1952 | $70.29 | |
BSC | <0.01% | $84.12 | 0.8049 | $67.71 | |
BSC | <0.01% | $0.673413 | 99.04 | $66.69 | |
BSC | <0.01% | $0.650592 | 101.9755 | $66.34 | |
BSC | <0.01% | $0.000001 | 51,641,594.6392 | $65.07 | |
BSC | <0.01% | $0.005495 | 11,109.9221 | $61.05 | |
BSC | <0.01% | $0.004731 | 12,883.5558 | $60.96 | |
BSC | <0.01% | <$0.000001 | 4,526,288,860.0241 | $58.66 | |
BSC | <0.01% | <$0.000001 | 11,028,863,536.1492 | $57.97 | |
BSC | <0.01% | $0.000002 | 28,526,927.3595 | $55.91 | |
BSC | <0.01% | $0.000089 | 624,196.745 | $55.25 | |
BSC | <0.01% | <$0.000001 | 52,484,585,430,566,740,000 | $52.48 | |
BSC | <0.01% | <$0.000001 | 359,017,535,048.4224 | $51.77 | |
BSC | <0.01% | $0.000094 | 543,411.8731 | $50.99 | |
BSC | <0.01% | <$0.000001 | 10,460,376,583.4658 | $48.9 | |
BSC | <0.01% | $0.059531 | 814.9007 | $48.51 | |
BSC | <0.01% | <$0.000001 | 42,926,825,438,987.063 | $48.17 | |
BSC | <0.01% | $2.69 | 17.7736 | $47.81 | |
BSC | <0.01% | $0.000092 | 509,564.3083 | $47 | |
BSC | <0.01% | $0.268311 | 171.975 | $46.14 | |
BSC | <0.01% | $0.001424 | 31,976.6472 | $45.53 | |
BSC | <0.01% | $0.998354 | 44.4723 | $44.4 | |
BSC | <0.01% | $0.046147 | 955.5504 | $44.1 | |
BSC | <0.01% | $0.139066 | 316.9834 | $44.08 | |
BSC | <0.01% | $0.058657 | 694.5679 | $40.74 | |
BSC | <0.01% | $0.028442 | 1,429.7942 | $40.67 | |
BSC | <0.01% | <$0.000001 | 5,312,808,612,764.5811 | $40.44 | |
BSC | <0.01% | $0.000324 | 121,292.699 | $39.35 | |
BSC | <0.01% | $0.000015 | 2,543,545.4351 | $39.25 | |
BSC | <0.01% | $0.01361 | 2,862.1085 | $38.95 | |
BSC | <0.01% | $0.127085 | 301.5847 | $38.33 | |
BSC | <0.01% | $0.003334 | 11,350.4665 | $37.84 | |
BSC | <0.01% | $0.002329 | 16,161.5984 | $37.64 | |
BSC | <0.01% | <$0.000001 | 24,863,030,339.2138 | $37.41 | |
BSC | <0.01% | $0.000921 | 40,363.1486 | $37.16 | |
BSC | <0.01% | $1 | 37.0411 | $37.08 | |
BSC | <0.01% | $0.002589 | 14,260.893 | $36.93 | |
BSC | <0.01% | $0.567336 | 64.328 | $36.5 | |
BSC | <0.01% | $0.002085 | 17,247.2486 | $35.96 | |
BSC | <0.01% | $0.335421 | 107.1144 | $35.93 | |
BSC | <0.01% | $0.030969 | 1,158.2288 | $35.87 | |
BSC | <0.01% | $0.182344 | 190.2562 | $34.69 | |
BSC | <0.01% | $0.941915 | 36.6617 | $34.53 | |
BSC | <0.01% | $3.47 | 9.8981 | $34.35 | |
BSC | <0.01% | $0.444069 | 77.268 | $34.31 | |
BSC | <0.01% | $0.559631 | 61.2226 | $34.26 | |
BSC | <0.01% | $0.920173 | 37.1223 | $34.16 | |
BSC | <0.01% | $24.21 | 1.4091 | $34.12 | |
BSC | <0.01% | $0.004191 | 7,957.0593 | $33.35 | |
BSC | <0.01% | $2.84 | 11.6087 | $32.93 | |
BSC | <0.01% | $0.000002 | 13,985,850.1936 | $32.87 | |
BSC | <0.01% | $0.000036 | 915,736.4432 | $32.72 | |
BSC | <0.01% | $0.062026 | 523.8702 | $32.49 | |
BSC | <0.01% | $0.002302 | 14,023.5171 | $32.29 | |
BSC | <0.01% | <$0.000001 | 3,017,104,406.85 | $32.04 | |
BSC | <0.01% | $0.000031 | 1,041,337.2861 | $31.8 | |
BSC | <0.01% | $0.135086 | 228.8672 | $30.92 | |
BSC | <0.01% | $0.144765 | 212.3172 | $30.74 | |
BSC | <0.01% | <$0.000001 | 2,434,879,544.7811 | $30.65 | |
BSC | <0.01% | <$0.000001 | 641,942,935.5348 | $30.57 | |
BSC | <0.01% | $0.002423 | 12,452.8657 | $30.17 | |
BSC | <0.01% | $0.291995 | 103.2141 | $30.14 | |
BSC | <0.01% | $1 | 30.0653 | $30.07 | |
BSC | <0.01% | $0.000057 | 531,472.4261 | $30.04 | |
BSC | <0.01% | $0.047851 | 621.2661 | $29.73 | |
BSC | <0.01% | <$0.000001 | 363,386,045,998.4384 | $29.45 | |
BSC | <0.01% | $0.000051 | 577,099.5476 | $29.44 | |
BSC | <0.01% | $0.004608 | 6,339.7205 | $29.22 | |
BSC | <0.01% | $0.999174 | 29.0459 | $29.02 | |
BSC | <0.01% | $0.012723 | 2,213.2578 | $28.16 | |
BSC | <0.01% | $14.64 | 1.8905 | $27.67 | |
BSC | <0.01% | $0.004366 | 6,185.5682 | $27.01 | |
BSC | <0.01% | $0.830696 | 32.1388 | $26.7 | |
BSC | <0.01% | $0.028818 | 919.6084 | $26.5 | |
BSC | <0.01% | <$0.000001 | 216,094,001,356.2071 | $25.84 | |
BSC | <0.01% | $5.91 | 4.3169 | $25.52 | |
BSC | <0.01% | $0.027156 | 934.1231 | $25.37 | |
BSC | <0.01% | $0.001732 | 14,535.5729 | $25.18 | |
BSC | <0.01% | $0.000007 | 3,647,637.1284 | $25.02 | |
BSC | <0.01% | $0.039863 | 627.0498 | $25 | |
BSC | <0.01% | $4.37 | 5.6966 | $24.89 | |
BSC | <0.01% | <$0.000001 | 82,384,941,761.1332 | $24.72 | |
BSC | <0.01% | $0.204111 | 118.6733 | $24.22 | |
BSC | <0.01% | $1.04 | 23.0294 | $23.97 | |
BSC | <0.01% | $0.000031 | 759,660.7207 | $23.28 | |
BSC | <0.01% | $0.000934 | 24,890.2967 | $23.24 | |
BSC | <0.01% | $0.268368 | 85.5326 | $22.95 | |
BSC | <0.01% | <$0.000001 | 14,268,252,161,937.471 | $22.87 | |
BSC | <0.01% | $0.020023 | 1,140.5086 | $22.84 | |
BSC | <0.01% | $0.015723 | 1,412.2423 | $22.2 | |
BSC | <0.01% | $0.02059 | 1,063.4806 | $21.9 | |
BSC | <0.01% | $0.002696 | 8,112.873 | $21.88 | |
BSC | <0.01% | <$0.000001 | 389,767,144.4142 | $21.63 | |
BSC | <0.01% | <$0.000001 | 1,485,885,708.1982 | $21.62 | |
BSC | <0.01% | $0.01187 | 1,819.5086 | $21.6 | |
BSC | <0.01% | <$0.000001 | 177,791,587.1199 | $21.34 | |
BSC | <0.01% | $0.036214 | 571.2767 | $20.69 | |
BSC | <0.01% | <$0.000001 | 26,200,468,885.7995 | $20.51 | |
BSC | <0.01% | <$0.000001 | 5,712,599,553.7074 | $20.45 | |
BSC | <0.01% | $0.026071 | 783.1249 | $20.42 | |
BSC | <0.01% | <$0.000001 | 62,333,559,455.7773 | $20.39 | |
BSC | <0.01% | $0.196223 | 103.7359 | $20.36 | |
BSC | <0.01% | $0.009659 | 2,107.1288 | $20.35 | |
BSC | <0.01% | $0.025294 | 792.9559 | $20.06 | |
BSC | <0.01% | $0.006567 | 3,004.1425 | $19.73 | |
BSC | <0.01% | $0.000004 | 5,043,420.9808 | $19.62 | |
BSC | <0.01% | $0.000147 | 131,292.5391 | $19.33 | |
BSC | <0.01% | $0.002498 | 7,492.3632 | $18.71 | |
BSC | <0.01% | $0.004449 | 4,198.4292 | $18.68 | |
BSC | <0.01% | $0.012677 | 1,455.2821 | $18.45 | |
BSC | <0.01% | $0.225051 | 81.8333 | $18.42 | |
BSC | <0.01% | <$0.000001 | 1,705,426,483.191 | $18.4 | |
BSC | <0.01% | <$0.000001 | 18,153,331,416.5458 | $18.15 | |
BSC | <0.01% | $0.000002 | 10,032,220.6133 | $18.06 | |
BSC | <0.01% | $0.00018 | 99,965.3872 | $17.99 | |
BSC | <0.01% | <$0.000001 | 182,558,518.6789 | $17.9 | |
BSC | <0.01% | <$0.000001 | 1,501,285,066.0793 | $17.84 | |
BSC | <0.01% | $0.08375 | 212.3083 | $17.78 | |
BSC | <0.01% | $0.661819 | 26.7661 | $17.71 | |
BSC | <0.01% | $0.003555 | 4,970.5114 | $17.67 | |
BSC | <0.01% | $0.000073 | 240,172.5136 | $17.5 | |
BSC | <0.01% | <$0.000001 | 102,623,329.9778 | $17.21 | |
BSC | <0.01% | <$0.000001 | 15,804,065,004.555 | $17.06 | |
BSC | <0.01% | $0.001783 | 9,570.6641 | $17.06 | |
BSC | <0.01% | $0.002693 | 6,308.6065 | $16.99 | |
BSC | <0.01% | $0.022138 | 766.2087 | $16.96 | |
BSC | <0.01% | $9.47 | 1.7822 | $16.88 | |
BSC | <0.01% | <$0.000001 | 67,961,015,490.8783 | $16.52 | |
BSC | <0.01% | $5.6 | 2.9392 | $16.45 | |
BSC | <0.01% | <$0.000001 | 73,882,708.3412 | $16.42 | |
BSC | <0.01% | <$0.000001 | 7,528,787,274.8282 | $16.4 | |
BSC | <0.01% | $0.000121 | 134,937.5981 | $16.34 | |
BSC | <0.01% | $0.071767 | 226.0798 | $16.23 | |
BSC | <0.01% | $1.21 | 13.371 | $16.18 | |
BSC | <0.01% | $0.00118 | 13,645.5022 | $16.1 | |
BSC | <0.01% | $0.002013 | 7,947.5198 | $15.99 | |
BSC | <0.01% | $0.158113 | 100.3297 | $15.86 | |
BSC | <0.01% | $0.000024 | 660,301.1512 | $15.8 | |
BSC | <0.01% | $7.63 | 2.0671 | $15.76 | |
BSC | <0.01% | $0.001497 | 10,486.8176 | $15.7 | |
BSC | <0.01% | $0.000608 | 25,601.7076 | $15.58 | |
BSC | <0.01% | $0.000115 | 135,016.8197 | $15.57 | |
BSC | <0.01% | $0.006204 | 2,503.7438 | $15.53 | |
BSC | <0.01% | $0.01188 | 1,269.9503 | $15.09 | |
BSC | <0.01% | $0.000004 | 3,761,312.8183 | $15.09 | |
BSC | <0.01% | $0.036232 | 416.346 | $15.09 | |
BSC | <0.01% | $0.510019 | 29.481 | $15.04 | |
BSC | <0.01% | <$0.000001 | 35,030,842.933 | $15.02 | |
BSC | <0.01% | $0.07837 | 190.2368 | $14.91 | |
BSC | <0.01% | $0.000575 | 25,840.8464 | $14.85 | |
BSC | <0.01% | $0.168156 | 88.2303 | $14.84 | |
BSC | <0.01% | $0.241822 | 60.5606 | $14.64 | |
BSC | <0.01% | $0.000314 | 46,507.5996 | $14.62 | |
BSC | <0.01% | $0.040491 | 353.6045 | $14.32 | |
BSC | <0.01% | <$0.000001 | 7,585,863,400,145.6143 | $14.27 | |
BSC | <0.01% | $0.956741 | 14.8679 | $14.22 | |
BSC | <0.01% | $0.002692 | 5,270.0495 | $14.19 | |
BSC | <0.01% | $0.00127 | 11,137.6475 | $14.14 | |
BSC | <0.01% | <$0.000001 | 137,517,273,864,013.55 | $14.04 | |
BSC | <0.01% | $0.000231 | 60,525.1958 | $14.01 | |
BSC | <0.01% | $0.033182 | 422.0825 | $14.01 | |
BSC | <0.01% | $0.187263 | 72.4336 | $13.56 | |
BSC | <0.01% | <$0.000001 | 135,502,442,372.4553 | $13.55 | |
BSC | <0.01% | $0.052849 | 255.6585 | $13.51 | |
BSC | <0.01% | <$0.000001 | 13,638,756,567.7343 | $13.43 | |
BSC | <0.01% | $0.030583 | 438.2005 | $13.4 | |
BSC | <0.01% | <$0.000001 | 36,151,051,811.2962 | $13.29 | |
BSC | <0.01% | $1,866.59 | 0.007094 | $13.24 | |
BSC | <0.01% | $0.008928 | 1,468.0091 | $13.11 | |
BSC | <0.01% | <$0.000001 | 47,275,173,353,417.977 | $13.06 | |
BSC | <0.01% | $0.001082 | 11,893.7854 | $12.87 | |
BSC | <0.01% | $0.22055 | 57.736 | $12.73 | |
BSC | <0.01% | $0.000001 | 19,521,841.8542 | $12.46 | |
BSC | <0.01% | $0.013257 | 935.1921 | $12.4 | |
BSC | <0.01% | $93,798 | 0.0001298 | $12.17 | |
BSC | <0.01% | $0.046747 | 259.575 | $12.13 | |
BSC | <0.01% | $0.105188 | 115.3515 | $12.13 | |
BSC | <0.01% | $0.000005 | 2,213,971.9479 | $12.09 | |
BSC | <0.01% | $0.976537 | 12.2626 | $11.97 | |
BSC | <0.01% | $0.077666 | 152.0509 | $11.81 | |
BSC | <0.01% | $32.85 | 0.3584 | $11.77 | |
BSC | <0.01% | $0.357967 | 32.496 | $11.63 | |
BSC | <0.01% | $8.02 | 1.414 | $11.34 | |
BSC | <0.01% | $0.00078 | 14,485.4858 | $11.3 | |
BSC | <0.01% | $0.000003 | 3,585,043.8444 | $11.29 | |
BSC | <0.01% | <$0.000001 | 1,972,782,385.4865 | $11.27 | |
BSC | <0.01% | $0.030313 | 371.2644 | $11.25 | |
BSC | <0.01% | <$0.000001 | 34,649,002,612.2869 | $11.21 | |
BSC | <0.01% | $0.018454 | 605.3945 | $11.17 | |
BSC | <0.01% | $0.238184 | 46.6054 | $11.1 | |
BSC | <0.01% | $0.000137 | 80,956.3959 | $11.06 | |
BSC | <0.01% | <$0.000001 | 138,497,395,671.2862 | $10.99 | |
BSC | <0.01% | $0.040006 | 272.0089 | $10.88 | |
BSC | <0.01% | $0.134443 | 80.4381 | $10.81 | |
BSC | <0.01% | $0.003838 | 2,812.6004 | $10.79 | |
BSC | <0.01% | <$0.000001 | 843,516,411,000.4434 | $10.75 | |
BSC | <0.01% | $0.072202 | 147.5625 | $10.65 | |
BSC | <0.01% | $16.86 | 0.6318 | $10.65 | |
BSC | <0.01% | <$0.000001 | 47,312,801.568 | $10.64 | |
BSC | <0.01% | $88.02 | 0.1198 | $10.54 | |
BSC | <0.01% | <$0.000001 | 117,092,817.4628 | $10.45 | |
BSC | <0.01% | $0.059321 | 175.9871 | $10.44 | |
BSC | <0.01% | $0.06721 | 154.8843 | $10.41 | |
BSC | <0.01% | $0.0005 | 20,548.7124 | $10.28 | |
BSC | <0.01% | $0.25344 | 40.5055 | $10.27 | |
BSC | <0.01% | $0.000002 | 6,027,929.1706 | $10.25 | |
BSC | <0.01% | $2.52 | 4.0155 | $10.12 | |
BSC | <0.01% | $0.016375 | 614.3466 | $10.06 | |
BSC | <0.01% | <$0.000001 | 121,387,869.2196 | $10.06 | |
BSC | <0.01% | $0.091055 | 109.9479 | $10.01 | |
BSC | <0.01% | $0.000135 | 74,401.7752 | $10.01 | |
BSC | <0.01% | $0.046253 | 211.4442 | $9.78 | |
BSC | <0.01% | $0.000211 | 46,241.5464 | $9.76 | |
BSC | <0.01% | $0.000137 | 71,255.2813 | $9.74 | |
BSC | <0.01% | $2.46 | 3.9285 | $9.66 | |
BSC | <0.01% | $0.515581 | 18.7215 | $9.65 | |
BSC | <0.01% | <$0.000001 | 240,165,549.5279 | $9.56 | |
BSC | <0.01% | $0.54163 | 17.6389 | $9.55 | |
BSC | <0.01% | $0.00012 | 79,305.4738 | $9.53 | |
BSC | <0.01% | <$0.000001 | 131,964,367,484,790.84 | $9.52 | |
BSC | <0.01% | $93,720 | 0.00010114 | $9.48 | |
BSC | <0.01% | $0.022014 | 430.4737 | $9.48 | |
BSC | <0.01% | $0.204344 | 45.9024 | $9.38 | |
BSC | <0.01% | <$0.000001 | 15,134,572,603.4911 | $9.27 | |
BSC | <0.01% | <$0.000001 | 3,083,183,344.2661 | $9.26 | |
BSC | <0.01% | $0.086568 | 105.7678 | $9.16 | |
BSC | <0.01% | $0.014734 | 613.5031 | $9.04 | |
BSC | <0.01% | $2.4 | 3.726 | $8.95 | |
BSC | <0.01% | $0.00265 | 3,375.0035 | $8.94 | |
BSC | <0.01% | $0.001662 | 5,374.9083 | $8.93 | |
BSC | <0.01% | $0.029173 | 304.6614 | $8.89 | |
BSC | <0.01% | $0.025259 | 344.102 | $8.69 | |
BSC | <0.01% | $0.00296 | 2,873.3496 | $8.5 | |
BSC | <0.01% | $1.29 | 6.4453 | $8.34 | |
BSC | <0.01% | $0.000975 | 8,545.0845 | $8.33 | |
BSC | <0.01% | <$0.000001 | 23,049,006,088,596.176 | $8.33 | |
BSC | <0.01% | $0.00471 | 1,762.5634 | $8.3 | |
BSC | <0.01% | $2.08 | 3.9785 | $8.28 | |
BSC | <0.01% | <$0.000001 | 8,580,082,487,624.5537 | $8.27 | |
BSC | <0.01% | <$0.000001 | 2,747,495,695,334,883,800 | $8.24 | |
BSC | <0.01% | <$0.000001 | 1,473,636,759.3895 | $8.15 | |
BSC | <0.01% | $0.011735 | 692.6257 | $8.13 | |
BSC | <0.01% | $0.00008 | 100,656.9009 | $8.09 | |
BSC | <0.01% | $0.017852 | 452.6573 | $8.08 | |
BSC | <0.01% | $0.309551 | 25.9859 | $8.04 | |
BSC | <0.01% | $92.98 | 0.0863 | $8.03 | |
BSC | <0.01% | $0.008501 | 934.7992 | $7.95 | |
BSC | <0.01% | $0.000053 | 149,252.0533 | $7.89 | |
BSC | <0.01% | $0.052348 | 150.3662 | $7.87 | |
BSC | <0.01% | $0.143813 | 54.4979 | $7.84 | |
BSC | <0.01% | $0.018673 | 416.242 | $7.77 | |
BSC | <0.01% | $0.11224 | 69.0985 | $7.76 | |
BSC | <0.01% | $0.1432 | 53.9547 | $7.73 | |
BSC | <0.01% | $0.000134 | 57,688.2238 | $7.72 | |
BSC | <0.01% | $0.000066 | 117,389.6175 | $7.71 | |
BSC | <0.01% | $0.043448 | 175.9927 | $7.65 | |
BSC | <0.01% | <$0.000001 | 4,616,450,618.6662 | $7.63 | |
BSC | <0.01% | $0.095192 | 80.0896 | $7.62 | |
BSC | <0.01% | $0.023141 | 327.2614 | $7.57 | |
BSC | <0.01% | $0.005602 | 1,348.1473 | $7.55 | |
BSC | <0.01% | <$0.000001 | 184,629,901,822.8976 | $7.53 | |
BSC | <0.01% | $0.005608 | 1,337.7424 | $7.5 | |
BSC | <0.01% | $0.000109 | 68,333.959 | $7.48 | |
BSC | <0.01% | <$0.000001 | 10,655,407,196,588.873 | $7.41 | |
BSC | <0.01% | <$0.000001 | 18,095,375,537,143.008 | $7.35 | |
BSC | <0.01% | $0.016199 | 452.8333 | $7.34 | |
BSC | <0.01% | $0.009578 | 764.6006 | $7.32 | |
BSC | <0.01% | $0.000084 | 86,486.071 | $7.27 | |
BSC | <0.01% | $0.005168 | 1,387.4761 | $7.17 | |
BSC | <0.01% | <$0.000001 | 1,155,111,440.595 | $7.17 | |
BSC | <0.01% | $0.001553 | 4,596.4289 | $7.14 | |
BSC | <0.01% | $0.000088 | 81,414.9908 | $7.14 | |
BSC | <0.01% | $0.24803 | 28.6234 | $7.1 | |
BSC | <0.01% | $0.026195 | 270.6237 | $7.09 | |
BSC | <0.01% | $0.138984 | 51 | $7.09 | |
BSC | <0.01% | $0.459293 | 15.3961 | $7.07 | |
BSC | <0.01% | $0.022981 | 307.3297 | $7.06 | |
BSC | <0.01% | $0.000321 | 21,570.5109 | $6.91 | |
BSC | <0.01% | $0.076981 | 88.0399 | $6.78 | |
BSC | <0.01% | $0.328876 | 20.3805 | $6.7 | |
BSC | <0.01% | <$0.000001 | 21,368,794,415.7587 | $6.65 | |
BSC | <0.01% | $1.51 | 4.3781 | $6.61 | |
BSC | <0.01% | $0.027172 | 242.5175 | $6.59 | |
BSC | <0.01% | $0.365651 | 17.9128 | $6.55 | |
BSC | <0.01% | <$0.000001 | 79,614,285.4426 | $6.5 | |
BSC | <0.01% | $33.3 | 0.1945 | $6.48 | |
BSC | <0.01% | $2.54 | 2.5427 | $6.46 | |
BSC | <0.01% | $0.000027 | 238,564.3532 | $6.43 | |
BSC | <0.01% | $0.286462 | 22.4071 | $6.42 | |
BSC | <0.01% | $0.000002 | 3,873,566.9428 | $6.4 | |
BSC | <0.01% | $0.090344 | 68.8195 | $6.22 | |
BSC | <0.01% | $0.002889 | 2,125.2477 | $6.14 | |
BSC | <0.01% | $0.053353 | 114.9752 | $6.13 | |
BSC | <0.01% | <$0.000001 | 17,938,613.575 | $6.1 | |
BSC | <0.01% | <$0.000001 | 14,155,485.4825 | $6.07 | |
BSC | <0.01% | $0.009834 | 615.5028 | $6.05 | |
BSC | <0.01% | $0.0062 | 975.5573 | $6.05 | |
BSC | <0.01% | $0.00002 | 303,702.1906 | $6.03 | |
BSC | <0.01% | <$0.000001 | 221,334,554.7106 | $6.02 | |
BSC | <0.01% | <$0.000001 | 1,570,289,046.7535 | $5.92 | |
BSC | <0.01% | $0.03002 | 196.5668 | $5.9 | |
BSC | <0.01% | $0.000334 | 17,613.8262 | $5.89 | |
BSC | <0.01% | <$0.000001 | 4,926,801,148.2343 | $5.77 | |
BSC | <0.01% | <$0.000001 | 44,933,586.5798 | $5.75 | |
BSC | <0.01% | $0.206121 | 27.9036 | $5.75 | |
BSC | <0.01% | $0.123324 | 46.3633 | $5.72 | |
BSC | <0.01% | $0.005347 | 1,062.5162 | $5.68 | |
BSC | <0.01% | $1 | 5.5428 | $5.54 | |
BSC | <0.01% | $0.498542 | 11.0333 | $5.5 | |
BSC | <0.01% | $0.000764 | 7,172.7727 | $5.48 | |
BSC | <0.01% | $0.000059 | 91,419.6937 | $5.4 | |
BSC | <0.01% | $0.004367 | 1,236.1962 | $5.4 | |
BSC | <0.01% | $0.003514 | 1,535.8149 | $5.4 | |
BSC | <0.01% | <$0.000001 | 49,233,707.0113 | $5.39 | |
BSC | <0.01% | $0.047386 | 113.421 | $5.37 | |
BSC | <0.01% | $0.000355 | 15,040.4575 | $5.34 | |
BSC | <0.01% | $0.234985 | 22.6005 | $5.31 | |
BSC | <0.01% | $0.017704 | 296.3916 | $5.25 | |
BSC | <0.01% | $3.1 | 1.6907 | $5.24 | |
BSC | <0.01% | $0.00766 | 684.1236 | $5.24 | |
BSC | <0.01% | <$0.000001 | 37,731,607.2951 | $5.24 | |
BSC | <0.01% | $0.000972 | 5,359.106 | $5.21 | |
BSC | <0.01% | $0.000266 | 19,467.3135 | $5.19 | |
BSC | <0.01% | <$0.000001 | 3,878,286,362.0693 | $5.13 | |
BSC | <0.01% | $5.29 | 0.9358 | $4.95 | |
BSC | <0.01% | $0.000624 | 7,928.6285 | $4.95 | |
BSC | <0.01% | $0.005944 | 826.6847 | $4.91 | |
BSC | <0.01% | $0.519417 | 9.4194 | $4.89 | |
BSC | <0.01% | $0.106576 | 45.8797 | $4.89 | |
BSC | <0.01% | $0.008696 | 561.0421 | $4.88 | |
BSC | <0.01% | $0.2818 | 17.3042 | $4.88 | |
BSC | <0.01% | $0.000007 | 663,780.1602 | $4.87 | |
BSC | <0.01% | $0.329948 | 14.7274 | $4.86 | |
BSC | <0.01% | $0.206494 | 23.4736 | $4.85 | |
BSC | <0.01% | $0.096482 | 50.1012 | $4.83 | |
BSC | <0.01% | $0.019155 | 252.3342 | $4.83 | |
BSC | <0.01% | $40.88 | 0.1175 | $4.81 | |
BSC | <0.01% | $0.096482 | 49.1225 | $4.74 | |
BSC | <0.01% | $0.522229 | 9.0482 | $4.73 | |
BSC | <0.01% | $0.00064 | 7,361.4488 | $4.71 | |
BSC | <0.01% | <$0.000001 | 638,819,483,633.7958 | $4.67 | |
BSC | <0.01% | $0.003192 | 1,457.4355 | $4.65 | |
BSC | <0.01% | $0.002358 | 1,946.5508 | $4.59 | |
BSC | <0.01% | $1.06 | 4.3159 | $4.59 | |
BSC | <0.01% | $0.000014 | 330,874.4257 | $4.58 | |
BSC | <0.01% | $0.000711 | 6,383.7858 | $4.54 | |
BSC | <0.01% | <$0.000001 | 930,149,593.3153 | $4.54 | |
BSC | <0.01% | <$0.000001 | 161,930,447,319,759,900 | $4.53 | |
BSC | <0.01% | $0.020323 | 221.7038 | $4.51 | |
BSC | <0.01% | $0.005809 | 766.4152 | $4.45 | |
BSC | <0.01% | <$0.000001 | 45,997,141,942.603 | $4.44 | |
BSC | <0.01% | <$0.000001 | 4,544,232,693,709.1816 | $4.42 | |
BSC | <0.01% | $0.002054 | 2,149.3125 | $4.42 | |
BSC | <0.01% | $0.599345 | 7.3081 | $4.38 | |
BSC | <0.01% | <$0.000001 | 4,452,254,186,670.6182 | $4.36 | |
BSC | <0.01% | $0.000525 | 8,217.3889 | $4.31 | |
BSC | <0.01% | $0.025411 | 165.4897 | $4.21 | |
BSC | <0.01% | $0.040191 | 104.5878 | $4.2 | |
BSC | <0.01% | <$0.000001 | 5,763,864,318,532.542 | $4.06 | |
BSC | <0.01% | <$0.000001 | 135,910,743,481,162.63 | $4.06 | |
BSC | <0.01% | $0.01057 | 383.1737 | $4.05 | |
BSC | <0.01% | $1.33 | 3.0226 | $4.02 | |
BSC | <0.01% | $0.021421 | 187.5064 | $4.02 | |
BSC | <0.01% | $0.000377 | 10,525.9009 | $3.97 | |
BSC | <0.01% | $0.00003 | 131,638.12 | $3.94 | |
BSC | <0.01% | $0.043732 | 89.4182 | $3.91 | |
BSC | <0.01% | $0.785551 | 4.9147 | $3.86 | |
BSC | <0.01% | $0.000002 | 1,714,897.0507 | $3.86 | |
BSC | <0.01% | $0.018179 | 210.8028 | $3.83 | |
BSC | <0.01% | $0.000501 | 7,568.3999 | $3.79 | |
BSC | <0.01% | $0.066114 | 57.1234 | $3.78 | |
BSC | <0.01% | $0.000515 | 7,299.2939 | $3.76 | |
BSC | <0.01% | $0.001888 | 1,974.7454 | $3.73 | |
BSC | <0.01% | $0.000125 | 29,700.7184 | $3.71 | |
BSC | <0.01% | <$0.000001 | 312,640,853.6917 | $3.69 | |
BSC | <0.01% | <$0.000001 | 86,664,582,844.3074 | $3.67 | |
BSC | <0.01% | $0.991069 | 3.6973 | $3.66 | |
BSC | <0.01% | $0.002247 | 1,628.5495 | $3.66 | |
BSC | <0.01% | $0.000007 | 506,902.4633 | $3.64 | |
BSC | <0.01% | $0.010828 | 335.5609 | $3.63 | |
BSC | <0.01% | $0.033114 | 109.4707 | $3.62 | |
BSC | <0.01% | $0.002196 | 1,646.8358 | $3.62 | |
BSC | <0.01% | $0.003166 | 1,130.953 | $3.58 | |
BSC | <0.01% | $0.000627 | 5,684.0276 | $3.57 | |
BSC | <0.01% | $0.00183 | 1,935.613 | $3.54 | |
BSC | <0.01% | $187.09 | 0.0189 | $3.54 | |
BSC | <0.01% | $0.007631 | 460.3466 | $3.51 | |
BSC | <0.01% | <$0.000001 | 27,554,602,943.3552 | $3.5 | |
BSC | <0.01% | $0.019864 | 173.1515 | $3.44 | |
BSC | <0.01% | $7.2 | 0.4766 | $3.43 | |
BSC | <0.01% | $0.010732 | 319.7516 | $3.43 | |
BSC | <0.01% | $0.998621 | 3.3736 | $3.37 | |
BSC | <0.01% | $0.000029 | 116,141.4017 | $3.35 | |
BSC | <0.01% | $6.7 | 0.4984 | $3.34 | |
BSC | <0.01% | $0.075427 | 44.2456 | $3.34 | |
BSC | <0.01% | $0.119165 | 27.9198 | $3.33 | |
BSC | <0.01% | $0.002948 | 1,125.4911 | $3.32 | |
BSC | <0.01% | $0.072242 | 45.2107 | $3.27 | |
BSC | <0.01% | $0.044903 | 72.5924 | $3.26 | |
BSC | <0.01% | $0.001069 | 3,046.2086 | $3.26 | |
BSC | <0.01% | $0.01072 | 301.1858 | $3.23 | |
BSC | <0.01% | $0.077896 | 41.4079 | $3.23 | |
BSC | <0.01% | <$0.000001 | 1,807,518,516,375.0237 | $3.21 | |
BSC | <0.01% | $0.019777 | 162.1132 | $3.21 | |
BSC | <0.01% | $0.004187 | 760.5446 | $3.18 | |
BSC | <0.01% | $0.014388 | 216.9438 | $3.12 | |
BSC | <0.01% | $0.081116 | 38.295 | $3.11 | |
BSC | <0.01% | $0.000019 | 162,694.49 | $3.1 | |
BSC | <0.01% | $0.002841 | 1,092.6945 | $3.1 | |
BSC | <0.01% | $0.009997 | 309.2639 | $3.09 | |
BSC | <0.01% | $0.00007 | 43,972.4453 | $3.09 | |
BSC | <0.01% | $0.032125 | 95.8567 | $3.08 | |
BSC | <0.01% | $0.000139 | 22,027.9954 | $3.06 | |
BSC | <0.01% | $0.000952 | 3,193.4327 | $3.04 | |
BSC | <0.01% | $0.092976 | 32.7052 | $3.04 | |
BSC | <0.01% | <$0.000001 | 502,237,138.6489 | $3.01 | |
BSC | <0.01% | $0.000014 | 219,223.8633 | $2.99 | |
BSC | <0.01% | $0.000424 | 7,016.858 | $2.98 | |
BSC | <0.01% | $0.117416 | 25.1554 | $2.95 | |
BSC | <0.01% | $0.205453 | 14.325 | $2.94 | |
BSC | <0.01% | $0.494659 | 5.9077 | $2.92 | |
BSC | <0.01% | $0.00122 | 2,394.0151 | $2.92 | |
BSC | <0.01% | $0.000268 | 10,881.612 | $2.92 | |
BSC | <0.01% | <$0.000001 | 6,868,516,385 | $2.91 | |
BSC | <0.01% | $0.014896 | 194.768 | $2.9 | |
BSC | <0.01% | $0.000072 | 40,342.1112 | $2.89 | |
BSC | <0.01% | $0.000522 | 5,535.5211 | $2.89 | |
BSC | <0.01% | <$0.000001 | 4,685,888,506.4466 | $2.87 | |
BSC | <0.01% | $0.031433 | 91.3623 | $2.87 | |
BSC | <0.01% | $0.015667 | 181.898 | $2.85 | |
BSC | <0.01% | $0.420022 | 6.7846 | $2.85 | |
BSC | <0.01% | $0.717292 | 3.96 | $2.84 | |
BSC | <0.01% | <$0.000001 | 14,159,963,184.9651 | $2.83 | |
BSC | <0.01% | <$0.000001 | 248,239,862,841.8671 | $2.8 | |
BSC | <0.01% | $0.000021 | 130,520.5831 | $2.78 | |
BSC | <0.01% | $0.00446 | 622.2197 | $2.78 | |
BSC | <0.01% | <$0.000001 | 71,554,214.1266 | $2.76 | |
BSC | <0.01% | <$0.000001 | 18,257,007.5173 | $2.73 | |
BSC | <0.01% | $0.029505 | 92.0595 | $2.72 | |
BSC | <0.01% | <$0.000001 | 665,737,903.2418 | $2.7 | |
BSC | <0.01% | $0.000233 | 11,574.3809 | $2.7 | |
BSC | <0.01% | $0.123044 | 21.7963 | $2.68 | |
BSC | <0.01% | $0.000704 | 3,765.2385 | $2.65 | |
BSC | <0.01% | $0.06095 | 43.363 | $2.64 | |
BSC | <0.01% | $0.004461 | 589.9091 | $2.63 | |
BSC | <0.01% | $0.00774 | 338.3498 | $2.62 | |
BSC | <0.01% | $0.38946 | 6.706 | $2.61 | |
BSC | <0.01% | $0.000344 | 7,495.7456 | $2.58 | |
BSC | <0.01% | $0.008664 | 296.5833 | $2.57 | |
BSC | <0.01% | $0.018716 | 136.9988 | $2.56 | |
BSC | <0.01% | <$0.000001 | 12,435,118.179 | $2.56 | |
BSC | <0.01% | $0.075743 | 33.7319 | $2.55 | |
BSC | <0.01% | <$0.000001 | 787,256,180.2873 | $2.55 | |
BSC | <0.01% | <$0.000001 | 4,823,294,589.844 | $2.55 | |
BSC | <0.01% | $0.000256 | 9,957.3167 | $2.55 | |
BSC | <0.01% | $0.025978 | 98.0542 | $2.55 | |
BSC | <0.01% | $0.001022 | 2,491.7855 | $2.55 | |
BSC | <0.01% | $0.004514 | 560.7938 | $2.53 | |
BSC | <0.01% | $0.011881 | 212.493 | $2.52 | |
BSC | <0.01% | <$0.000001 | 33,314,468.8058 | $2.52 | |
BSC | <0.01% | <$0.000001 | 216,953,349,996.458 | $2.5 | |
BSC | <0.01% | $0.000074 | 33,713.4049 | $2.49 | |
BSC | <0.01% | $1.26 | 1.97 | $2.48 | |
BSC | <0.01% | $0.000486 | 5,099.4394 | $2.48 | |
BSC | <0.01% | <$0.000001 | 6,689,246,304.5532 | $2.48 | |
BSC | <0.01% | $0.065146 | 37.95 | $2.47 | |
BSC | <0.01% | $0.000024 | 103,447.8651 | $2.47 | |
BSC | <0.01% | <$0.000001 | 11,430,678,013,958.582 | $2.44 | |
BSC | <0.01% | $0.001691 | 1,421.6259 | $2.4 | |
BSC | <0.01% | $0.016767 | 142.7554 | $2.39 | |
BSC | <0.01% | $0.002822 | 847.8164 | $2.39 | |
BSC | <0.01% | <$0.000001 | 1,729,990,505.6068 | $2.39 | |
BSC | <0.01% | <$0.000001 | 25,206,358.0151 | $2.39 | |
BSC | <0.01% | <$0.000001 | 12,892,543.6469 | $2.38 | |
BSC | <0.01% | $0.001212 | 1,951.3787 | $2.37 | |
BSC | <0.01% | $0.000054 | 43,705.6141 | $2.34 | |
BSC | <0.01% | $0.996386 | 2.3503 | $2.34 | |
BSC | <0.01% | $0.000061 | 38,549.4673 | $2.34 | |
BSC | <0.01% | $0.070983 | 32.8241 | $2.33 | |
BSC | <0.01% | $138.49 | 0.0168 | $2.33 | |
BSC | <0.01% | $0.000046 | 50,744.7698 | $2.32 | |
BSC | <0.01% | $0.000661 | 3,473.0905 | $2.3 | |
BSC | <0.01% | $0.051546 | 44.4669 | $2.29 | |
BSC | <0.01% | $5,072.6 | 0.00044987 | $2.28 | |
BSC | <0.01% | $0.007969 | 284.4318 | $2.27 | |
BSC | <0.01% | $0.000006 | 361,722.7254 | $2.26 | |
BSC | <0.01% | $0.195425 | 11.5752 | $2.26 | |
BSC | <0.01% | $0.000173 | 12,960.7097 | $2.25 | |
BSC | <0.01% | $0.037937 | 59.1817 | $2.25 | |
BSC | <0.01% | $0.359408 | 6.2172 | $2.23 | |
BSC | <0.01% | $0.017216 | 129.0089 | $2.22 | |
BSC | <0.01% | $0.000131 | 16,951.9859 | $2.22 | |
BSC | <0.01% | $0.00008 | 27,679.9788 | $2.21 | |
BSC | <0.01% | $0.00091 | 2,396.0782 | $2.18 | |
BSC | <0.01% | $0.016011 | 136.1581 | $2.18 | |
BSC | <0.01% | <$0.000001 | 685,206,399,728.0409 | $2.18 | |
BSC | <0.01% | $0.806895 | 2.6929 | $2.17 | |
BSC | <0.01% | $0.000145 | 14,851.4057 | $2.16 | |
BSC | <0.01% | <$0.000001 | 5,753,431.2571 | $2.16 | |
BSC | <0.01% | <$0.000001 | 83,096,914.5192 | $2.16 | |
BSC | <0.01% | $0.04708 | 45.6664 | $2.15 | |
BSC | <0.01% | <$0.000001 | 4,672,297.1159 | $2.13 | |
BSC | <0.01% | $0.001547 | 1,378.8759 | $2.13 | |
BSC | <0.01% | $0.002728 | 779.5816 | $2.13 | |
BSC | <0.01% | $0.000947 | 2,244.7561 | $2.13 | |
BSC | <0.01% | <$0.000001 | 521,681,137,819.817 | $2.12 | |
BSC | <0.01% | $0.002436 | 871.9666 | $2.12 | |
BSC | <0.01% | $0.604222 | 3.5131 | $2.12 | |
BSC | <0.01% | $0.006744 | 313.6254 | $2.11 | |
BSC | <0.01% | $0.00007 | 30,265.1485 | $2.11 | |
BSC | <0.01% | $0.003137 | 669.1074 | $2.1 | |
BSC | <0.01% | $0.002106 | 981.7829 | $2.07 | |
BSC | <0.01% | <$0.000001 | 5,917,038.4496 | $2.04 | |
BSC | <0.01% | $0.003823 | 531.2167 | $2.03 | |
BSC | <0.01% | $0.000657 | 3,075.5994 | $2.02 | |
BSC | <0.01% | $0.001023 | 1,956.9438 | $2 | |
BSC | <0.01% | $0.031733 | 62.422 | $1.98 | |
BSC | <0.01% | $0.664094 | 2.973 | $1.97 | |
BSC | <0.01% | <$0.000001 | 4,330,852,715.1406 | $1.97 | |
BSC | <0.01% | $0.009579 | 205.9315 | $1.97 | |
BSC | <0.01% | $0.123296 | 15.9627 | $1.97 | |
BSC | <0.01% | $0.001314 | 1,495.6773 | $1.97 | |
BSC | <0.01% | $0.011236 | 173.6201 | $1.95 | |
BSC | <0.01% | <$0.000001 | 14,004,866,743.7674 | $1.95 | |
BSC | <0.01% | $0.00253 | 770.3918 | $1.95 | |
BSC | <0.01% | $0.000319 | 6,065.4757 | $1.93 | |
BSC | <0.01% | <$0.000001 | 3,337,931,638.8419 | $1.93 | |
BSC | <0.01% | $0.007865 | 244.8367 | $1.93 | |
BSC | <0.01% | <$0.000001 | 1,578,687,071.1859 | $1.92 | |
BSC | <0.01% | $92,110 | 0.00002045 | $1.88 | |
BSC | <0.01% | $0.691375 | 2.7171 | $1.88 | |
BSC | <0.01% | <$0.000001 | 52,146,634.9701 | $1.87 | |
BSC | <0.01% | $0.000136 | 13,737.0346 | $1.87 | |
BSC | <0.01% | $0.070011 | 26.7564 | $1.87 | |
BSC | <0.01% | $1.73 | 1.076 | $1.86 | |
BSC | <0.01% | $0.000016 | 117,109.4138 | $1.86 | |
BSC | <0.01% | $0.442757 | 4.1996 | $1.86 | |
BSC | <0.01% | $0.000103 | 17,877.592 | $1.84 | |
BSC | <0.01% | $0.006933 | 264.8691 | $1.84 | |
BSC | <0.01% | $0.00837 | 219.3266 | $1.84 | |
BSC | <0.01% | $0.000001 | 2,190,982.5452 | $1.83 | |
BSC | <0.01% | $0.000015 | 123,962.9495 | $1.82 | |
BSC | <0.01% | $0.0032 | 568.6976 | $1.82 | |
BSC | <0.01% | $0.019841 | 91.047 | $1.81 | |
BSC | <0.01% | $0.010421 | 172.7586 | $1.8 | |
BSC | <0.01% | $0.002364 | 760.7336 | $1.8 | |
BSC | <0.01% | $14.28 | 0.1256 | $1.79 | |
BSC | <0.01% | $0.031257 | 56.2895 | $1.76 | |
BSC | <0.01% | $0.009073 | 193.64 | $1.76 | |
BSC | <0.01% | $2.89 | 0.6061 | $1.75 | |
BSC | <0.01% | $0.000451 | 3,829.7821 | $1.73 | |
BSC | <0.01% | <$0.000001 | 45,106,226,898.7777 | $1.73 | |
BSC | <0.01% | $2.93 | 0.5818 | $1.71 | |
BSC | <0.01% | $0.000002 | 701,665.4329 | $1.71 | |
BSC | <0.01% | $0.024954 | 67.0062 | $1.67 | |
BSC | <0.01% | $0.000012 | 135,112.139 | $1.66 | |
BSC | <0.01% | $0.000306 | 5,416.9337 | $1.66 | |
BSC | <0.01% | <$0.000001 | 121,482,832.2586 | $1.65 | |
BSC | <0.01% | $0.000774 | 2,125.019 | $1.65 | |
BSC | <0.01% | $0.003799 | 432.364 | $1.64 | |
BSC | <0.01% | $0.01949 | 84.024 | $1.64 | |
BSC | <0.01% | $0.001307 | 1,250.8519 | $1.64 | |
BSC | <0.01% | $0.000039 | 42,169.1296 | $1.63 | |
BSC | <0.01% | $0.000042 | 38,545.4977 | $1.62 | |
BSC | <0.01% | $0.000037 | 43,878.1818 | $1.61 | |
BSC | <0.01% | $0.007884 | 204.0488 | $1.61 | |
BSC | <0.01% | $0.007001 | 227.3459 | $1.59 | |
BSC | <0.01% | $0.331762 | 4.7922 | $1.59 | |
BSC | <0.01% | $0.000036 | 43,827.567 | $1.58 | |
BSC | <0.01% | $0.08041 | 19.6709 | $1.58 | |
BSC | <0.01% | $0.003705 | 426.7538 | $1.58 | |
BSC | <0.01% | <$0.000001 | 80,719,674,537.8448 | $1.56 | |
BSC | <0.01% | $0.000223 | 6,990.3793 | $1.56 | |
BSC | <0.01% | $0.000087 | 17,777.4312 | $1.55 | |
BSC | <0.01% | $43.11 | 0.0356 | $1.54 | |
BSC | <0.01% | $2.93 | 0.5231 | $1.53 | |
BSC | <0.01% | $0.530353 | 2.8792 | $1.53 | |
BSC | <0.01% | $0.000418 | 3,627.1747 | $1.51 | |
BSC | <0.01% | <$0.000001 | 12,278,034,501.2701 | $1.51 | |
BSC | <0.01% | $0.00052 | 2,896.0396 | $1.51 | |
BSC | <0.01% | $0.00286 | 525.0923 | $1.5 | |
BSC | <0.01% | $0.00134 | 1,112.9452 | $1.49 | |
BSC | <0.01% | $0.000037 | 39,804.1353 | $1.49 | |
BSC | <0.01% | <$0.000001 | 5,450,239,079.9993 | $1.49 | |
BSC | <0.01% | $0.019056 | 77.4889 | $1.48 | |
BSC | <0.01% | $0.313898 | 4.6594 | $1.46 | |
BSC | <0.01% | $0.034084 | 42.9 | $1.46 | |
BSC | <0.01% | $0.000001 | 2,452,762.4105 | $1.46 | |
BSC | <0.01% | $0.002672 | 543.307 | $1.45 | |
BSC | <0.01% | $0.086992 | 16.5788 | $1.44 | |
BSC | <0.01% | <$0.000001 | 75,644,836,607,822.516 | $1.44 | |
BSC | <0.01% | $0.00324 | 437.6526 | $1.42 | |
BSC | <0.01% | $0.000058 | 24,543.9619 | $1.41 | |
BSC | <0.01% | $0.00164 | 860.3186 | $1.41 | |
BSC | <0.01% | $0.010264 | 137.0444 | $1.41 | |
BSC | <0.01% | $0.004315 | 325.762 | $1.41 | |
BSC | <0.01% | $0.017742 | 78.8168 | $1.4 | |
BSC | <0.01% | $0.01848 | 75.6306 | $1.4 | |
BSC | <0.01% | $0.020266 | 68.684 | $1.39 | |
BSC | <0.01% | $0.000006 | 243,760.3858 | $1.39 | |
BSC | <0.01% | $151.05 | 0.00919822 | $1.39 | |
BSC | <0.01% | $0.00094 | 1,475.8762 | $1.39 | |
BSC | <0.01% | $0.000203 | 6,834.5601 | $1.39 | |
BSC | <0.01% | $0.009853 | 140.4824 | $1.38 | |
BSC | <0.01% | $0.484291 | 2.8569 | $1.38 | |
BSC | <0.01% | $0.000003 | 420,433.2142 | $1.38 | |
BSC | <0.01% | $0.001519 | 905.6813 | $1.38 | |
BSC | <0.01% | $0.001393 | 984.1114 | $1.37 | |
BSC | <0.01% | $1.86 | 0.7366 | $1.37 | |
BSC | <0.01% | <$0.000001 | 2,464,419,795.4624 | $1.37 | |
BSC | <0.01% | $115.47 | 0.0118 | $1.36 | |
BSC | <0.01% | $0.000141 | 9,617.3924 | $1.36 | |
BSC | <0.01% | $0.000449 | 2,990.6311 | $1.34 | |
BSC | <0.01% | <$0.000001 | 5,828,244,263.2837 | $1.33 | |
BSC | <0.01% | $0.02007 | 66 | $1.32 | |
BSC | <0.01% | <$0.000001 | 8,015,743.3797 | $1.32 | |
BSC | <0.01% | $0.000004 | 307,659.3946 | $1.31 | |
BSC | <0.01% | $0.000128 | 10,190.9611 | $1.3 | |
BSC | <0.01% | <$0.000001 | 9,665,941.5517 | $1.29 | |
BSC | <0.01% | <$0.000001 | 8,583,690.5472 | $1.29 | |
BSC | <0.01% | $0.000401 | 3,205.9654 | $1.29 | |
BSC | <0.01% | $0.213278 | 6.018 | $1.28 | |
BSC | <0.01% | $0.110902 | 11.5102 | $1.28 | |
BSC | <0.01% | <$0.000001 | 1,537,687,142.9545 | $1.27 | |
BSC | <0.01% | $0.003147 | 403.8373 | $1.27 | |
BSC | <0.01% | <$0.000001 | 1,250,127,333,414.2219 | $1.26 | |
BSC | <0.01% | $0.000111 | 11,383.7542 | $1.26 | |
BSC | <0.01% | $0.000294 | 4,293.9997 | $1.26 | |
BSC | <0.01% | $0.003064 | 411.3632 | $1.26 | |
BSC | <0.01% | $0.000356 | 3,539.571 | $1.26 | |
BSC | <0.01% | $0.000737 | 1,681.8672 | $1.24 | |
BSC | <0.01% | $0.000005 | 251,535.0335 | $1.24 | |
BSC | <0.01% | $0.001317 | 937.5697 | $1.23 | |
BSC | <0.01% | $0.0001 | 12,365.0031 | $1.23 | |
BSC | <0.01% | $0.025711 | 47.8027 | $1.23 | |
BSC | <0.01% | $0.002149 | 571.3226 | $1.23 | |
BSC | <0.01% | $0.052113 | 23.4422 | $1.22 | |
BSC | <0.01% | $0.007539 | 161.1128 | $1.21 | |
BSC | <0.01% | <$0.000001 | 238,964,818.3501 | $1.21 | |
BSC | <0.01% | <$0.000001 | 3,006,660,434.3218 | $1.21 | |
BSC | <0.01% | <$0.000001 | 4,149,020,556.3157 | $1.21 | |
BSC | <0.01% | $0.00065 | 1,860.7265 | $1.21 | |
BSC | <0.01% | $0.014873 | 81.2829 | $1.21 | |
BSC | <0.01% | $0.01466 | 82.2648 | $1.21 | |
BSC | <0.01% | <$0.000001 | 2,369,705,266.972 | $1.2 | |
BSC | <0.01% | $0.023926 | 50.1143 | $1.2 | |
BSC | <0.01% | $1.16 | 1.028 | $1.2 | |
BSC | <0.01% | $0.000068 | 17,456.9894 | $1.19 | |
BSC | <0.01% | $0.005717 | 207.211 | $1.18 | |
BSC | <0.01% | $1.06 | 1.1122 | $1.18 | |
BSC | <0.01% | $0.00021 | 5,613.2919 | $1.18 | |
BSC | <0.01% | <$0.000001 | 699,468,874,130.6803 | $1.18 | |
BSC | <0.01% | $0.699478 | 1.654 | $1.16 | |
BSC | <0.01% | $0.014439 | 80.0845 | $1.16 | |
BSC | <0.01% | $0.000321 | 3,587.9339 | $1.15 | |
BSC | <0.01% | $0.000001 | 1,068,286.496 | $1.14 | |
BSC | <0.01% | $0.002039 | 558.9378 | $1.14 | |
BSC | <0.01% | <$0.000001 | 24,172,898.2977 | $1.13 | |
BSC | <0.01% | $0.002637 | 429.8594 | $1.13 | |
BSC | <0.01% | $0.0021 | 539.7609 | $1.13 | |
BSC | <0.01% | $0.000001 | 2,040,311.6306 | $1.13 | |
BSC | <0.01% | $0.082258 | 13.7429 | $1.13 | |
BSC | <0.01% | $0.643939 | 1.7509 | $1.13 | |
BSC | <0.01% | $0.000428 | 2,627.9376 | $1.13 | |
BSC | <0.01% | $0.003107 | 361.7556 | $1.12 | |
BSC | <0.01% | <$0.000001 | 17,227,304.2907 | $1.12 | |
BSC | <0.01% | $0.006279 | 178.8923 | $1.12 | |
BSC | <0.01% | <$0.000001 | 501,633,931.4152 | $1.12 | |
BSC | <0.01% | $0.20502 | 5.4493 | $1.12 | |
BSC | <0.01% | $0.007403 | 150.8794 | $1.12 | |
BSC | <0.01% | $0.147657 | 7.5611 | $1.12 | |
BSC | <0.01% | $0.001378 | 800.406 | $1.1 | |
BSC | <0.01% | <$0.000001 | 100,887,620,749 | $1.09 | |
BSC | <0.01% | $0.000015 | 72,068.5505 | $1.09 | |
BSC | <0.01% | $0.002417 | 448.2042 | $1.08 | |
BSC | <0.01% | $0.001244 | 868.0732 | $1.08 | |
BSC | <0.01% | <$0.000001 | 394,847,433.3026 | $1.08 | |
BSC | <0.01% | $0.00275 | 390.4021 | $1.07 | |
BSC | <0.01% | $0.524288 | 2.0392 | $1.07 | |
BSC | <0.01% | $0.000014 | 77,515.4974 | $1.07 | |
BSC | <0.01% | <$0.000001 | 27,056,205.4537 | $1.07 | |
BSC | <0.01% | $0.00344 | 309.249 | $1.06 | |
BSC | <0.01% | $0.021946 | 48.3403 | $1.06 | |
BSC | <0.01% | <$0.000001 | 2,580,032,703.5978 | $1.05 | |
BSC | <0.01% | $0.015165 | 69.2299 | $1.05 | |
BSC | <0.01% | $0.001461 | 716.5406 | $1.05 | |
BSC | <0.01% | $0.003152 | 330.6945 | $1.04 | |
BSC | <0.01% | $0.000013 | 79,698.2234 | $1.04 | |
BSC | <0.01% | $0.01 | 102.9012 | $1.03 | |
BSC | <0.01% | $0.033583 | 30.5544 | $1.03 | |
BSC | <0.01% | $0.998791 | 1.0251 | $1.02 | |
BSC | <0.01% | $0.001099 | 923.5467 | $1.02 | |
BSC | <0.01% | $0.00375 | 270.6219 | $1.01 | |
BSC | <0.01% | $0.000589 | 1,719.5015 | $1.01 | |
BSC | <0.01% | $0.009374 | 107.4 | $1.01 | |
BSC | <0.01% | $0.000179 | 5,600.3743 | $1 | |
BSC | <0.01% | $0.000475 | 2,096.2858 | $0.9955 | |
BSC | <0.01% | $0.001255 | 772.4253 | $0.9696 | |
BSC | <0.01% | $0.002559 | 378.8602 | $0.9696 | |
BSC | <0.01% | <$0.000001 | 103,973,380.8712 | $0.9642 | |
BSC | <0.01% | $0.002144 | 446.4632 | $0.9569 | |
BSC | <0.01% | $0.007097 | 133.4792 | $0.9473 | |
BSC | <0.01% | $0.064915 | 14.5916 | $0.9472 | |
BSC | <0.01% | $0.00025 | 3,785.294 | $0.947 | |
BSC | <0.01% | $0.060207 | 15.5874 | $0.9384 | |
BSC | <0.01% | $0.002755 | 339.9654 | $0.9365 | |
BSC | <0.01% | $0.273925 | 3.4015 | $0.9317 | |
BSC | <0.01% | $0.008703 | 106.1418 | $0.9237 | |
BSC | <0.01% | <$0.000001 | 25,154,529.6223 | $0.9222 | |
BSC | <0.01% | $1 | 0.9198 | $0.9198 | |
BSC | <0.01% | $6,717.71 | 0.00013666 | $0.918 | |
BSC | <0.01% | <$0.000001 | 3,885,848.5266 | $0.9143 | |
BSC | <0.01% | $2.41 | 0.3788 | $0.913 | |
BSC | <0.01% | $0.001493 | 608.0512 | $0.9076 | |
BSC | <0.01% | $0.000651 | 1,389.3879 | $0.9044 | |
BSC | <0.01% | $0.051228 | 17.4559 | $0.8942 | |
BSC | <0.01% | <$0.000001 | 2,780,710,532,560.0215 | $0.8918 | |
BSC | <0.01% | $0.00012 | 7,332.396 | $0.8787 | |
BSC | <0.01% | $0.00016 | 5,439.2044 | $0.8697 | |
BSC | <0.01% | $1.29 | 0.6726 | $0.8676 | |
BSC | <0.01% | $0.000118 | 7,334.2303 | $0.8675 | |
BSC | <0.01% | $0.000082 | 10,515.9917 | $0.8667 | |
BSC | <0.01% | $0.007807 | 110.9733 | $0.8663 | |
BSC | <0.01% | $0.000544 | 1,591.017 | $0.8649 | |
BSC | <0.01% | $0.000009 | 91,269.0197 | $0.8634 | |
BSC | <0.01% | $0.002944 | 292.56 | $0.8612 | |
BSC | <0.01% | $0.003328 | 252.0285 | $0.8386 | |
BSC | <0.01% | $0.00002 | 41,606.225 | $0.8373 | |
BSC | <0.01% | $0.001012 | 827.3487 | $0.8371 | |
BSC | <0.01% | $0.00066 | 1,266.8507 | $0.8358 | |
BSC | <0.01% | $0.000011 | 79,044.9469 | $0.8347 | |
BSC | <0.01% | $0.007358 | 112.6305 | $0.8287 | |
BSC | <0.01% | $0.001352 | 611.4701 | $0.8268 | |
BSC | <0.01% | <$0.000001 | 2,057,771,027.9465 | $0.8231 | |
BSC | <0.01% | $0.008059 | 102.0023 | $0.822 | |
BSC | <0.01% | $0.000164 | 4,979.4106 | $0.8155 | |
BSC | <0.01% | $0.00175 | 463.1166 | $0.8105 | |
BSC | <0.01% | $0.0003 | 2,678.754 | $0.8035 | |
BSC | <0.01% | <$0.000001 | 453,399,952.0596 | $0.8022 | |
BSC | <0.01% | $0.397794 | 2.0051 | $0.7976 | |
BSC | <0.01% | $0.007942 | 99.4635 | $0.7899 | |
BSC | <0.01% | $0.002647 | 296.9148 | $0.7859 | |
BSC | <0.01% | $0.000003 | 226,822.9394 | $0.7802 | |
BSC | <0.01% | <$0.000001 | 738,580,193.8016 | $0.7769 | |
BSC | <0.01% | <$0.000001 | 277,307,841.4167 | $0.7764 | |
BSC | <0.01% | $0.000752 | 1,014.6774 | $0.7632 | |
BSC | <0.01% | $0.000019 | 40,849.9388 | $0.7626 | |
BSC | <0.01% | $0.000467 | 1,627.3557 | $0.7606 | |
BSC | <0.01% | $0.448013 | 1.6965 | $0.76 | |
BSC | <0.01% | <$0.000001 | 69,026,330.2804 | $0.7592 | |
BSC | <0.01% | $0.409358 | 1.8452 | $0.7553 | |
BSC | <0.01% | $0.005966 | 125.8924 | $0.751 | |
BSC | <0.01% | $0.000612 | 1,227.771 | $0.7509 | |
BSC | <0.01% | $5 | 0.15 | $0.75 | |
BSC | <0.01% | $0.000255 | 2,937.3507 | $0.7495 | |
BSC | <0.01% | $0.042585 | 17.5627 | $0.7479 | |
BSC | <0.01% | <$0.000001 | 1,868,605,228.653 | $0.7474 | |
BSC | <0.01% | $0.003236 | 230.4522 | $0.7456 | |
BSC | <0.01% | $0.002469 | 301.9077 | $0.7453 | |
BSC | <0.01% | $0.005415 | 137.0146 | $0.7419 | |
BSC | <0.01% | <$0.000001 | 2,686,240,555,872.1196 | $0.7416 | |
BSC | <0.01% | $15.77 | 0.0468 | $0.7383 | |
BSC | <0.01% | <$0.000001 | 2,333,648.6088 | $0.7353 | |
BSC | <0.01% | $6.85 | 0.1072 | $0.7339 | |
BSC | <0.01% | $0.000203 | 3,596.7806 | $0.7296 | |
BSC | <0.01% | $0.395335 | 1.8443 | $0.7291 | |
BSC | <0.01% | $0.001834 | 397.4695 | $0.7289 | |
BSC | <0.01% | $0.000314 | 2,305.4696 | $0.7239 | |
BSC | <0.01% | $15.28 | 0.0474 | $0.7239 | |
BSC | <0.01% | <$0.000001 | 801,555,766.0522 | $0.7214 | |
BSC | <0.01% | $0.001078 | 667.8834 | $0.7201 | |
BSC | <0.01% | <$0.000001 | 164,297,413.8677 | $0.7176 | |
BSC | <0.01% | $0.004061 | 175.16 | $0.7114 | |
BSC | <0.01% | <$0.000001 | 336,957,529,333,983.69 | $0.7069 | |
BSC | <0.01% | <$0.000001 | 3,534,522,281.5985 | $0.7069 | |
BSC | <0.01% | $0.024327 | 28.9029 | $0.7031 | |
BSC | <0.01% | $0.046284 | 15 | $0.6942 | |
BSC | <0.01% | $0.000034 | 20,140.5117 | $0.693 | |
BSC | <0.01% | <$0.000001 | 2,242,795.2023 | $0.6877 | |
BSC | <0.01% | $0.000048 | 14,158.3914 | $0.6849 | |
BSC | <0.01% | $0.025583 | 26.6579 | $0.6819 | |
BSC | <0.01% | $0.001294 | 525.2619 | $0.6798 | |
BSC | <0.01% | <$0.000001 | 19,153,196,596.8613 | $0.6757 | |
BSC | <0.01% | $0.000151 | 4,464.8409 | $0.6727 | |
BSC | <0.01% | $0.001337 | 502.1723 | $0.6715 | |
BSC | <0.01% | <$0.000001 | 88,514,773.8636 | $0.6702 | |
BSC | <0.01% | $0.006138 | 108.6319 | $0.6668 | |
BSC | <0.01% | $0.004571 | 145.4984 | $0.665 | |
BSC | <0.01% | $0.181205 | 3.6535 | $0.662 | |
BSC | <0.01% | $0.000212 | 3,096.6048 | $0.6574 | |
BSC | <0.01% | $0.00005 | 13,168.4232 | $0.6569 | |
BSC | <0.01% | <$0.000001 | 107,474,537.9636 | $0.6566 | |
BSC | <0.01% | $0.00909 | 72.105 | $0.6554 | |
BSC | <0.01% | $0.003201 | 204.3547 | $0.6541 | |
BSC | <0.01% | $0.003005 | 215.5342 | $0.6476 | |
BSC | <0.01% | $2.43 | 0.265 | $0.6446 | |
BSC | <0.01% | $0.00175 | 366.9512 | $0.642 | |
BSC | <0.01% | $0.000965 | 664.1616 | $0.641 | |
BSC | <0.01% | $0.00656 | 97.2786 | $0.6381 | |
BSC | <0.01% | $0.016925 | 37.656 | $0.6373 | |
BSC | <0.01% | <$0.000001 | 4,079,984,851.6681 | $0.6332 | |
BSC | <0.01% | $0.000527 | 1,193.0291 | $0.6283 | |
BSC | <0.01% | <$0.000001 | 2,444,483.8307 | $0.6281 | |
BSC | <0.01% | $0.000499 | 1,251.3442 | $0.6244 | |
BSC | <0.01% | $679.51 | 0.00091721 | $0.6232 | |
BSC | <0.01% | $0.016128 | 38.6174 | $0.6228 | |
BSC | <0.01% | $0.017947 | 34.4553 | $0.6183 | |
BSC | <0.01% | $0.000987 | 626.2017 | $0.6178 | |
BSC | <0.01% | $0.065414 | 9.4279 | $0.6167 | |
BSC | <0.01% | $0.000614 | 1,002.5541 | $0.6158 | |
BSC | <0.01% | $0.000196 | 3,131.2755 | $0.6135 | |
BSC | <0.01% | $0.155142 | 3.9267 | $0.6092 | |
BSC | <0.01% | <$0.000001 | 482,364,529.9085 | $0.6045 | |
BSC | <0.01% | $1.04 | 0.5785 | $0.6032 | |
BSC | <0.01% | $0.000099 | 6,022.1075 | $0.5979 | |
BSC | <0.01% | $0.00341 | 173.3654 | $0.5912 | |
BSC | <0.01% | $0.000337 | 1,752.8101 | $0.5905 | |
BSC | <0.01% | $0.000139 | 4,250.4483 | $0.5902 | |
BSC | <0.01% | $0.002497 | 235.9134 | $0.5891 | |
BSC | <0.01% | $0.000071 | 8,266.9661 | $0.5875 | |
BSC | <0.01% | $0.042468 | 13.6619 | $0.5802 | |
BSC | <0.01% | $0.000012 | 48,174.9241 | $0.578 | |
BSC | <0.01% | $0.000003 | 190,754.0888 | $0.5779 | |
BSC | <0.01% | $0.000118 | 4,880.601 | $0.5769 | |
BSC | <0.01% | <$0.000001 | 640,475,983.1717 | $0.5764 | |
BSC | <0.01% | <$0.000001 | 1,677,332,897,706.375 | $0.5731 | |
BSC | <0.01% | <$0.000001 | 1,239,757.3537 | $0.57 | |
BSC | <0.01% | $0.001415 | 401.3104 | $0.5677 | |
BSC | <0.01% | $2.59 | 0.2187 | $0.5665 | |
BSC | <0.01% | $0.093489 | 6.0027 | $0.5611 | |
BSC | <0.01% | $0.006279 | 88.8432 | $0.5578 | |
BSC | <0.01% | $0.000699 | 793.2372 | $0.5547 | |
BSC | <0.01% | $0.004005 | 138.2523 | $0.5536 | |
BSC | <0.01% | $0.487686 | 1.1265 | $0.5493 | |
BSC | <0.01% | $0.000422 | 1,297.9258 | $0.5472 | |
BSC | <0.01% | $0.004599 | 118.5916 | $0.5454 | |
BSC | <0.01% | $0.000022 | 24,626.1847 | $0.5437 | |
BSC | <0.01% | <$0.000001 | 12,881,816,902,758.451 | $0.5418 | |
BSC | <0.01% | $0.001846 | 291.6905 | $0.5383 | |
BSC | <0.01% | $0.233751 | 2.29 | $0.5352 | |
BSC | <0.01% | $0.000012 | 46,375.4629 | $0.5347 | |
BSC | <0.01% | $0.00084 | 635.6377 | $0.5336 | |
BSC | <0.01% | $0.007747 | 68.8917 | $0.5336 | |
BSC | <0.01% | $0.000409 | 1,300.3319 | $0.5319 | |
BSC | <0.01% | $0.035389 | 15.024 | $0.5316 | |
BSC | <0.01% | <$0.000001 | 117,926,098.7395 | $0.5306 | |
BSC | <0.01% | $0.003887 | 136.3282 | $0.5299 | |
BSC | <0.01% | $0.220118 | 2.3986 | $0.5279 | |
BSC | <0.01% | $0.000002 | 255,791.39 | $0.5266 | |
BSC | <0.01% | $0.000346 | 1,510.2512 | $0.5221 | |
BSC | <0.01% | $0.002671 | 194.9516 | $0.5206 | |
BSC | <0.01% | <$0.000001 | 91,851,052,661.9269 | $0.5202 | |
BSC | <0.01% | <$0.000001 | 134,697,715.4837 | $0.5195 | |
BSC | <0.01% | $0.003714 | 139.4578 | $0.5178 | |
BSC | <0.01% | $0.011389 | 45.3835 | $0.5168 | |
BSC | <0.01% | $0.004868 | 105.6028 | $0.514 | |
BSC | <0.01% | $0.016706 | 30.7445 | $0.5136 | |
BSC | <0.01% | $0.116697 | 4.3708 | $0.51 | |
BSC | <0.01% | $0.004097 | 123.8058 | $0.5072 | |
BSC | <0.01% | $0.002554 | 196.2796 | $0.5012 | |
BSC | <0.01% | $0.001054 | 470.9038 | $0.4964 | |
BSC | <0.01% | $0.000012 | 40,373.0436 | $0.4921 | |
BSC | <0.01% | $0.000508 | 967.4162 | $0.4919 | |
BSC | <0.01% | $0.00043 | 1,141.6964 | $0.4907 | |
BSC | <0.01% | $0.000001 | 507,099.1774 | $0.488 | |
BSC | <0.01% | $0.004947 | 98.2788 | $0.4861 | |
BSC | <0.01% | <$0.000001 | 3,133,238.1619 | $0.486 | |
BSC | <0.01% | <$0.000001 | 23,013,468.7649 | $0.4857 | |
BSC | <0.01% | $0.00103 | 471.0663 | $0.4853 | |
BSC | <0.01% | $0.000001 | 325,501.5471 | $0.4849 | |
BSC | <0.01% | $0.024678 | 19.6236 | $0.4842 | |
BSC | <0.01% | $0.011612 | 41.6993 | $0.4841 | |
BSC | <0.01% | <$0.000001 | 4,830,402,346 | $0.483 | |
BSC | <0.01% | $0.000003 | 147,029.0182 | $0.479 | |
BSC | <0.01% | $1,485.17 | 0.00032171 | $0.4777 | |
BSC | <0.01% | <$0.000001 | 3,806,412.7019 | $0.4754 | |
BSC | <0.01% | $0.124862 | 3.7859 | $0.4727 | |
BSC | <0.01% | $0.684837 | 0.686 | $0.4698 | |
BSC | <0.01% | $0.004132 | 113.5662 | $0.4692 | |
BSC | <0.01% | $0.001195 | 391.7629 | $0.468 | |
BSC | <0.01% | $0.007046 | 66.2141 | $0.4665 | |
BSC | <0.01% | $0.000223 | 2,088.1963 | $0.4658 | |
BSC | <0.01% | $0.717292 | 0.6479 | $0.4647 | |
BSC | <0.01% | $0.007851 | 58.6585 | $0.4605 | |
BSC | <0.01% | $0.000068 | 6,771.1052 | $0.4584 | |
BSC | <0.01% | $0.99985 | 0.4571 | $0.457 | |
BSC | <0.01% | $0.002598 | 175.392 | $0.4557 | |
BSC | <0.01% | $0.217148 | 2.0911 | $0.454 | |
BSC | <0.01% | $0.000438 | 1,034.2142 | $0.4532 | |
BSC | <0.01% | $0.007482 | 60.5796 | $0.4532 | |
BSC | <0.01% | $0.007564 | 59.8012 | $0.4523 | |
BSC | <0.01% | $0.033716 | 13.334 | $0.4495 | |
BSC | <0.01% | $0.012892 | 34.7263 | $0.4477 | |
BSC | <0.01% | $0.000093 | 4,760.856 | $0.4449 | |
BSC | <0.01% | $0.004274 | 102.9539 | $0.44 | |
BSC | <0.01% | $0.000059 | 7,295.48 | $0.4318 | |
BSC | <0.01% | $0.000013 | 33,174.5238 | $0.4316 | |
BSC | <0.01% | $0.000826 | 520.1192 | $0.4296 | |
BSC | <0.01% | <$0.000001 | 364,290,198.1458 | $0.4291 | |
BSC | <0.01% | $0.007828 | 54.8059 | $0.429 | |
BSC | <0.01% | $0.05601 | 7.4741 | $0.4186 | |
BSC | <0.01% | $0.00013 | 3,191.0063 | $0.4157 | |
BSC | <0.01% | $0.000194 | 2,142.4909 | $0.4146 | |
BSC | <0.01% | $0.001034 | 400.7303 | $0.4141 | |
BSC | <0.01% | <$0.000001 | 589,727,868.8446 | $0.4128 | |
BSC | <0.01% | $0.029872 | 13.8217 | $0.4128 | |
BSC | <0.01% | $0.047117 | 8.7367 | $0.4116 | |
BSC | <0.01% | $0.000114 | 3,622.2661 | $0.4113 | |
BSC | <0.01% | $0.000257 | 1,590.9055 | $0.4086 | |
BSC | <0.01% | <$0.000001 | 6,644,221.2176 | $0.4072 | |
BSC | <0.01% | <$0.000001 | 33,289,739.7247 | $0.4061 | |
BSC | <0.01% | $0.000022 | 18,189.2543 | $0.4036 | |
BSC | <0.01% | $0.002588 | 155.512 | $0.4024 | |
BSC | <0.01% | <$0.000001 | 417,201,368.4217 | $0.4005 | |
BSC | <0.01% | $0.000556 | 720.4857 | $0.4002 | |
BSC | <0.01% | $0.049715 | 8 | $0.3977 | |
BSC | <0.01% | <$0.000001 | 53,781,572.1125 | $0.3923 | |
BSC | <0.01% | $0.000001 | 625,481.035 | $0.3919 | |
BSC | <0.01% | $0.000001 | 387,659.1082 | $0.3915 | |
BSC | <0.01% | $0.001956 | 199.9457 | $0.3911 | |
BSC | <0.01% | $0.005017 | 77.3157 | $0.3879 | |
BSC | <0.01% | <$0.000001 | 8,451,006.6763 | $0.3853 | |
BSC | <0.01% | $0.000093 | 4,141.4203 | $0.3848 | |
BSC | <0.01% | $0.083417 | 4.5999 | $0.3837 | |
BSC | <0.01% | $0.001273 | 300.5356 | $0.3825 | |
BSC | <0.01% | $0.000164 | 2,336.2064 | $0.3823 | |
BSC | <0.01% | $5.35 | 0.0713 | $0.3815 | |
BSC | <0.01% | $0.001488 | 255.3558 | $0.3799 | |
BSC | <0.01% | $0.000601 | 630.015 | $0.3788 | |
BSC | <0.01% | $0.387504 | 0.9666 | $0.3745 | |
BSC | <0.01% | $0.000393 | 950.6046 | $0.3739 | |
BSC | <0.01% | $1.06 | 0.3524 | $0.3729 | |
BSC | <0.01% | $0.000549 | 672.6694 | $0.3695 | |
BSC | <0.01% | $0.001436 | 257.0906 | $0.3692 | |
BSC | <0.01% | <$0.000001 | 246,458,243.3677 | $0.3689 | |
BSC | <0.01% | <$0.000001 | 283,605,284.2597 | $0.3686 | |
BSC | <0.01% | $0.000357 | 1,026.0165 | $0.3667 | |
BSC | <0.01% | $0.000224 | 1,635.9491 | $0.3663 | |
BSC | <0.01% | $0.013608 | 26.7746 | $0.3643 | |
BSC | <0.01% | $0.384 | 0.9373 | $0.3599 | |
BSC | <0.01% | $0.225014 | 1.5974 | $0.3594 | |
BSC | <0.01% | $0.000014 | 25,006.2468 | $0.357 | |
BSC | <0.01% | $0.000611 | 584.6721 | $0.357 | |
BSC | <0.01% | $0.00031 | 1,148.6004 | $0.356 | |
BSC | <0.01% | $0.017625 | 20.1366 | $0.3549 | |
BSC | <0.01% | <$0.000001 | 23,440,946,552,508.414 | $0.3515 | |
BSC | <0.01% | $0.00315 | 111.3468 | $0.3506 | |
BSC | <0.01% | $0.004375 | 79.8738 | $0.3494 | |
BSC | <0.01% | <$0.000001 | 124,149,999.998 | $0.3476 | |
BSC | <0.01% | $0.000901 | 383.7192 | $0.3456 | |
BSC | <0.01% | $0.226342 | 1.5264 | $0.3454 | |
BSC | <0.01% | $0.00001 | 33,834.2934 | $0.3448 | |
BSC | <0.01% | $0.003591 | 95.6495 | $0.3434 | |
BSC | <0.01% | $0.001808 | 189.465 | $0.3426 | |
BSC | <0.01% | $0.000048 | 7,105.4101 | $0.3413 | |
BSC | <0.01% | $0.000091 | 3,736.9206 | $0.3412 | |
BSC | <0.01% | $0.000003 | 115,980.06 | $0.3375 | |
BSC | <0.01% | $0.011253 | 30 | $0.3375 | |
BSC | <0.01% | $0.000238 | 1,415.981 | $0.3367 | |
BSC | <0.01% | $0.000006 | 57,886.1157 | $0.3362 | |
BSC | <0.01% | <$0.000001 | 41,940,919,714,846.117 | $0.3359 | |
BSC | <0.01% | $0.000014 | 24,399.2429 | $0.3332 | |
BSC | <0.01% | $0.028976 | 11.4856 | $0.3328 | |
BSC | <0.01% | $0.002179 | 152.1023 | $0.3314 | |
BSC | <0.01% | $0.000056 | 5,886.5607 | $0.331 | |
BSC | <0.01% | $30 | 0.011 | $0.3297 | |
BSC | <0.01% | $1.78 | 0.1855 | $0.3295 | |
BSC | <0.01% | $0.000025 | 13,235.5404 | $0.3269 | |
BSC | <0.01% | $0.000235 | 1,388.3362 | $0.3268 | |
BSC | <0.01% | <$0.000001 | 2,577,577,222.5289 | $0.3245 | |
BSC | <0.01% | $0.00027 | 1,201.7403 | $0.3245 | |
BSC | <0.01% | <$0.000001 | 1,637,838.5617 | $0.3229 | |
BSC | <0.01% | $0.038884 | 8.2945 | $0.3225 | |
BSC | <0.01% | $0.000034 | 9,395.3287 | $0.3216 | |
BSC | <0.01% | $0.000004 | 88,803.2564 | $0.3214 | |
BSC | <0.01% | $0.000148 | 2,164.9772 | $0.3212 | |
BSC | <0.01% | $0.000001 | 434,383.7829 | $0.3204 | |
BSC | <0.01% | $0.003764 | 84.6588 | $0.3186 | |
BSC | <0.01% | <$0.000001 | 1,138,115.6652 | $0.3174 | |
BSC | <0.01% | $0.001647 | 192.1424 | $0.3164 | |
BSC | <0.01% | <$0.000001 | 176,733,388.6878 | $0.3163 | |
BSC | <0.01% | $0.00024 | 1,318.0035 | $0.3162 | |
BSC | <0.01% | $0.000037 | 8,610.4394 | $0.3161 | |
BSC | <0.01% | $0.001597 | 197.0155 | $0.3146 | |
BSC | <0.01% | $0.004919 | 63.9562 | $0.3145 | |
BSC | <0.01% | <$0.000001 | 31,217,464.1606 | $0.3133 | |
BSC | <0.01% | $0.00001 | 31,828.3085 | $0.3131 | |
BSC | <0.01% | $0.001298 | 239.4865 | $0.3108 | |
BSC | <0.01% | $0.000003 | 91,937.4576 | $0.3098 | |
BSC | <0.01% | $0.00056 | 550.421 | $0.3082 | |
BSC | <0.01% | <$0.000001 | 497,514,616.2109 | $0.3074 | |
BSC | <0.01% | $0.000689 | 445.8904 | $0.3073 | |
BSC | <0.01% | $0.000297 | 1,029.8972 | $0.3063 | |
BSC | <0.01% | $0.034558 | 8.8579 | $0.3061 | |
BSC | <0.01% | $0.022165 | 13.7321 | $0.3043 | |
BSC | <0.01% | $0.004589 | 66.1477 | $0.3035 | |
BSC | <0.01% | $0.000432 | 692.8748 | $0.2996 | |
BSC | <0.01% | $0.001625 | 184.0196 | $0.299 | |
BSC | <0.01% | $0.003014 | 99.0041 | $0.2983 | |
BSC | <0.01% | $0.000016 | 18,438.4395 | $0.297 | |
BSC | <0.01% | $0.001399 | 208.0838 | $0.291 | |
BSC | <0.01% | <$0.000001 | 196,342,202.9178 | $0.2905 | |
BSC | <0.01% | $0.004225 | 67.8183 | $0.2865 | |
BSC | <0.01% | $0.006723 | 42.5071 | $0.2857 | |
BSC | <0.01% | $0.000087 | 3,250.7151 | $0.2838 | |
BSC | <0.01% | $5.7 | 0.0498 | $0.2835 | |
BSC | <0.01% | $0.000053 | 5,376.1708 | $0.2828 | |
BSC | <0.01% | $0.00008 | 3,548.4526 | $0.2824 | |
BSC | <0.01% | <$0.000001 | 77,585,311.2009 | $0.2785 | |
BSC | <0.01% | $0.001397 | 199.2001 | $0.2781 | |
BSC | <0.01% | $0.000135 | 2,052.3535 | $0.2777 | |
BSC | <0.01% | $0.104589 | 2.6544 | $0.2776 | |
BSC | <0.01% | $0.000117 | 2,370.159 | $0.2775 | |
BSC | <0.01% | $0.001229 | 225.4804 | $0.2771 | |
BSC | <0.01% | <$0.000001 | 3,598,569,754.812 | $0.2764 | |
BSC | <0.01% | <$0.000001 | 1,380,526,484.9766 | $0.2761 | |
BSC | <0.01% | $0.001028 | 267.2181 | $0.2745 | |
BSC | <0.01% | <$0.000001 | 1,149,424,379.6017 | $0.2744 | |
BSC | <0.01% | $0.031104 | 8.6812 | $0.27 | |
BSC | <0.01% | <$0.000001 | 45,893,785.8844 | $0.2661 | |
BSC | <0.01% | $0.016289 | 16.2323 | $0.2644 | |
BSC | <0.01% | <$0.000001 | 568,940.6523 | $0.2635 | |
BSC | <0.01% | $0.000544 | 482.9622 | $0.2626 | |
BSC | <0.01% | $0.000018 | 14,555.5832 | $0.2618 | |
BSC | <0.01% | <$0.000001 | 192,339,034.8082 | $0.2615 | |
BSC | <0.01% | <$0.000001 | 28,154,170.7714 | $0.2592 | |
BSC | <0.01% | $0.003803 | 68.1804 | $0.2592 | |
BSC | <0.01% | <$0.000001 | 860,660,508.7986 | $0.2581 | |
BSC | <0.01% | <$0.000001 | 9,103,670,723.8852 | $0.2576 | |
BSC | <0.01% | <$0.000001 | 859,136.0252 | $0.2576 | |
BSC | <0.01% | $0.002691 | 95.4298 | $0.2567 | |
BSC | <0.01% | <$0.000001 | 364,496,517,260.0863 | $0.2562 | |
BSC | <0.01% | $0.776852 | 0.3294 | $0.2558 | |
BSC | <0.01% | $0.018484 | 13.7774 | $0.2546 | |
BSC | <0.01% | <$0.000001 | 1,059,569.1865 | $0.2544 | |
BSC | <0.01% | <$0.000001 | 97,020,151.8221 | $0.2537 | |
BSC | <0.01% | $0.002043 | 123.6888 | $0.2527 | |
BSC | <0.01% | $0.000001 | 324,630.0228 | $0.2523 | |
BSC | <0.01% | <$0.000001 | 325,817,699.3044 | $0.2518 | |
BSC | <0.01% | <$0.000001 | 725,723,199,085.4854 | $0.2505 | |
BSC | <0.01% | $0.00369 | 67.8991 | $0.2505 | |
BSC | <0.01% | $1.28 | 0.1949 | $0.2494 | |
BSC | <0.01% | <$0.000001 | 1,100,421,449,309.9277 | $0.2471 | |
BSC | <0.01% | $0.000048 | 5,172.8158 | $0.2471 | |
BSC | <0.01% | <$0.000001 | 18,779,859.1814 | $0.246 | |
BSC | <0.01% | $0.002066 | 118.9046 | $0.2456 | |
BSC | <0.01% | $0.00017 | 1,439.5194 | $0.2447 | |
BSC | <0.01% | $0.03472 | 6.9864 | $0.2425 | |
BSC | <0.01% | $0.03472 | 6.9742 | $0.2421 | |
BSC | <0.01% | <$0.000001 | 9,158,360.7908 | $0.2418 | |
BSC | <0.01% | $1.18 | 0.2044 | $0.2414 | |
BSC | <0.01% | $0.024956 | 9.6497 | $0.2408 | |
BSC | <0.01% | $0.00257 | 92.8286 | $0.2385 | |
BSC | <0.01% | <$0.000001 | 671,655,130.4879 | $0.2374 | |
BSC | <0.01% | $0.000174 | 1,359.8103 | $0.2368 | |
BSC | <0.01% | $0.000645 | 367.329 | $0.2367 | |
BSC | <0.01% | $0.020314 | 11.6542 | $0.2367 | |
BSC | <0.01% | $0.001345 | 175.2809 | $0.2357 | |
BSC | <0.01% | $0.003021 | 77.6623 | $0.2346 | |
BSC | <0.01% | $0.000018 | 13,244.7471 | $0.2334 | |
BSC | <0.01% | $0.015854 | 14.6571 | $0.2323 | |
BSC | <0.01% | $1.25 | 0.1856 | $0.2319 | |
BSC | <0.01% | $0.000001 | 206,746.1357 | $0.2294 | |
BSC | <0.01% | $0.008225 | 27.8789 | $0.2293 | |
BSC | <0.01% | $0.241729 | 0.939 | $0.2269 | |
BSC | <0.01% | <$0.000001 | 187,874,124.657 | $0.2262 | |
BSC | <0.01% | $0.000007 | 31,406.1474 | $0.2258 | |
BSC | <0.01% | $0.001047 | 214.624 | $0.2247 | |
BSC | <0.01% | $0.002068 | 108.1768 | $0.2237 | |
BSC | <0.01% | $0.000039 | 5,644.176 | $0.2219 | |
BSC | <0.01% | $0.000085 | 2,615.1786 | $0.2219 | |
BSC | <0.01% | $0.059857 | 3.7043 | $0.2217 | |
BSC | <0.01% | $0.002392 | 92.3715 | $0.2209 | |
BSC | <0.01% | $0.00001 | 21,229.4221 | $0.2199 | |
BSC | <0.01% | $0.05601 | 3.9278 | $0.2199 | |
BSC | <0.01% | $0.002125 | 103.4565 | $0.2198 | |
BSC | <0.01% | $0.000001 | 173,400.8587 | $0.2184 | |
BSC | <0.01% | $0.000254 | 859.7404 | $0.2182 | |
BSC | <0.01% | <$0.000001 | 724,925,403.6725 | $0.2174 | |
BSC | <0.01% | <$0.000001 | 315,965,413.4738 | $0.217 | |
BSC | <0.01% | $0.000071 | 3,032.5279 | $0.2162 | |
BSC | <0.01% | $0.000371 | 582.5681 | $0.2159 | |
BSC | <0.01% | $0.000001 | 221,756.9246 | $0.2151 | |
BSC | <0.01% | <$0.000001 | 345,348,706.6372 | $0.215 | |
BSC | <0.01% | $0.00034 | 631.6144 | $0.2145 | |
BSC | <0.01% | $0.000501 | 427.5055 | $0.2142 | |
BSC | <0.01% | $0.138427 | 1.5456 | $0.2139 | |
BSC | <0.01% | <$0.000001 | 1,622,170,929,864.5254 | $0.2138 | |
BSC | <0.01% | $0.021738 | 9.8329 | $0.2137 | |
BSC | <0.01% | $0.00004 | 5,347.073 | $0.2133 | |
BSC | <0.01% | $0.031734 | 6.6207 | $0.21 | |
BSC | <0.01% | $0.002783 | 75.2688 | $0.2094 | |
BSC | <0.01% | <$0.000001 | 65,420,946.3031 | $0.2093 | |
BSC | <0.01% | $0.000024 | 8,663.943 | $0.2039 | |
BSC | <0.01% | $0.001876 | 108.546 | $0.2035 | |
BSC | <0.01% | $0.000027 | 7,649.83 | $0.2031 | |
BSC | <0.01% | $0.00069 | 294.2372 | $0.2031 | |
BSC | <0.01% | $4.05 | 0.05 | $0.2027 | |
BSC | <0.01% | <$0.000001 | 915,610.8605 | $0.2018 | |
BSC | <0.01% | <$0.000001 | 1,831,236.2327 | $0.2013 | |
BSC | <0.01% | $0.000028 | 7,036.8835 | $0.2004 | |
BSC | <0.01% | $0.000985 | 202.0196 | $0.1988 | |
BSC | <0.01% | $0.018927 | 10.4756 | $0.1982 | |
BSC | <0.01% | $0.000619 | 317.7442 | $0.1967 | |
BSC | <0.01% | <$0.000001 | 13,122,533.7087 | $0.1965 | |
BSC | <0.01% | $0.983988 | 0.1993 | $0.196 | |
BSC | <0.01% | $0.010578 | 18.4913 | $0.1956 | |
BSC | <0.01% | <$0.000001 | 113,334,627.8677 | $0.1949 | |
BSC | <0.01% | $0.001339 | 145.5312 | $0.1948 | |
BSC | <0.01% | $0.010768 | 18.0865 | $0.1947 | |
BSC | <0.01% | $0.00036 | 538.9459 | $0.1938 | |
BSC | <0.01% | $0.000002 | 120,564.9426 | $0.1935 | |
BSC | <0.01% | $0.000023 | 8,418.7696 | $0.1934 | |
BSC | <0.01% | $0.000478 | 399.2421 | $0.1907 | |
BSC | <0.01% | <$0.000001 | 625,378,341.0606 | $0.1868 | |
BSC | <0.01% | $0.032738 | 5.6874 | $0.1861 | |
BSC | <0.01% | $0.000351 | 530.6811 | $0.186 | |
BSC | <0.01% | <$0.000001 | 2,131,774,331.7041 | $0.1856 | |
BSC | <0.01% | $17,361.91 | 0.00001067 | $0.1852 | |
BSC | <0.01% | $0.092341 | 1.9969 | $0.1843 | |
BSC | <0.01% | $0.000006 | 28,234.3158 | $0.1812 | |
BSC | <0.01% | $0.000013 | 14,422.6765 | $0.1812 | |
BSC | <0.01% | $0.007865 | 23.0492 | $0.1812 | |
BSC | <0.01% | $0.000812 | 221.445 | $0.1798 | |
BSC | <0.01% | $0.008751 | 20.4928 | $0.1793 | |
BSC | <0.01% | $0.999935 | 0.1778 | $0.1777 | |
BSC | <0.01% | $0.005381 | 32.9501 | $0.1772 | |
BSC | <0.01% | <$0.000001 | 318,146,293.8501 | $0.1762 | |
BSC | <0.01% | $0.003161 | 55.7732 | $0.1762 | |
BSC | <0.01% | $0.000002 | 111,496.3637 | $0.1759 | |
BSC | <0.01% | <$0.000001 | 8,422,064,532.2388 | $0.1745 | |
BSC | <0.01% | $2.14 | 0.0815 | $0.1743 | |
BSC | <0.01% | $0.025129 | 6.9329 | $0.1742 | |
BSC | <0.01% | $0.000643 | 270.3001 | $0.1738 | |
BSC | <0.01% | $0.002298 | 74.163 | $0.1704 | |
BSC | <0.01% | $1.7 | 0.1 | $0.1704 | |
BSC | <0.01% | $0.000567 | 298.362 | $0.1692 | |
BSC | <0.01% | $17.81 | 0.00935598 | $0.1666 | |
BSC | <0.01% | $3 | 0.0555 | $0.1665 | |
BSC | <0.01% | $0.001106 | 150.1567 | $0.166 | |
BSC | <0.01% | $0.000008 | 21,171.0694 | $0.1659 | |
BSC | <0.01% | $0.000165 | 998.3338 | $0.1652 | |
BSC | <0.01% | $0.000001 | 172,837.9978 | $0.1649 | |
BSC | <0.01% | $0.000001 | 177,635.2167 | $0.1637 | |
BSC | <0.01% | $0.006739 | 24.253 | $0.1634 | |
BSC | <0.01% | $0.027148 | 5.9881 | $0.1625 | |
BSC | <0.01% | $0.000101 | 1,606.8987 | $0.1624 | |
BSC | <0.01% | $0.017629 | 9.2016 | $0.1622 | |
BSC | <0.01% | <$0.000001 | 1,495,639,451.5205 | $0.1605 | |
BSC | <0.01% | $0.000256 | 626.4882 | $0.1602 | |
BSC | <0.01% | $0.000242 | 661.2824 | $0.1601 | |
BSC | <0.01% | $0.002199 | 72.5273 | $0.1594 | |
BSC | <0.01% | $0.000213 | 747.9091 | $0.1592 | |
BSC | <0.01% | $0.009798 | 16.1866 | $0.1585 | |
BSC | <0.01% | <$0.000001 | 50,891,731.5356 | $0.1577 | |
BSC | <0.01% | $0.000878 | 179.4872 | $0.1576 | |
BSC | <0.01% | <$0.000001 | 68,325,361,683,296.727 | $0.1561 | |
BSC | <0.01% | $0.002041 | 75.3451 | $0.1537 | |
BSC | <0.01% | $2.44 | 0.063 | $0.1537 | |
BSC | <0.01% | $0.024666 | 6.1846 | $0.1525 | |
BSC | <0.01% | $0.000015 | 10,357.1961 | $0.1515 | |
BSC | <0.01% | $0.000501 | 292.3958 | $0.1464 | |
BSC | <0.01% | $0.135483 | 1.0808 | $0.1464 | |
BSC | <0.01% | $0.000003 | 47,962.9738 | $0.1458 | |
BSC | <0.01% | <$0.000001 | 66,129,665.4668 | $0.1448 | |
BSC | <0.01% | $0.000003 | 48,471.5305 | $0.1446 | |
BSC | <0.01% | $0.00093 | 154.2852 | $0.1434 | |
BSC | <0.01% | $0.000047 | 3,074.4696 | $0.1433 | |
BSC | <0.01% | $0.004799 | 29.5945 | $0.142 | |
BSC | <0.01% | $0.000111 | 1,273.8951 | $0.1418 | |
BSC | <0.01% | $0.000242 | 585 | $0.1415 | |
BSC | <0.01% | $0.000733 | 192.9285 | $0.1414 | |
BSC | <0.01% | $0.3543 | 0.3993 | $0.1414 | |
BSC | <0.01% | $0.000005 | 27,634.3275 | $0.1409 | |
BSC | <0.01% | $0.025554 | 5.4357 | $0.1389 | |
BSC | <0.01% | <$0.000001 | 46,298,695.2535 | $0.1388 | |
BSC | <0.01% | $0.00009 | 1,529.327 | $0.1383 | |
BSC | <0.01% | $0.000254 | 543.0874 | $0.138 | |
BSC | <0.01% | $0.000001 | 93,723.4599 | $0.1377 | |
BSC | <0.01% | $0.000439 | 312.9364 | $0.1375 | |
BSC | <0.01% | $0.683763 | 0.2002 | $0.1368 | |
BSC | <0.01% | $0.000737 | 185.4222 | $0.1366 | |
BSC | <0.01% | $0.255888 | 0.5331 | $0.1364 | |
BSC | <0.01% | $0.002125 | 64.1124 | $0.1362 | |
BSC | <0.01% | $0.000152 | 894.8589 | $0.136 | |
BSC | <0.01% | <$0.000001 | 1,158,788.5395 | $0.1357 | |
BSC | <0.01% | $0.631657 | 0.2138 | $0.135 | |
BSC | <0.01% | $0.019509 | 6.87 | $0.134 | |
BSC | <0.01% | $0.000011 | 12,733.6042 | $0.1337 | |
BSC | <0.01% | $0.023056 | 5.75 | $0.1325 | |
BSC | <0.01% | <$0.000001 | 3,250,272.7856 | $0.1314 | |
BSC | <0.01% | $0.00041 | 320.499 | $0.1313 | |
BSC | <0.01% | $0.006565 | 19.7743 | $0.1298 | |
BSC | <0.01% | $0.001213 | 105.6089 | $0.1281 | |
BSC | <0.01% | <$0.000001 | 58,424,812.7901 | $0.1261 | |
BSC | <0.01% | $0.000008 | 16,358.8568 | $0.1257 | |
BSC | <0.01% | $0.000001 | 238,825.5584 | $0.1253 | |
BSC | <0.01% | <$0.000001 | 29,928,058.9558 | $0.1244 | |
BSC | <0.01% | $0.000261 | 474.9248 | $0.1241 | |
BSC | <0.01% | $0.058751 | 2.0878 | $0.1226 | |
BSC | <0.01% | $0.000165 | 741.9006 | $0.1223 | |
BSC | <0.01% | $0.000322 | 379.4397 | $0.1221 | |
BSC | <0.01% | $0.004159 | 29.1671 | $0.1212 | |
BSC | <0.01% | $0.00011 | 1,082.2111 | $0.1192 | |
BSC | <0.01% | $0.002956 | 40.173 | $0.1187 | |
BSC | <0.01% | $0.093107 | 1.2608 | $0.1173 | |
BSC | <0.01% | $0.00083 | 140.9085 | $0.1169 | |
BSC | <0.01% | $0.003495 | 33.45 | $0.1169 | |
BSC | <0.01% | $0.000101 | 1,150.5127 | $0.116 | |
BSC | <0.01% | <$0.000001 | 9,944,113,741.7785 | $0.1159 | |
BSC | <0.01% | $0.000001 | 208,279.8748 | $0.1152 | |
BSC | <0.01% | <$0.000001 | 489,622,393.0506 | $0.1147 | |
BSC | <0.01% | <$0.000001 | 935,298,811.8697 | $0.1145 | |
BSC | <0.01% | $0.000502 | 227.8043 | $0.1143 | |
BSC | <0.01% | $0.000229 | 498.7484 | $0.114 | |
BSC | <0.01% | $0.001419 | 79.8678 | $0.1133 | |
BSC | <0.01% | $0.007422 | 15.2736 | $0.1133 | |
BSC | <0.01% | $0.000738 | 152.0259 | $0.1122 | |
BSC | <0.01% | $0.000039 | 2,850 | $0.1116 | |
BSC | <0.01% | $0.197599 | 0.5631 | $0.1112 | |
BSC | <0.01% | <$0.000001 | 49,395,594,711.6018 | $0.1111 | |
BSC | <0.01% | $0.070673 | 1.5717 | $0.111 | |
BSC | <0.01% | $0.004516 | 24.4583 | $0.1104 | |
BSC | <0.01% | $0.013941 | 7.8978 | $0.1101 | |
BSC | <0.01% | $0.00095 | 115.8501 | $0.11 | |
BSC | <0.01% | $12.34 | 0.00891041 | $0.1099 | |
BSC | <0.01% | $0.119282 | 0.9153 | $0.1091 | |
BSC | <0.01% | $0.092506 | 1.1785 | $0.109 | |
BSC | <0.01% | $0.420775 | 0.2579 | $0.1085 | |
BSC | <0.01% | <$0.000001 | 88,178,454.8368 | $0.1083 | |
BSC | <0.01% | $0.002294 | 47.1132 | $0.108 | |
BSC | <0.01% | $0.000005 | 21,976.8461 | $0.1064 | |
BSC | <0.01% | $0.007072 | 14.9844 | $0.1059 | |
BSC | <0.01% | <$0.000001 | 7,516,495.7752 | $0.1058 | |
BSC | <0.01% | $0.000311 | 339.1436 | $0.1053 | |
BSC | <0.01% | $0.019215 | 5.4725 | $0.1051 | |
BSC | <0.01% | $0.000219 | 479.0572 | $0.1046 | |
BSC | <0.01% | $0.000002 | 45,074.1557 | $0.1041 | |
BSC | <0.01% | $0.000488 | 213.3883 | $0.1041 | |
BSC | <0.01% | $1.48 | 0.07 | $0.1039 | |
BSC | <0.01% | <$0.000001 | 28,247,407,422.3499 | $0.1032 | |
BSC | <0.01% | $0.000218 | 472.8898 | $0.1032 | |
BSC | <0.01% | $0.000004 | 28,250.4009 | $0.1025 | |
BSC | <0.01% | $0.002959 | 34.5869 | $0.1023 | |
BSC | <0.01% | $0.00985 | 10.2896 | $0.1013 | |
BSC | <0.01% | <$0.000001 | 1,673,582,250.8762 | $0.1002 | |
POL | <0.01% | $0.03524 | 132,029,050.7349 | $4,652,748.64 | |
POL | <0.01% | $1 | 4,671.3253 | $4,671.33 | |
POL | <0.01% | $0.217961 | 1,607.0984 | $350.28 | |
POL | <0.01% | $0.04822 | 830.9721 | $40.07 | |
POL | <0.01% | $175.05 | 0.0579 | $10.13 | |
POL | <0.01% | $0.006379 | 1,188.32 | $7.58 | |
POL | <0.01% | $0.001041 | 7,263.18 | $7.56 | |
POL | <0.01% | $14.63 | 0.3999 | $5.85 | |
POL | <0.01% | $0.023441 | 247.943 | $5.81 | |
POL | <0.01% | $0.020419 | 142.4823 | $2.91 | |
POL | <0.01% | $0.052508 | 54.9862 | $2.89 | |
POL | <0.01% | <$0.000001 | 193,908,141.4945 | $2.56 | |
POL | <0.01% | $5.92 | 0.3485 | $2.06 | |
POL | <0.01% | $8.74 | 0.2225 | $1.95 | |
POL | <0.01% | $0.000014 | 136,927.7968 | $1.87 | |
POL | <0.01% | $0.217533 | 8.4776 | $1.84 | |
POL | <0.01% | $0.000501 | 3,610.733 | $1.81 | |
POL | <0.01% | $0.00076 | 2,330.3878 | $1.77 | |
POL | <0.01% | $31,721.02 | 0.0000477 | $1.51 | |
POL | <0.01% | $0.489655 | 2.9337 | $1.44 | |
POL | <0.01% | $0.01549 | 91.2505 | $1.41 | |
POL | <0.01% | $0.296325 | 4.4709 | $1.32 | |
POL | <0.01% | $0.666153 | 1.7781 | $1.18 | |
POL | <0.01% | $0.000326 | 3,631.9093 | $1.18 | |
POL | <0.01% | $0.00372 | 306.3663 | $1.14 | |
POL | <0.01% | $0.313777 | 3.5585 | $1.12 | |
POL | <0.01% | <$0.000001 | 119,555,964.4447 | $1.1 | |
POL | <0.01% | $286.15 | 0.00297136 | $0.8502 | |
POL | <0.01% | $0.013211 | 57.2054 | $0.7557 | |
POL | <0.01% | $93,800 | 0.00000636 | $0.5965 | |
POL | <0.01% | $0.000007 | 73,525.0726 | $0.5315 | |
POL | <0.01% | $1.14 | 0.45 | $0.513 | |
POL | <0.01% | $0.001197 | 424.3856 | $0.5078 | |
POL | <0.01% | $0.00137 | 361.5527 | $0.4953 | |
POL | <0.01% | $0.974338 | 0.4975 | $0.4847 | |
POL | <0.01% | $0.000728 | 625.6292 | $0.4554 | |
POL | <0.01% | $0.00023 | 1,906.0942 | $0.4379 | |
POL | <0.01% | $0.019376 | 20.7821 | $0.4026 | |
POL | <0.01% | $0.028373 | 13.679 | $0.3881 | |
POL | <0.01% | $0.00009 | 4,200 | $0.3779 | |
POL | <0.01% | $0.011254 | 33 | $0.3713 | |
POL | <0.01% | <$0.000001 | 2,466,824.8253 | $0.3419 | |
POL | <0.01% | $22.68 | 0.0143 | $0.3234 | |
POL | <0.01% | $0.077146 | 4.1653 | $0.3213 | |
POL | <0.01% | $0.000484 | 662.6903 | $0.3204 | |
POL | <0.01% | <$0.000001 | 620,109,878.4187 | $0.31 | |
POL | <0.01% | $0.006507 | 46.9725 | $0.3056 | |
POL | <0.01% | $1.31 | 0.2232 | $0.2924 | |
POL | <0.01% | $0.003658 | 74.7775 | $0.2734 | |
POL | <0.01% | $0.009814 | 27.0876 | $0.2658 | |
POL | <0.01% | $72.12 | 0.00368658 | $0.2658 | |
POL | <0.01% | $0.000195 | 1,359.2742 | $0.2645 | |
POL | <0.01% | $0.000015 | 16,724.5331 | $0.2584 | |
POL | <0.01% | $0.000248 | 1,017.9592 | $0.252 | |
POL | <0.01% | $0.036136 | 6.783 | $0.2451 | |
POL | <0.01% | $0.804642 | 0.2954 | $0.2376 | |
POL | <0.01% | $0.007142 | 31.5 | $0.2249 | |
POL | <0.01% | $0.674841 | 0.3329 | $0.2246 | |
POL | <0.01% | $0.106606 | 2.0765 | $0.2213 | |
POL | <0.01% | $0.273794 | 0.8022 | $0.2196 | |
POL | <0.01% | $4.53 | 0.0476 | $0.2157 | |
POL | <0.01% | $0.251338 | 0.8437 | $0.212 | |
POL | <0.01% | $0.002524 | 82.6269 | $0.2085 | |
POL | <0.01% | $0.000012 | 18,047.4997 | $0.2084 | |
POL | <0.01% | $0.000864 | 234.5473 | $0.2025 | |
POL | <0.01% | $0.006373 | 30.9721 | $0.1973 | |
POL | <0.01% | $0.001798 | 107.0627 | $0.1924 | |
POL | <0.01% | $0.203909 | 0.9428 | $0.1922 | |
POL | <0.01% | $0.000016 | 12,187.8626 | $0.1893 | |
POL | <0.01% | $0.012221 | 15.2177 | $0.1859 | |
POL | <0.01% | $0.196398 | 0.9026 | $0.1772 | |
POL | <0.01% | $0.063932 | 2.5608 | $0.1637 | |
POL | <0.01% | $1 | 0.1599 | $0.1598 | |
POL | <0.01% | $0.00003 | 5,229.0863 | $0.1569 | |
POL | <0.01% | $0.001439 | 107.5532 | $0.1548 | |
POL | <0.01% | $0.017843 | 8.6697 | $0.1546 | |
POL | <0.01% | $0.004461 | 33 | $0.1472 | |
POL | <0.01% | $0.95405 | 0.1509 | $0.1439 | |
POL | <0.01% | $0.001043 | 126.981 | $0.1324 | |
POL | <0.01% | $0.000052 | 2,510.091 | $0.1297 | |
POL | <0.01% | $0.000857 | 150 | $0.1285 | |
POL | <0.01% | $0.003577 | 35.1397 | $0.1256 | |
POL | <0.01% | $19.12 | 0.006 | $0.1147 | |
POL | <0.01% | $0.004132 | 27.7501 | $0.1146 | |
POL | <0.01% | $0.003201 | 34.7154 | $0.1111 | |
POL | <0.01% | $0.000003 | 36,693.3045 | $0.1048 | |
POL | <0.01% | $0.002874 | 36.3653 | $0.1045 | |
POL | <0.01% | $0.546923 | 0.1865 | $0.102 | |
POL | <0.01% | $0.001321 | 75.9608 | $0.1003 | |
LINEA | <0.01% | $1,784.3 | 0.1143 | $203.89 | |
LINEA | <0.01% | $1 | 95.2386 | $95.62 | |
LINEA | <0.01% | $0.999908 | 80.2218 | $80.21 | |
LINEA | <0.01% | $1,866.66 | 0.00856535 | $15.99 | |
LINEA | <0.01% | $1 | 13.6519 | $13.65 | |
LINEA | <0.01% | $1 | 8.407 | $8.41 | |
LINEA | <0.01% | $1,783.74 | 0.00342789 | $6.11 | |
LINEA | <0.01% | $0.001533 | 3,289.8809 | $5.04 | |
LINEA | <0.01% | $0.000087 | 50,976.6774 | $4.45 | |
LINEA | <0.01% | $0.014516 | 49.0739 | $0.7123 | |
LINEA | <0.01% | $2,139.75 | 0.00007101 | $0.1519 | |
BASE | <0.01% | $0.000329 | 32,125.19 | $10.57 | |
BASE | <0.01% | <$0.000001 | 306,886,535 | $5.77 | |
BASE | <0.01% | $0.003882 | 1,331.6998 | $5.17 | |
BASE | <0.01% | $0.000878 | 4,324.6182 | $3.79 | |
BASE | <0.01% | $0.003956 | 521.743 | $2.06 | |
BASE | <0.01% | $0.000436 | 2,431.3141 | $1.06 | |
BASE | <0.01% | $0.018877 | 16.329 | $0.3082 | |
BASE | <0.01% | $0.007401 | 25 | $0.185 | |
BASE | <0.01% | $0.000015 | 7,083.6249 | $0.1065 | |
TAIKO | <0.01% | $1,784.3 | 0.012 | $21.41 | |
MANTLE | <0.01% | $1,784.61 | 0.00491642 | $8.77 | |
MANTLE | <0.01% | $1,897.47 | 0.00388632 | $7.37 | |
MANTLE | <0.01% | $0.998921 | 2.0334 | $2.03 | |
MANTLE | <0.01% | $0.998339 | 0.7968 | $0.7954 | |
MANTLE | <0.01% | $0.709595 | 0.0666 | $0.047259 | |
ZKSYNC | <0.01% | $1,785.32 | 0.009 | $16.07 | |
SCROLL | <0.01% | $1,784.3 | 0.0086 | $15.34 | |
BERA | <0.01% | $3.73 | 1.6684 | $6.22 | |
UNI | <0.01% | $1,784.02 | 0.001 | $1.78 |
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.