ERC-20
Overview
Max Total Supply
17,229,159,837,164.06773027 ZST
Holders
44
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
304,712,682.47899707 ZSTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ZStable
Compiler Version
v0.6.12+commit.27d51765
Optimization Enabled:
Yes with 2000 runs
Other Settings:
byzantium EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/proxy/Initializable.sol"; import "./external/IUniswapV2Factory.sol"; import "./external/IUniswapV2Router02.sol"; import "./external/IWETH.sol"; import "./Constants.sol"; import "./Setters.sol"; contract ZStable is Setters, Context, IERC20, Ownable { using SafeMath for uint256; using Address for address; modifier taxlessTx { _taxLess = true; _; _taxLess = false; } constructor () public { // uniswapRouterV2 = IUniswapV2Router02(Constants.getRouterAdd()); // uniswapFactory = IUniswapV2Factory(Constants.getFactoryAdd()); updateEpoch(); initializeLargeTotal(); _totalSupply = 10**5 * 10**9; uint256 currentFactor = getFactor(); _largeBalances[_msgSender()] = _largeBalances[_msgSender()].add(_totalSupply.mul(currentFactor)); _presaleTime = now + 24 hours; _presalePrice = 600000; emit Transfer(address(0),_msgSender(),_totalSupply); } function name() public view returns (string memory) { return Constants.getName(); } function symbol() public view returns (string memory) { return Constants.getSymbol(); } function decimals() public view returns (uint8) { return Constants.getDecimals(); } function totalSupply() public view override returns (uint256) { return getTotalSupply(); } function balanceOf(address account) public view override returns (uint256) { uint256 currentFactor = getFactor(); return getLargeBalances(account).div(currentFactor); } function transfer(address recipient, uint256 amount) public override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } function allowance(address owner, address spender) public view override returns (uint256) { return getAllowances(owner,spender); } function approve(address spender, uint256 amount) public override returns (bool) { _approve(_msgSender(), spender, amount); return true; } function transferFrom(address sender, address recipient, uint256 amount) public override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), getAllowances(sender,_msgSender()).sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).add(addedValue)); return true; } function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, getAllowances(_msgSender(),spender).sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } function _approve(address owner, address spender, uint256 amount) private { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); setAllowances(owner, spender, amount); emit Approval(owner, spender, amount); } function _transfer(address sender, address recipient, uint256 amount) private { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Amount must be greater than zero"); require(amount <= balanceOf(sender),"Amount exceeds balance"); require(isPresaleDone(),"Presale yet to close"); if (now > getCurrentEpoch().add(Constants.getEpochLength())) updateEpoch(); uint256 currentFactor = getFactor(); uint256 largeAmount = amount.mul(currentFactor); uint256 txType; if (isTaxLess()) { txType = 3; } else { bool lpBurn; if (isSupportedPool(sender)) { lpBurn = syncPair(sender); } else if (isSupportedPool(recipient)){ silentSyncPair(recipient); } else { silentSyncPair(_mainPool); } txType = _getTxType(sender, recipient, lpBurn); } // Buy Transaction from supported pools - requires mint, no utility fee if (txType == 1) { uint256 totalMint = getMintValue(sender, amount); // uint256 mintSize = amount.div(100); _largeBalances[sender] = _largeBalances[sender].sub(largeAmount); _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount); _totalSupply = _totalSupply.add(totalMint); emit Transfer(sender, recipient, amount); } // Sells to supported pools or unsupported transfer - requires exit burn and utility fee else if (txType == 2) { (uint256 burnSize, uint256 largeBurnSize) = getBurnValues(recipient, amount); uint256 actualTransferAmount = amount.sub(burnSize); uint256 largeTransferAmount = actualTransferAmount.mul(currentFactor); _largeBalances[sender] = _largeBalances[sender].sub(largeAmount); _largeBalances[recipient] = _largeBalances[recipient].add(largeTransferAmount); _totalSupply = _totalSupply.sub(burnSize); _largeTotal = _largeTotal.sub(largeBurnSize); emit Transfer(sender, recipient, actualTransferAmount); emit Transfer(sender, address(0), burnSize); } // Add Liquidity via interface or Remove Liquidity Transaction to supported pools - no fee of any sort else if (txType == 3) { _largeBalances[sender] = _largeBalances[sender].sub(largeAmount); _largeBalances[recipient] = _largeBalances[recipient].add(largeAmount); emit Transfer(sender, recipient, amount); } } function _getTxType(address sender, address recipient, bool lpBurn) private returns(uint256) { uint256 txType = 2; if (isSupportedPool(sender)) { if (lpBurn) { txType = 3; } else { txType = 1; } } else if (sender == Constants.getRouterAdd()) { txType = 3; } return txType; } function setPresaleTime(uint256 time) external onlyOwner() { require(isPresaleDone() == false, "This cannot be modified after the presale is done"); _presaleTime = time; } function setPresalePrice(uint256 priceInWei) external onlyOwner() { require(!isPresaleDone(),"Can only be set before presale"); _presalePrice = priceInWei; } // Presale function function buyPresale() external payable { require(!isPresaleDone(), "Presale is already completed"); require(_presaleTime <= now, "Presale hasn't started yet"); require(_presaleParticipation[_msgSender()].add(msg.value) <= Constants.getPresaleIndividualCap(), "Crossed individual cap"); require(_presalePrice != 0, "Presale price is not set"); require(msg.value > 0, "Cannot buy without sending any eth mate!"); require(!Address.isContract(_msgSender()),"no contracts"); require(tx.gasprice <= Constants.getMaxPresaleGas(),"gas price above limit"); uint256 amountToDist = msg.value.div(_presalePrice); require(_presaleDist.add(amountToDist) <= Constants.getPresaleCap(), "Presale max cap already reached"); uint256 currentFactor = getFactor(); uint256 largeAmount = amountToDist.mul(currentFactor); _largeBalances[owner()] = _largeBalances[owner()].sub(largeAmount); _largeBalances[_msgSender()] = _largeBalances[_msgSender()].add(largeAmount); emit Transfer(owner(), _msgSender(), amountToDist); _presaleParticipation[_msgSender()] = _presaleParticipation[_msgSender()].add(msg.value); _presaleDist = _presaleDist.add(amountToDist); } function setPresaleDone() public onlyOwner() { require(totalSupply() <= Constants.getLaunchSupply(), "Total supply is already minted"); _mintRemaining(); _presaleDone = true; _createEthPool(); } function _mintRemaining() private { require(!isPresaleDone(), "Cannot mint post presale"); addToAccount(address(this),80000 * 10 ** 9); addToAccount(owner(),20000 * 10 ** 9); emit Transfer(address(0),address(this),80000 * 10 ** 9); } function _createEthPool() private taxlessTx { IUniswapV2Router02 uniswapRouterV2 = getUniswapRouter(); IUniswapV2Factory uniswapFactory = getUniswapFactory(); address tokenUniswapPair; if (uniswapFactory.getPair(address(uniswapRouterV2.WETH()), address(this)) == address(0)) { tokenUniswapPair = uniswapFactory.createPair( address(uniswapRouterV2.WETH()), address(this)); } else { tokenUniswapPair = uniswapFactory.getPair(address(this),uniswapRouterV2.WETH()); } Constants.getDeployerAdd().transfer(Constants.getDeployerCost()); _approve(address(this), 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D, 8 * 10**4 * 10**9); uniswapRouterV2.addLiquidityETH{value: address(this).balance}(address(this), 8 * 10**4 * 10**9, 0, 0, address(this), block.timestamp); addSupportedPool(tokenUniswapPair, address(uniswapRouterV2.WETH())); _mainPool = tokenUniswapPair; } function createTokenPool(address pairToken, uint256 amount) external onlyOwner() taxlessTx { IUniswapV2Router02 uniswapRouterV2 = getUniswapRouter(); IUniswapV2Factory uniswapFactory = getUniswapFactory(); address tokenUniswapPair; if (uniswapFactory.getPair(pairToken, address(this)) == address(0)) { tokenUniswapPair = uniswapFactory.createPair( pairToken, address(this)); } else { tokenUniswapPair = uniswapFactory.getPair(pairToken,address(this)); } require(uniswapFactory.getPair(pairToken,address(uniswapRouterV2.WETH())) != address(0), "Eth pairing does not exist"); require(balanceOf(address(this)) >= amount, "Amount exceeds the token balance"); uint256 toConvert = amount.div(2); uint256 toAdd = amount.sub(toConvert); uint256 initialBalance = IERC20(pairToken).balanceOf(address(this)); address[] memory path = new address[](3); path[0] = address(this); path[1] = uniswapRouterV2.WETH(); path[2] = pairToken; _approve(address(this), address(uniswapRouterV2), toConvert); uniswapRouterV2.swapExactTokensForTokensSupportingFeeOnTransferTokens( toConvert, 0, path, address(this), block.timestamp); uint256 newBalance = IERC20(pairToken).balanceOf(address(this)).sub(initialBalance); _approve(address(this), address(uniswapRouterV2), toAdd); IERC20(pairToken).approve(address(uniswapRouterV2), newBalance); uniswapRouterV2.addLiquidity(address(this),pairToken,toAdd,newBalance,0,0,address(this),block.timestamp); addSupportedPool(tokenUniswapPair, pairToken); } function addNewSupportedPool(address pool, address pairToken) external onlyOwner() { addSupportedPool(pool, pairToken); } function removeOldSupportedPool(address pool) external onlyOwner() { removeSupportedPool(pool); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; library Constants { uint256 private constant MAX = ~uint256(0); uint256 private constant _launchSupply = 2 * 10**5 * 10**9; uint256 private constant _largeTotal = (MAX - (MAX % _launchSupply)); uint256 private constant _deployerCost = 9 ether; uint256 private constant _baseExpansionFactor = 100; uint256 private constant _baseContractionFactor = 100; uint256 private constant _baseUtilityFee = 50; uint256 private constant _baseContractionCap = 1000; uint256 private constant _presaleIndividualCap = 2 ether; uint256 private constant _presaleCap = 1 * 10**5 * 10**9; uint256 private constant _maxPresaleGas = 200000000000; uint256 private constant _epochLength = 4 hours; address private constant _routerAddress = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; address private constant _factoryAddress = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; address payable private constant _deployerAddress = 0x083c3b9a697596755834dbEF3D0a70a77c36Ae07; string private constant _name = "ZSTABLE.PROTOCOL"; string private constant _symbol = "ZST"; uint8 private constant _decimals = 9; /****** Getters *******/ function getLaunchSupply() internal pure returns (uint256) { return _launchSupply; } function getLargeTotal() internal pure returns (uint256) { return _largeTotal; } function getBaseExpansionFactor() internal pure returns (uint256) { return _baseExpansionFactor; } function getBaseContractionFactor() internal pure returns (uint256) { return _baseContractionFactor; } function getBaseContractionCap() internal pure returns (uint256) { return _baseContractionCap; } function getDeployerCost() internal pure returns (uint256) { return _deployerCost; } function getPresaleCap() internal pure returns (uint256) { return _presaleCap; } function getPresaleIndividualCap() internal pure returns (uint256) { return _presaleIndividualCap; } function getMaxPresaleGas() internal pure returns (uint256) { return _maxPresaleGas; } function getBaseUtilityFee() internal pure returns (uint256) { return _baseUtilityFee; } function getEpochLength() internal pure returns (uint256) { return _epochLength; } function getRouterAdd() internal pure returns (address) { return _routerAddress; } function getFactoryAdd() internal pure returns (address) { return _factoryAddress; } function getDeployerAdd() internal pure returns (address payable) { return _deployerAddress; } function getName() internal pure returns (string memory) { return _name; } function getSymbol() internal pure returns (string memory) { return _symbol; } function getDecimals() internal pure returns (uint8) { return _decimals; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/math/SafeMath.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "./external/IUniswapV2Factory.sol"; import "./external/IUniswapV2Router02.sol"; import "./Constants.sol"; import "./State.sol"; contract Getters is State { using SafeMath for uint256; using Address for address; function getLargeBalances(address account) public view returns (uint256) { return _largeBalances[account]; } function getAllowances(address account, address spender) public view returns (uint256) { return _allowances[account][spender]; } function getSupportedPools(uint256 index) public view returns (address) { return _supportedPools[index]; } function getPoolCounters(address pool) public view returns (address, uint256, uint256, uint256, uint256, uint256) { PoolCounter memory pc = _poolCounters[pool]; return (pc.pairToken, pc.tokenBalance, pc.pairTokenBalance, pc.lpBalance, pc.startTokenBalance, pc.startPairTokenBalance); } function isSupportedPool(address pool) public view returns (bool) { return _isSupportedPool[pool]; } function mainPool() public view returns (address) { return _mainPool; } function getCurrentEpoch() public view returns (uint256) { return _currentEpoch; } function getLargeTotal() public view returns (uint256) { return _largeTotal; } function getTotalSupply() public view returns (uint256) { return _totalSupply; } function isPresaleDone() public view returns (bool) { return _presaleDone; } function isTaxLess() public view returns (bool) { return _taxLess; } function getUniswapRouter() public view returns (IUniswapV2Router02) { return IUniswapV2Router02(Constants.getRouterAdd()); } function getUniswapFactory() public view returns (IUniswapV2Factory) { return IUniswapV2Factory(Constants.getFactoryAdd()); } function getFactor() public view returns(uint256) { if (isPresaleDone()) { return _largeTotal.div(_totalSupply); } else { return _largeTotal.div(Constants.getLaunchSupply()); } } function getUpdatedPoolCounters(address pool, address pairToken) public view returns (uint256, uint256, uint256) { uint256 lpBalance = IERC20(pool).totalSupply(); uint256 tokenBalance = IERC20(address(this)).balanceOf(pool); uint256 pairTokenBalance = IERC20(address(pairToken)).balanceOf(pool); return (tokenBalance, pairTokenBalance, lpBalance); } function getMintValue(address sender, uint256 amount) internal view returns(uint256) { uint256 expansionR = (_poolCounters[sender].pairTokenBalance).mul(_poolCounters[sender].startTokenBalance).mul(100).div(_poolCounters[sender].startPairTokenBalance).div(_poolCounters[sender].tokenBalance); uint256 mintAmount; if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) { uint256 mintFactor = expansionR.mul(expansionR); mintAmount = amount.mul(mintFactor.sub(10000)).div(10000); } else { mintAmount = amount.mul(Constants.getBaseExpansionFactor()).div(10000); } return mintAmount; } function getBurnValues(address recipient, uint256 amount) internal view returns(uint256, uint256) { uint256 currentFactor = getFactor(); uint256 contractionR; if (isSupportedPool(recipient)) { contractionR = (_poolCounters[recipient].tokenBalance).mul(_poolCounters[recipient].startPairTokenBalance).mul(100).div(_poolCounters[recipient].pairTokenBalance).div(_poolCounters[recipient].startTokenBalance); } else { contractionR = (_poolCounters[_mainPool].tokenBalance).mul(_poolCounters[_mainPool].startPairTokenBalance).mul(100).div(_poolCounters[_mainPool].pairTokenBalance).div(_poolCounters[_mainPool].startTokenBalance); } uint256 burnAmount; if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) { uint256 burnFactor = contractionR.mul(contractionR); burnAmount = amount.mul(burnFactor.sub(10000)).div(10000); if (burnAmount > amount.mul(Constants.getBaseContractionCap()).div(10000)) burnAmount = amount.mul(Constants.getBaseContractionCap()).div(10000); } else { burnAmount = amount.mul(Constants.getBaseContractionFactor()).div(10000); } return (burnAmount, burnAmount.mul(currentFactor)); } function getUtilityFee(uint256 amount) internal view returns(uint256, uint256) { uint256 currentFactor = getFactor(); uint256 utilityFee = amount.mul(Constants.getBaseUtilityFee()).div(10000); return (utilityFee, utilityFee.mul(currentFactor)); } function getMintRate(address pool) external view returns (uint256) { uint256 expansionR = (_poolCounters[pool].pairTokenBalance).mul(_poolCounters[pool].startTokenBalance).mul(100).div(_poolCounters[pool].startPairTokenBalance).div(_poolCounters[pool].tokenBalance); if (expansionR > (Constants.getBaseExpansionFactor()).add(10000).div(100)) { uint256 mintFactor = expansionR.mul(expansionR); return mintFactor.sub(10000); } else { return Constants.getBaseExpansionFactor(); } } function getBurnRate(address pool) external view returns (uint256) { uint256 contractionR = (_poolCounters[pool].tokenBalance).mul(_poolCounters[pool].startPairTokenBalance).mul(100).div(_poolCounters[pool].pairTokenBalance).div(_poolCounters[pool].startTokenBalance); uint256 burnRate; if (contractionR > (Constants.getBaseContractionFactor().add(10000)).div(100)) { uint256 burnFactor = contractionR.mul(contractionR); burnRate = burnFactor.sub(10000); if (burnRate > Constants.getBaseContractionCap()) { return Constants.getBaseContractionCap(); } return burnRate; } else { return Constants.getBaseContractionFactor(); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; import "./Constants.sol"; import "./State.sol"; import "./Getters.sol"; contract Setters is State, Getters { function setAllowances(address owner, address spender, uint256 amount) internal { _allowances[owner][spender] = amount; } function addToAccount(address account, uint256 amount) internal { uint256 currentFactor = getFactor(); uint256 largeAmount = amount.mul(currentFactor); _largeBalances[account] = _largeBalances[account].add(largeAmount); _totalSupply = _totalSupply.add(amount); } function addToAll(uint256 amount) internal { _totalSupply = _totalSupply.add(amount); } function initializeEpoch() internal { _currentEpoch = now; } function updateEpoch() internal { initializeEpoch(); for (uint256 i=0; i<_supportedPools.length; i++) { _poolCounters[_supportedPools[i]].startTokenBalance = _poolCounters[_supportedPools[i]].tokenBalance; _poolCounters[_supportedPools[i]].startPairTokenBalance = _poolCounters[_supportedPools[i]].pairTokenBalance; } } function initializeLargeTotal() internal { _largeTotal = Constants.getLargeTotal(); } function syncPair(address pool) internal returns(bool) { (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken); bool lpBurn = lpBalance < _poolCounters[pool].lpBalance; _poolCounters[pool].lpBalance = lpBalance; _poolCounters[pool].tokenBalance = tokenBalance; _poolCounters[pool].pairTokenBalance = pairTokenBalance; return (lpBurn); } function silentSyncPair(address pool) public { (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, _poolCounters[pool].pairToken); _poolCounters[pool].lpBalance = lpBalance; _poolCounters[pool].tokenBalance = tokenBalance; _poolCounters[pool].pairTokenBalance = pairTokenBalance; } function addSupportedPool(address pool, address pairToken) internal { require(!isSupportedPool(pool),"This pool is already supported"); _isSupportedPool[pool] = true; _supportedPools.push(pool); (uint256 tokenBalance, uint256 pairTokenBalance, uint256 lpBalance) = getUpdatedPoolCounters(pool, pairToken); _poolCounters[pool] = PoolCounter(pairToken, tokenBalance, pairTokenBalance, lpBalance, tokenBalance, pairTokenBalance); } function removeSupportedPool(address pool) internal { require(isSupportedPool(pool), "This pool is currently not supported"); for (uint256 i = 0; i < _supportedPools.length; i++) { if (_supportedPools[i] == pool) { _supportedPools[i] = _supportedPools[_supportedPools.length - 1]; _isSupportedPool[pool] = false; delete _poolCounters[pool]; _supportedPools.pop(); break; } } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.6.12; pragma experimental ABIEncoderV2; contract State { mapping (address => uint256) _largeBalances; mapping (address => mapping (address => uint256)) _allowances; // Supported pools and data for measuring mint & burn factors struct PoolCounter { address pairToken; uint256 tokenBalance; uint256 pairTokenBalance; uint256 lpBalance; uint256 startTokenBalance; uint256 startPairTokenBalance; } address[] _supportedPools; mapping (address => PoolCounter) _poolCounters; mapping (address => bool) _isSupportedPool; address _mainPool; uint256 _currentEpoch; uint256 _largeTotal; uint256 _totalSupply; uint256 _presaleDist; uint256 _presaleTime; uint256 _presalePrice; mapping (address => uint256) _presaleParticipation; bool _presaleDone; bool _taxLess; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
pragma solidity >=0.5.0; interface IWETH { function deposit() external payable; function transfer(address to, uint value) external returns (bool); function withdraw(uint) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "../GSN/Context.sol"; /** * @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 is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: MIT // solhint-disable-next-line compiler-version pragma solidity >=0.4.24 <0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; // solhint-disable-next-line no-inline-assembly assembly { cs := extcodesize(self) } return cs == 0; } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
{ "remappings": [], "optimizer": { "enabled": true, "runs": 2000 }, "evmVersion": "byzantium", "libraries": {}, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"pairToken","type":"address"}],"name":"addNewSupportedPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"pairToken","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createTokenPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"getAllowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getBurnRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentEpoch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLargeBalances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getLargeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getMintRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"getPoolCounters","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getSupportedPools","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapFactory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getUniswapRouter","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"},{"internalType":"address","name":"pairToken","type":"address"}],"name":"getUpdatedPoolCounters","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isPresaleDone","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"isSupportedPool","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxLess","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mainPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"removeOldSupportedPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setPresaleDone","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"priceInWei","type":"uint256"}],"name":"setPresalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"time","type":"uint256"}],"name":"setPresaleTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pool","type":"address"}],"name":"silentSyncPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50600062000027640100000000620001d7810204565b600d80546201000060b060020a03191662010000600160a060020a03841690810291909117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a35062000092640100000000620001dc810204565b620000a56401000000006200032a810204565b655af3107a40006008556000620000c464010000000062000347810204565b6008549091506200012e90620000e9908364010000000062001d1b620003bd82021704565b600080620000ff640100000000620001d7810204565b600160a060020a031681526020810191909152604001600020549064010000000062001d5d6200042982021704565b60008062000144640100000000620001d7810204565b600160a060020a03168152602081019190915260400160002055620151804201600a55620927c0600b5562000181640100000000620001d7810204565b600160a060020a03166000600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600854604051620001c8919062000621565b60405180910390a3506200062a565b335b90565b620001ef6401000000006200046b810204565b60005b600254811015620003275760036000600283815481106200020f57fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a031681526020019081526020016000206001015460036000600284815481106200026357fe5b6000918252602080832090910154600160a060020a0316835282019290925260400181206004019190915560028054600392919084908110620002a257fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110620002f657fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101620001f2565b50565b6200034264010000000062001d8a6200047182021704565b600755565b60006200035c6401000000006200047c810204565b156200038957600854600754620003819164010000000062001dae6200048582021704565b9050620001d9565b62000381620003a564010000000062001df0620004d882021704565b6007549064010000000062001dae6200048582021704565b600082620003ce5750600062000423565b82820282848281620003dc57fe5b041462000420576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041790620005c4565b60405180910390fd5b90505b92915050565b60008282018381101562000420576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000417906200058d565b42600655565b6507326b47ffff1990565b600d5460ff1690565b60006200042083836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250620004e2640100000000026401000000009004565b65b5e620f4800090565b6000818362000520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000417919062000537565b5060008385816200052d57fe5b0495945050505050565b6000602080835283518082850152825b81811015620005655785810183015185820160400152820162000547565b81811115620005775783604083870101525b50601f01601f1916929092016040019392505050565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b90815260200190565b613e2b806200063a6000396000f3fe6080604052600436106102bd576000357c0100000000000000000000000000000000000000000000000000000000900480637dff26801161018b578063ae2089ad116100e8578063c4e41b221161009c578063dd62ed3e11610081578063dd62ed3e146106e7578063ec2b4e3614610707578063f2fde38b14610727576102bd565b8063c4e41b22146106b2578063cb4d3195146106c7576102bd565b8063b72455bd116100cd578063b72455bd14610659578063b97dd9e21461066e578063bf9a3a1b14610683576102bd565b8063ae2089ad14610619578063b21c327814610639576102bd565b806395d89b411161013f578063a457c2d711610124578063a457c2d7146105c4578063a5a302d3146105e4578063a9059cbb146105f9576102bd565b806395d89b41146105a75780639fcdec61146105bc576102bd565b80638939878311610170578063893987831461054b5780638da5cb5b1461057d578063927ac38614610592576102bd565b80637dff26801461050b57806380c2bbd21461052b576102bd565b80633eedf63c116102395780635184cc43116101ed5780635d15d341116101d25780635d15d341146104b657806370a08231146104d6578063715018a6146104f6576102bd565b80635184cc431461048c578063524900b5146104a1576102bd565b806342b5f3751161021e57806342b5f3751461042c57806348ce85841461044c5780634f78aa821461046c576102bd565b80633eedf63c146103f75780634028358a1461040c576102bd565b806323ecdf61116102905780633549345e116102755780633549345e1461039357806339509351146103b55780633e6dfa36146103d5576102bd565b806323ecdf611461035c578063313ce56714610371576102bd565b806306fdde03146102c2578063095ea7b3146102ed57806318160ddd1461031a57806323b872dd1461033c575b600080fd5b3480156102ce57600080fd5b506102d7610747565b6040516102e49190613551565b60405180910390f35b3480156102f957600080fd5b5061030d610308366004613397565b610757565b6040516102e4919061353d565b34801561032657600080fd5b5061032f610775565b6040516102e49190613548565b34801561034857600080fd5b5061030d610357366004613357565b61077f565b34801561036857600080fd5b5061030d6107d7565b34801561037d57600080fd5b506103866107e5565b6040516102e49190613d65565b34801561039f57600080fd5b506103b36103ae3660046133e2565b6107ef565b005b3480156103c157600080fd5b5061030d6103d0366004613397565b61086d565b3480156103e157600080fd5b506103ea610896565b6040516102e4919061343f565b34801561040357600080fd5b506103b36108a0565b34801561041857600080fd5b506103b361042736600461331f565b610938565b34801561043857600080fd5b5061032f6104473660046132e7565b610989565b34801561045857600080fd5b506103b36104673660046133e2565b610a55565b34801561047857600080fd5b5061032f6104873660046132e7565b610aca565b34801561049857600080fd5b5061032f610b59565b3480156104ad57600080fd5b506103ea610b92565b3480156104c257600080fd5b506103b36104d1366004613397565b610b9c565b3480156104e257600080fd5b5061032f6104f13660046132e7565b61140f565b34801561050257600080fd5b506103b3611430565b34801561051757600080fd5b506103ea6105263660046133e2565b6114db565b34801561053757600080fd5b506103b36105463660046132e7565b611505565b34801561055757600080fd5b5061056b6105663660046132e7565b61156a565b6040516102e49695949392919061350a565b34801561058957600080fd5b506103ea6115f6565b34801561059e57600080fd5b5061030d61160b565b3480156105b357600080fd5b506102d7611614565b6103b361161e565b3480156105d057600080fd5b5061030d6105df366004613397565b61192a565b3480156105f057600080fd5b506103ea611966565b34801561060557600080fd5b5061030d610614366004613397565b611975565b34801561062557600080fd5b5061032f6106343660046132e7565b611989565b34801561064557600080fd5b5061032f61065436600461331f565b6119a4565b34801561066557600080fd5b5061032f6119cf565b34801561067a57600080fd5b5061032f6119d5565b34801561068f57600080fd5b506106a361069e36600461331f565b6119db565b6040516102e493929190613d4f565b3480156106be57600080fd5b5061032f611bab565b3480156106d357600080fd5b506103b36106e23660046132e7565b611bb1565b3480156106f357600080fd5b5061032f61070236600461331f565b611c00565b34801561071357600080fd5b5061030d6107223660046132e7565b611c0c565b34801561073357600080fd5b506103b36107423660046132e7565b611c2a565b6060610751611dfa565b90505b90565b600061076b610764611e31565b8484611e35565b5060015b92915050565b6000610751611bab565b600061078c848484611eec565b6107cd84610798611e31565b6107c885604051806060016040528060288152602001613da9602891396107c18a610654611e31565b919061238a565b611e35565b5060019392505050565b600d54610100900460ff1690565b60006107516123be565b6107f7611e31565b600d54620100009004600160a060020a0390811691161461083b57604051600080516020613d898339815191528152600401610832906139c6565b60405180910390fd5b61084361160b565b1561086857604051600080516020613d89833981519152815260040161083290613856565b600b55565b600061076b61087a611e31565b846107c88561089061088a611e31565b896119a4565b90611d5d565b60006107516123c3565b6108a8611e31565b600d54620100009004600160a060020a039081169116146108e357604051600080516020613d898339815191528152600401610832906139c6565b6108eb611df0565b6108f3610775565b111561091957604051600080516020613d898339815191528152600401610832906139fb565b6109216123db565b600d805460ff19166001179055610936612474565b565b610940611e31565b600d54620100009004600160a060020a0390811691161461097b57604051600080516020613d898339815191528152600401610832906139c6565b6109858282612a1e565b5050565b600160a060020a038116600090815260036020526040812060048101546002820154600583015460019093015484936109de93926109d892909183916064916109d29190611d1b565b90611d1b565b90611dae565b905060006109f560646109d8612710610890612b65565b821115610a43576000610a088380611d1b565b9050610a1681612710612b6a565b9150610a20612bac565b821115610a3957610a2f612bac565b9350505050610a50565b509150610a509050565b610a4b612b65565b925050505b919050565b610a5d611e31565b600d54620100009004600160a060020a03908116911614610a9857604051600080516020613d898339815191528152600401610832906139c6565b610aa061160b565b15610ac557604051600080516020613d89833981519152815260040161083290613c82565b600a55565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610b1393926109d892909183916064916109d29190611d1b565b9050610b2860646109d8612710610890612b65565b811115610b49576000610b3b8280611d1b565b9050610a4b81612710612b6a565b610b51612b65565b915050610a50565b6000610b6361160b565b15610b7e57600854600754610b7791611dae565b9050610754565b610b77610b89611df0565b60075490611dae565b6000610751612bb2565b610ba4611e31565b600d54620100009004600160a060020a03908116911614610bdf57604051600080516020613d898339815191528152600401610832906139c6565b600d805461ff0019166101001790556000610bf8610b92565b90506000610c04610896565b6040517fe6a439050000000000000000000000000000000000000000000000000000000081529091506000908190600160a060020a0384169063e6a4390590610c539089903090600401613453565b60206040518083038186803b158015610c6b57600080fd5b505afa158015610c7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca39190613303565b600160a060020a03161415610d52576040517fc9c65396000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063c9c6539690610cf99088903090600401613453565b602060405180830381600087803b158015610d1357600080fd5b505af1158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b9190613303565b9050610dec565b6040517fe6a43905000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063e6a4390590610d999088903090600401613453565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190613303565b90505b6000600160a060020a031682600160a060020a031663e6a439058786600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190613303565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610ecd929190613453565b60206040518083038186803b158015610ee557600080fd5b505afa158015610ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1d9190613303565b600160a060020a03161415610f4c57604051600080516020613d89833981519152815260040161083290613c14565b83610f563061140f565b1015610f7c57604051600080516020613d898339815191528152600401610832906137ea565b6000610f89856002611dae565b90506000610f978683612b6a565b9050600087600160a060020a03166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610fe3919061343f565b60206040518083038186803b158015610ffb57600080fd5b505afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103391906133fa565b6040805160038082526080820190925291925060609190602082018380368337019050509050308160008151811061106757fe5b6020026020010190600160a060020a03169081600160a060020a03168152505086600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156110dc57600080fd5b505afa1580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190613303565b8160018151811061112157fe5b6020026020010190600160a060020a03169081600160a060020a031681525050888160028151811061114f57fe5b6020026020010190600160a060020a03169081600160a060020a03168152505061117a308886611e35565b6040517f5c11d795000000000000000000000000000000000000000000000000000000008152600160a060020a03881690635c11d795906111c8908790600090869030904290600401613cdf565b600060405180830381600087803b1580156111e257600080fd5b505af11580156111f6573d6000803e3d6000fd5b50505050600061129e838b600160a060020a03166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611248919061343f565b60206040518083038186803b15801561126057600080fd5b505afa158015611274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129891906133fa565b90612b6a565b90506112ab308986611e35565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038b169063095ea7b3906112f2908b9085906004016134f1565b602060405180830381600087803b15801561130c57600080fd5b505af1158015611320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134491906133c2565b506040517fe8e33700000000000000000000000000000000000000000000000000000000008152600160a060020a0389169063e8e33700906113999030908e908990879060009081908690429060040161346d565b606060405180830381600087803b1580156113b357600080fd5b505af11580156113c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113eb9190613412565b5050506113f8868b612a1e565b5050600d805461ff00191690555050505050505050565b60008061141a610b59565b9050611429816109d885611989565b9392505050565b611438611e31565b600d54620100009004600160a060020a0390811691161461147357604051600080516020613d898339815191528152600401610832906139c6565b600d54604051600091620100009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff169055565b6000600282815481106114ea57fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291611531918691166119db565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b60008060008060008061157b6132a8565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600d54620100009004600160a060020a031690565b600d5460ff1690565b6060610751612bca565b61162661160b565b1561164b57604051600080516020613d898339815191528152600401610832906138c4565b42600a54111561167557604051600080516020613d8983398151915281526004016108329061368d565b61167d612c01565b6116ad34600c600061168d611e31565b600160a060020a0316815260208101919091526040016000205490611d5d565b11156116d357604051600080516020613d89833981519152815260040161083290613c4b565b600b546116fa57604051600080516020613d8983398151915281526004016108329061398f565b6000341161172257604051600080516020613d89833981519152815260040161083290613a8f565b61173261172d611e31565b612c0d565b1561175757604051600080516020613d898339815191528152600401610832906138fb565b61175f612c13565b3a111561178657604051600080516020613d8983398151915281526004016108329061388d565b600061179d600b5434611dae90919063ffffffff16565b90506117a7612c1c565b6009546117b49083611d5d565b11156117da57604051600080516020613d89833981519152815260040161083290613bdd565b60006117e4610b59565b905060006117f28383611d1b565b9050611823816000806118036115f6565b600160a060020a0316815260208101919091526040016000205490612b6a565b60008061182e6115f6565b600160a060020a0316600160a060020a03168152602001908152602001600020819055506118618160008061168d611e31565b60008061186c611e31565b600160a060020a0316815260208101919091526040016000205561188e611e31565b600160a060020a031661189f6115f6565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118d79190613548565b60405180910390a36118ef34600c600061168d611e31565b600c60006118fb611e31565b600160a060020a031681526020810191909152604001600020556009546119229084611d5d565b600955505050565b600061076b611937611e31565b846107c885604051806060016040528060258152602001613dd1602591396107c1611960611e31565b8a6119a4565b600554600160a060020a031690565b600061076b611982611e31565b8484611eec565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611a3657600080fd5b505afa158015611a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6e91906133fa565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611ab0908a9060040161343f565b60206040518083038186803b158015611ac857600080fd5b505afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0091906133fa565b9050600086600160a060020a03166370a08231896040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611b4c919061343f565b60206040518083038186803b158015611b6457600080fd5b505afa158015611b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9c91906133fa565b91989197509195509350505050565b60085490565b611bb9611e31565b600d54620100009004600160a060020a03908116911614611bf457604051600080516020613d898339815191528152600401610832906139c6565b611bfd81612c26565b50565b600061142983836119a4565b600160a060020a031660009081526004602052604090205460ff1690565b611c32611e31565b600d54620100009004600160a060020a03908116911614611c6d57604051600080516020613d898339815191528152600401610832906139c6565b600160a060020a038116611c9b57604051600080516020613d898339815191528152600401610832906136c4565b600d54604051600160a060020a038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d8054600160a060020a0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b600082611d2a5750600061076f565b82820282848281611d3757fe5b041461142957604051600080516020613d89833981519152815260040161083290613932565b60008282018381101561142957604051600080516020613d8983398151915281526004016108329061377e565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffff8cd94b8000090565b600061142983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d8c565b65b5e620f4800090565b60408051808201909152601081527f5a535441424c452e50524f544f434f4c00000000000000000000000000000000602082015290565b3390565b600160a060020a038316611e6357604051600080516020613d89833981519152815260040161083290613b49565b600160a060020a038216611e9157604051600080516020613d89833981519152815260040161083290613721565b611e9c838383612dcb565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611edf9190613548565b60405180910390a3505050565b600160a060020a038316611f1a57604051600080516020613d89833981519152815260040161083290613aec565b600160a060020a038216611f4857604051600080516020613d898339815191528152600401610832906135f9565b60008111611f7057604051600080516020613d898339815191528152600401610832906137b5565b611f798361140f565b811115611fa057604051600080516020613d898339815191528152600401610832906135c2565b611fa861160b565b611fcc57604051600080516020613d8983398151915281526004016108329061381f565b611fdf611fd7612df7565b6108906119d5565b421115611fee57611fee612dfd565b6000611ff8610b59565b905060006120068383611d1b565b905060006120126107d7565b1561201f5750600361207f565b600061202a87611c0c565b1561203f5761203887612f37565b9050612070565b61204886611c0c565b1561205b5761205686611505565b612070565b60055461207090600160a060020a0316611505565b61207b878783612fa2565b9150505b80600114156121665760006120948786612ff8565b600160a060020a0388166000908152602081905260409020549091506120ba9084612b6a565b600160a060020a0380891660009081526020819052604080822093909355908816815220546120e99084611d5d565b600160a060020a03871660009081526020819052604090205560085461210f9082611d5d565b60088190555085600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516121589190613548565b60405180910390a350612382565b80600214156122cc5760008061217c87876130b0565b9092509050600061218d8784612b6a565b9050600061219b8288611d1b565b600160a060020a038b166000908152602081905260409020549091506121c19087612b6a565b600160a060020a03808c1660009081526020819052604080822093909355908b16815220546121f09082611d5d565b600160a060020a038a166000908152602081905260409020556008546122169085612b6a565b6008556007546122269084612b6a565b60078190555088600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226f9190613548565b60405180910390a36000600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516122bb9190613548565b60405180910390a350505050612382565b806003141561238257600160a060020a0386166000908152602081905260409020546122f89083612b6a565b600160a060020a0380881660009081526020819052604080822093909355908716815220546123279083611d5d565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612379908890613548565b60405180910390a35b505050505050565b600081848411156123b657604051600080516020613d8983398151915281526004016108329190613551565b505050900390565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6123e361160b565b1561240857604051600080516020613d89833981519152815260040161083290613656565b612418306548c273950000613211565b61242f6124236115f6565b6512309ce54000613211565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061246a906548c27395000090613548565b60405180910390a3565b600d805461ff001916610100179055600061248d610b92565b90506000612499610896565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561250b57600080fd5b505afa15801561251f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125439190613303565b306040518363ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161257d929190613453565b60206040518083038186803b15801561259557600080fd5b505afa1580156125a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cd9190613303565b600160a060020a0316141561270b5781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561264057600080fd5b505afa158015612654573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126789190613303565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016126b2929190613453565b602060405180830381600087803b1580156126cc57600080fd5b505af11580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127049190613303565b9050612834565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127a89190613303565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016127e1929190613453565b60206040518083038186803b1580156127f957600080fd5b505afa15801561280d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128319190613303565b90505b61283c61327e565b600160a060020a03166108fc612850613296565b6040518115909202916000818181858888f19350505050158015612878573d6000803e3d6000fd5b5061289e30737a250d5630b4cf539739df2c5dacb4c659f2488d6548c273950000611e35565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152600160a060020a0384169063f305d71990308031916128f791906548c273950000906000908190849042906004016134b6565b6060604051808303818588803b15801561291057600080fd5b505af1158015612924573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129499190613412565b5050506129e28184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156129a557600080fd5b505afa1580156129b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129dd9190613303565b612a1e565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555050600d805461ff0019169055565b612a2782611c0c565b15612a4c57604051600080516020613d89833981519152815260040161083290613ba6565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19169092179091558080612aca85856119db565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b606490565b600061142983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061238a565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600381527f5a53540000000000000000000000000000000000000000000000000000000000602082015290565b671bc16d674ec8000090565b3b151590565b642e90edd00090565b655af3107a400090565b612c2f81611c0c565b612c5357604051600080516020613d89833981519152815260040161083290613a32565b60005b6002548110156109855781600160a060020a031660028281548110612c7757fe5b600091825260209091200154600160a060020a03161415612d8457600280546000198101908110612ca457fe5b60009182526020909120015460028054600160a060020a039092169183908110612cca57fe5b600091825260208083209091018054600160a060020a0394851673ffffffffffffffffffffffffffffffffffffffff1991821617909155928516825260048082526040808420805460ff191690556003928390528320805490941684556001840183905560028085018490559184018390558301829055600590920155805480612d5057fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff19169055019055610985565b600101612c56565b60008183612db557604051600080516020613d8983398151915281526004016108329190613551565b506000838581612dc157fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b61384090565b612e056132a2565b60005b600254811015611bfd576003600060028381548110612e2357fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110612e7657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400181206004019190915560028054600392919084908110612eb457fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110612f0757fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101612e08565b600160a060020a038082166000908152600360205260408120549091829182918291612f65918791166119db565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b60006002612faf85611c0c565b15612fcb578215612fc257506003612fc6565b5060015b612ff0565b612fd3612bb2565b600160a060020a031685600160a060020a03161415612ff0575060035b949350505050565b600160a060020a0382166000908152600360205260408120600181015460058201546004830154600290930154849361304193926109d892909183916064916109d29190611d1b565b9050600061305860646109d8612710610890612b65565b82111561308f57600061306b8380611d1b565b90506130876127106109d86130808483612b6a565b8890611d1b565b915050612ff0565b6130a76127106109d86130a0612b65565b8790611d1b565b95945050505050565b60008060006130bd610b59565b905060006130ca86611c0c565b1561311a57600160a060020a0386166000908152600360205260409020600481015460028201546005830154600190930154613113936109d8929183916064916109d291611d1b565b9050613165565b60058054600160a060020a0316600090815260036020526040902060048101546002820154928201546001909201546131629391926109d8929183916064916109d291611d1b565b90505b600061317a60646109d8612710610890612b65565b8211156131dd57600061318d8380611d1b565b90506131a96127106109d86131a28483612b6a565b8a90611d1b565b91506131bc6127106109d86131a2612bac565b8211156131d7576131d46127106109d86131a2612bac565b91505b506131f8565b6131f56127106109d86131ee612b65565b8990611d1b565b90505b806132038185611d1b565b945094505050509250929050565b600061321b610b59565b905060006132298383611d1b565b600160a060020a03851660009081526020819052604090205490915061324f9082611d5d565b600160a060020a0385166000908152602081905260409020556008546132759084611d5d565b60085550505050565b73083c3b9a697596755834dbef3d0a70a77c36ae0790565b677ce66c50e284000090565b42600655565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000602082840312156132f8578081fd5b813561142981613d73565b600060208284031215613314578081fd5b815161142981613d73565b60008060408385031215613331578081fd5b823561333c81613d73565b9150602083013561334c81613d73565b809150509250929050565b60008060006060848603121561336b578081fd5b833561337681613d73565b9250602084013561338681613d73565b929592945050506040919091013590565b600080604083850312156133a9578182fd5b82356133b481613d73565b946020939093013593505050565b6000602082840312156133d3578081fd5b81518015158114611429578182fd5b6000602082840312156133f3578081fd5b5035919050565b60006020828403121561340b578081fd5b5051919050565b600080600060608486031215613426578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039889168152968816602088015260408701959095526060860193909352608085019190915260a084015290921660c082015260e08101919091526101000190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03929092168252602082015260400190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561357d57858101830151858201604001528201613561565b8181111561358e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b6020808252601a908201527f50726573616c65206861736e2774207374617274656420796574000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6020808252818101527f416d6f756e7420657863656564732074686520746f6b656e2062616c616e6365604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252601e908201527f43616e206f6e6c7920626520736574206265666f72652070726573616c650000604082015260600190565b60208082526015908201527f6761732070726963652061626f7665206c696d69740000000000000000000000604082015260600190565b6020808252601c908201527f50726573616c6520697320616c726561647920636f6d706c6574656400000000604082015260600190565b6020808252600c908201527f6e6f20636f6e7472616374730000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f50726573616c65207072696365206973206e6f74207365740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526024908201527f5468697320706f6f6c2069732063757272656e746c79206e6f7420737570706f60408201527f7274656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f43616e6e6f742062757920776974686f75742073656e64696e6720616e79206560408201527f7468206d61746521000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601f908201527f50726573616c65206d61782063617020616c7265616479207265616368656400604082015260600190565b6020808252601a908201527f4574682070616972696e6720646f6573206e6f74206578697374000000000000604082015260600190565b60208082526016908201527f43726f7373656420696e646976696475616c2063617000000000000000000000604082015260600190565b60208082526031908201527f546869732063616e6e6f74206265206d6f64696669656420616674657220746860408201527f652070726573616c6520697320646f6e65000000000000000000000000000000606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613d2e578451600160a060020a031683529383019391830191600101613d09565b5050600160a060020a03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600160a060020a0381168114611bfd57600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220daadf3e6e0010fbe9f75aa1711c4aeefc339e2ad2075058233569871b1fca78164736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106102bd576000357c0100000000000000000000000000000000000000000000000000000000900480637dff26801161018b578063ae2089ad116100e8578063c4e41b221161009c578063dd62ed3e11610081578063dd62ed3e146106e7578063ec2b4e3614610707578063f2fde38b14610727576102bd565b8063c4e41b22146106b2578063cb4d3195146106c7576102bd565b8063b72455bd116100cd578063b72455bd14610659578063b97dd9e21461066e578063bf9a3a1b14610683576102bd565b8063ae2089ad14610619578063b21c327814610639576102bd565b806395d89b411161013f578063a457c2d711610124578063a457c2d7146105c4578063a5a302d3146105e4578063a9059cbb146105f9576102bd565b806395d89b41146105a75780639fcdec61146105bc576102bd565b80638939878311610170578063893987831461054b5780638da5cb5b1461057d578063927ac38614610592576102bd565b80637dff26801461050b57806380c2bbd21461052b576102bd565b80633eedf63c116102395780635184cc43116101ed5780635d15d341116101d25780635d15d341146104b657806370a08231146104d6578063715018a6146104f6576102bd565b80635184cc431461048c578063524900b5146104a1576102bd565b806342b5f3751161021e57806342b5f3751461042c57806348ce85841461044c5780634f78aa821461046c576102bd565b80633eedf63c146103f75780634028358a1461040c576102bd565b806323ecdf61116102905780633549345e116102755780633549345e1461039357806339509351146103b55780633e6dfa36146103d5576102bd565b806323ecdf611461035c578063313ce56714610371576102bd565b806306fdde03146102c2578063095ea7b3146102ed57806318160ddd1461031a57806323b872dd1461033c575b600080fd5b3480156102ce57600080fd5b506102d7610747565b6040516102e49190613551565b60405180910390f35b3480156102f957600080fd5b5061030d610308366004613397565b610757565b6040516102e4919061353d565b34801561032657600080fd5b5061032f610775565b6040516102e49190613548565b34801561034857600080fd5b5061030d610357366004613357565b61077f565b34801561036857600080fd5b5061030d6107d7565b34801561037d57600080fd5b506103866107e5565b6040516102e49190613d65565b34801561039f57600080fd5b506103b36103ae3660046133e2565b6107ef565b005b3480156103c157600080fd5b5061030d6103d0366004613397565b61086d565b3480156103e157600080fd5b506103ea610896565b6040516102e4919061343f565b34801561040357600080fd5b506103b36108a0565b34801561041857600080fd5b506103b361042736600461331f565b610938565b34801561043857600080fd5b5061032f6104473660046132e7565b610989565b34801561045857600080fd5b506103b36104673660046133e2565b610a55565b34801561047857600080fd5b5061032f6104873660046132e7565b610aca565b34801561049857600080fd5b5061032f610b59565b3480156104ad57600080fd5b506103ea610b92565b3480156104c257600080fd5b506103b36104d1366004613397565b610b9c565b3480156104e257600080fd5b5061032f6104f13660046132e7565b61140f565b34801561050257600080fd5b506103b3611430565b34801561051757600080fd5b506103ea6105263660046133e2565b6114db565b34801561053757600080fd5b506103b36105463660046132e7565b611505565b34801561055757600080fd5b5061056b6105663660046132e7565b61156a565b6040516102e49695949392919061350a565b34801561058957600080fd5b506103ea6115f6565b34801561059e57600080fd5b5061030d61160b565b3480156105b357600080fd5b506102d7611614565b6103b361161e565b3480156105d057600080fd5b5061030d6105df366004613397565b61192a565b3480156105f057600080fd5b506103ea611966565b34801561060557600080fd5b5061030d610614366004613397565b611975565b34801561062557600080fd5b5061032f6106343660046132e7565b611989565b34801561064557600080fd5b5061032f61065436600461331f565b6119a4565b34801561066557600080fd5b5061032f6119cf565b34801561067a57600080fd5b5061032f6119d5565b34801561068f57600080fd5b506106a361069e36600461331f565b6119db565b6040516102e493929190613d4f565b3480156106be57600080fd5b5061032f611bab565b3480156106d357600080fd5b506103b36106e23660046132e7565b611bb1565b3480156106f357600080fd5b5061032f61070236600461331f565b611c00565b34801561071357600080fd5b5061030d6107223660046132e7565b611c0c565b34801561073357600080fd5b506103b36107423660046132e7565b611c2a565b6060610751611dfa565b90505b90565b600061076b610764611e31565b8484611e35565b5060015b92915050565b6000610751611bab565b600061078c848484611eec565b6107cd84610798611e31565b6107c885604051806060016040528060288152602001613da9602891396107c18a610654611e31565b919061238a565b611e35565b5060019392505050565b600d54610100900460ff1690565b60006107516123be565b6107f7611e31565b600d54620100009004600160a060020a0390811691161461083b57604051600080516020613d898339815191528152600401610832906139c6565b60405180910390fd5b61084361160b565b1561086857604051600080516020613d89833981519152815260040161083290613856565b600b55565b600061076b61087a611e31565b846107c88561089061088a611e31565b896119a4565b90611d5d565b60006107516123c3565b6108a8611e31565b600d54620100009004600160a060020a039081169116146108e357604051600080516020613d898339815191528152600401610832906139c6565b6108eb611df0565b6108f3610775565b111561091957604051600080516020613d898339815191528152600401610832906139fb565b6109216123db565b600d805460ff19166001179055610936612474565b565b610940611e31565b600d54620100009004600160a060020a0390811691161461097b57604051600080516020613d898339815191528152600401610832906139c6565b6109858282612a1e565b5050565b600160a060020a038116600090815260036020526040812060048101546002820154600583015460019093015484936109de93926109d892909183916064916109d29190611d1b565b90611d1b565b90611dae565b905060006109f560646109d8612710610890612b65565b821115610a43576000610a088380611d1b565b9050610a1681612710612b6a565b9150610a20612bac565b821115610a3957610a2f612bac565b9350505050610a50565b509150610a509050565b610a4b612b65565b925050505b919050565b610a5d611e31565b600d54620100009004600160a060020a03908116911614610a9857604051600080516020613d898339815191528152600401610832906139c6565b610aa061160b565b15610ac557604051600080516020613d89833981519152815260040161083290613c82565b600a55565b600160a060020a03811660009081526003602052604081206001810154600582015460048301546002909301548493610b1393926109d892909183916064916109d29190611d1b565b9050610b2860646109d8612710610890612b65565b811115610b49576000610b3b8280611d1b565b9050610a4b81612710612b6a565b610b51612b65565b915050610a50565b6000610b6361160b565b15610b7e57600854600754610b7791611dae565b9050610754565b610b77610b89611df0565b60075490611dae565b6000610751612bb2565b610ba4611e31565b600d54620100009004600160a060020a03908116911614610bdf57604051600080516020613d898339815191528152600401610832906139c6565b600d805461ff0019166101001790556000610bf8610b92565b90506000610c04610896565b6040517fe6a439050000000000000000000000000000000000000000000000000000000081529091506000908190600160a060020a0384169063e6a4390590610c539089903090600401613453565b60206040518083038186803b158015610c6b57600080fd5b505afa158015610c7f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ca39190613303565b600160a060020a03161415610d52576040517fc9c65396000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063c9c6539690610cf99088903090600401613453565b602060405180830381600087803b158015610d1357600080fd5b505af1158015610d27573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d4b9190613303565b9050610dec565b6040517fe6a43905000000000000000000000000000000000000000000000000000000008152600160a060020a0383169063e6a4390590610d999088903090600401613453565b60206040518083038186803b158015610db157600080fd5b505afa158015610dc5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610de99190613303565b90505b6000600160a060020a031682600160a060020a031663e6a439058786600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015610e5c57600080fd5b505afa158015610e70573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e949190613303565b6040518363ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610ecd929190613453565b60206040518083038186803b158015610ee557600080fd5b505afa158015610ef9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f1d9190613303565b600160a060020a03161415610f4c57604051600080516020613d89833981519152815260040161083290613c14565b83610f563061140f565b1015610f7c57604051600080516020613d898339815191528152600401610832906137ea565b6000610f89856002611dae565b90506000610f978683612b6a565b9050600087600160a060020a03166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401610fe3919061343f565b60206040518083038186803b158015610ffb57600080fd5b505afa15801561100f573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061103391906133fa565b6040805160038082526080820190925291925060609190602082018380368337019050509050308160008151811061106757fe5b6020026020010190600160a060020a03169081600160a060020a03168152505086600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156110dc57600080fd5b505afa1580156110f0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111149190613303565b8160018151811061112157fe5b6020026020010190600160a060020a03169081600160a060020a031681525050888160028151811061114f57fe5b6020026020010190600160a060020a03169081600160a060020a03168152505061117a308886611e35565b6040517f5c11d795000000000000000000000000000000000000000000000000000000008152600160a060020a03881690635c11d795906111c8908790600090869030904290600401613cdf565b600060405180830381600087803b1580156111e257600080fd5b505af11580156111f6573d6000803e3d6000fd5b50505050600061129e838b600160a060020a03166370a08231306040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611248919061343f565b60206040518083038186803b15801561126057600080fd5b505afa158015611274573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061129891906133fa565b90612b6a565b90506112ab308986611e35565b6040517f095ea7b3000000000000000000000000000000000000000000000000000000008152600160a060020a038b169063095ea7b3906112f2908b9085906004016134f1565b602060405180830381600087803b15801561130c57600080fd5b505af1158015611320573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061134491906133c2565b506040517fe8e33700000000000000000000000000000000000000000000000000000000008152600160a060020a0389169063e8e33700906113999030908e908990879060009081908690429060040161346d565b606060405180830381600087803b1580156113b357600080fd5b505af11580156113c7573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906113eb9190613412565b5050506113f8868b612a1e565b5050600d805461ff00191690555050505050505050565b60008061141a610b59565b9050611429816109d885611989565b9392505050565b611438611e31565b600d54620100009004600160a060020a0390811691161461147357604051600080516020613d898339815191528152600401610832906139c6565b600d54604051600091620100009004600160a060020a0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600d80547fffffffffffffffffffff0000000000000000000000000000000000000000ffff169055565b6000600282815481106114ea57fe5b600091825260209091200154600160a060020a031692915050565b600160a060020a03808216600090815260036020526040812054909182918291611531918691166119db565b600160a060020a039096166000908152600360208190526040909120908101969096556001860191909155600290940193909355505050565b60008060008060008061157b6132a8565b50505050600160a060020a03938416600090815260036020818152604092839020835160c0810185528154909816808952600182015492890183905260028201549489018590529281015460608901819052600482015460808a0181905260059092015460a090990189905292989197939650919450909250565b600d54620100009004600160a060020a031690565b600d5460ff1690565b6060610751612bca565b61162661160b565b1561164b57604051600080516020613d898339815191528152600401610832906138c4565b42600a54111561167557604051600080516020613d8983398151915281526004016108329061368d565b61167d612c01565b6116ad34600c600061168d611e31565b600160a060020a0316815260208101919091526040016000205490611d5d565b11156116d357604051600080516020613d89833981519152815260040161083290613c4b565b600b546116fa57604051600080516020613d8983398151915281526004016108329061398f565b6000341161172257604051600080516020613d89833981519152815260040161083290613a8f565b61173261172d611e31565b612c0d565b1561175757604051600080516020613d898339815191528152600401610832906138fb565b61175f612c13565b3a111561178657604051600080516020613d8983398151915281526004016108329061388d565b600061179d600b5434611dae90919063ffffffff16565b90506117a7612c1c565b6009546117b49083611d5d565b11156117da57604051600080516020613d89833981519152815260040161083290613bdd565b60006117e4610b59565b905060006117f28383611d1b565b9050611823816000806118036115f6565b600160a060020a0316815260208101919091526040016000205490612b6a565b60008061182e6115f6565b600160a060020a0316600160a060020a03168152602001908152602001600020819055506118618160008061168d611e31565b60008061186c611e31565b600160a060020a0316815260208101919091526040016000205561188e611e31565b600160a060020a031661189f6115f6565b600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef856040516118d79190613548565b60405180910390a36118ef34600c600061168d611e31565b600c60006118fb611e31565b600160a060020a031681526020810191909152604001600020556009546119229084611d5d565b600955505050565b600061076b611937611e31565b846107c885604051806060016040528060258152602001613dd1602591396107c1611960611e31565b8a6119a4565b600554600160a060020a031690565b600061076b611982611e31565b8484611eec565b600160a060020a031660009081526020819052604090205490565b600160a060020a03918216600090815260016020908152604080832093909416825291909152205490565b60075490565b60065490565b60008060008085600160a060020a03166318160ddd6040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b158015611a3657600080fd5b505afa158015611a4a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a6e91906133fa565b6040517f70a0823100000000000000000000000000000000000000000000000000000000815290915060009030906370a0823190611ab0908a9060040161343f565b60206040518083038186803b158015611ac857600080fd5b505afa158015611adc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b0091906133fa565b9050600086600160a060020a03166370a08231896040518263ffffffff167c0100000000000000000000000000000000000000000000000000000000028152600401611b4c919061343f565b60206040518083038186803b158015611b6457600080fd5b505afa158015611b78573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b9c91906133fa565b91989197509195509350505050565b60085490565b611bb9611e31565b600d54620100009004600160a060020a03908116911614611bf457604051600080516020613d898339815191528152600401610832906139c6565b611bfd81612c26565b50565b600061142983836119a4565b600160a060020a031660009081526004602052604090205460ff1690565b611c32611e31565b600d54620100009004600160a060020a03908116911614611c6d57604051600080516020613d898339815191528152600401610832906139c6565b600160a060020a038116611c9b57604051600080516020613d898339815191528152600401610832906136c4565b600d54604051600160a060020a038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600d8054600160a060020a0390921662010000027fffffffffffffffffffff0000000000000000000000000000000000000000ffff909216919091179055565b600082611d2a5750600061076f565b82820282848281611d3757fe5b041461142957604051600080516020613d89833981519152815260040161083290613932565b60008282018381101561142957604051600080516020613d8983398151915281526004016108329061377e565b7ffffffffffffffffffffffffffffffffffffffffffffffffffffff8cd94b8000090565b600061142983836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612d8c565b65b5e620f4800090565b60408051808201909152601081527f5a535441424c452e50524f544f434f4c00000000000000000000000000000000602082015290565b3390565b600160a060020a038316611e6357604051600080516020613d89833981519152815260040161083290613b49565b600160a060020a038216611e9157604051600080516020613d89833981519152815260040161083290613721565b611e9c838383612dcb565b81600160a060020a031683600160a060020a03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611edf9190613548565b60405180910390a3505050565b600160a060020a038316611f1a57604051600080516020613d89833981519152815260040161083290613aec565b600160a060020a038216611f4857604051600080516020613d898339815191528152600401610832906135f9565b60008111611f7057604051600080516020613d898339815191528152600401610832906137b5565b611f798361140f565b811115611fa057604051600080516020613d898339815191528152600401610832906135c2565b611fa861160b565b611fcc57604051600080516020613d8983398151915281526004016108329061381f565b611fdf611fd7612df7565b6108906119d5565b421115611fee57611fee612dfd565b6000611ff8610b59565b905060006120068383611d1b565b905060006120126107d7565b1561201f5750600361207f565b600061202a87611c0c565b1561203f5761203887612f37565b9050612070565b61204886611c0c565b1561205b5761205686611505565b612070565b60055461207090600160a060020a0316611505565b61207b878783612fa2565b9150505b80600114156121665760006120948786612ff8565b600160a060020a0388166000908152602081905260409020549091506120ba9084612b6a565b600160a060020a0380891660009081526020819052604080822093909355908816815220546120e99084611d5d565b600160a060020a03871660009081526020819052604090205560085461210f9082611d5d565b60088190555085600160a060020a031687600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef876040516121589190613548565b60405180910390a350612382565b80600214156122cc5760008061217c87876130b0565b9092509050600061218d8784612b6a565b9050600061219b8288611d1b565b600160a060020a038b166000908152602081905260409020549091506121c19087612b6a565b600160a060020a03808c1660009081526020819052604080822093909355908b16815220546121f09082611d5d565b600160a060020a038a166000908152602081905260409020556008546122169085612b6a565b6008556007546122269084612b6a565b60078190555088600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161226f9190613548565b60405180910390a36000600160a060020a03168a600160a060020a03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef866040516122bb9190613548565b60405180910390a350505050612382565b806003141561238257600160a060020a0386166000908152602081905260409020546122f89083612b6a565b600160a060020a0380881660009081526020819052604080822093909355908716815220546123279083611d5d565b600160a060020a0380871660008181526020819052604090819020939093559151908816907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef90612379908890613548565b60405180910390a35b505050505050565b600081848411156123b657604051600080516020613d8983398151915281526004016108329190613551565b505050900390565b600990565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f90565b6123e361160b565b1561240857604051600080516020613d89833981519152815260040161083290613656565b612418306548c273950000613211565b61242f6124236115f6565b6512309ce54000613211565b60405130906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9061246a906548c27395000090613548565b60405180910390a3565b600d805461ff001916610100179055600061248d610b92565b90506000612499610896565b9050600080600160a060020a031682600160a060020a031663e6a4390585600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561250b57600080fd5b505afa15801561251f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125439190613303565b306040518363ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040161257d929190613453565b60206040518083038186803b15801561259557600080fd5b505afa1580156125a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906125cd9190613303565b600160a060020a0316141561270b5781600160a060020a031663c9c6539684600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561264057600080fd5b505afa158015612654573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906126789190613303565b306040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016126b2929190613453565b602060405180830381600087803b1580156126cc57600080fd5b505af11580156126e0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127049190613303565b9050612834565b81600160a060020a031663e6a439053085600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b15801561277057600080fd5b505afa158015612784573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127a89190613303565b6040518363ffffffff167c01000000000000000000000000000000000000000000000000000000000281526004016127e1929190613453565b60206040518083038186803b1580156127f957600080fd5b505afa15801561280d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906128319190613303565b90505b61283c61327e565b600160a060020a03166108fc612850613296565b6040518115909202916000818181858888f19350505050158015612878573d6000803e3d6000fd5b5061289e30737a250d5630b4cf539739df2c5dacb4c659f2488d6548c273950000611e35565b6040517ff305d719000000000000000000000000000000000000000000000000000000008152600160a060020a0384169063f305d71990308031916128f791906548c273950000906000908190849042906004016134b6565b6060604051808303818588803b15801561291057600080fd5b505af1158015612924573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906129499190613412565b5050506129e28184600160a060020a031663ad5c46486040518163ffffffff167c010000000000000000000000000000000000000000000000000000000002815260040160206040518083038186803b1580156129a557600080fd5b505afa1580156129b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906129dd9190613303565b612a1e565b6005805473ffffffffffffffffffffffffffffffffffffffff1916600160a060020a03929092169190911790555050600d805461ff0019169055565b612a2782611c0c565b15612a4c57604051600080516020613d89833981519152815260040161083290613ba6565b600160a060020a0382166000818152600460205260408120805460ff1916600190811790915560028054918201815582527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace01805473ffffffffffffffffffffffffffffffffffffffff19169092179091558080612aca85856119db565b6040805160c081018252600160a060020a0398891681526020808201868152828401868152606084019586526080840197885260a084019687529b8b166000908152600392839052939093209151825473ffffffffffffffffffffffffffffffffffffffff19169a16999099178155905160018201559751600289015551958701959095555160048601555050905160059092019190915550565b606490565b600061142983836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525061238a565b6103e890565b737a250d5630b4cf539739df2c5dacb4c659f2488d90565b60408051808201909152600381527f5a53540000000000000000000000000000000000000000000000000000000000602082015290565b671bc16d674ec8000090565b3b151590565b642e90edd00090565b655af3107a400090565b612c2f81611c0c565b612c5357604051600080516020613d89833981519152815260040161083290613a32565b60005b6002548110156109855781600160a060020a031660028281548110612c7757fe5b600091825260209091200154600160a060020a03161415612d8457600280546000198101908110612ca457fe5b60009182526020909120015460028054600160a060020a039092169183908110612cca57fe5b600091825260208083209091018054600160a060020a0394851673ffffffffffffffffffffffffffffffffffffffff1991821617909155928516825260048082526040808420805460ff191690556003928390528320805490941684556001840183905560028085018490559184018390558301829055600590920155805480612d5057fe5b6000828152602090208101600019908101805473ffffffffffffffffffffffffffffffffffffffff19169055019055610985565b600101612c56565b60008183612db557604051600080516020613d8983398151915281526004016108329190613551565b506000838581612dc157fe5b0495945050505050565b600160a060020a0392831660009081526001602090815260408083209490951682529290925291902055565b61384090565b612e056132a2565b60005b600254811015611bfd576003600060028381548110612e2357fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600101546003600060028481548110612e7657fe5b6000918252602080832090910154600160a060020a0316835282019290925260400181206004019190915560028054600392919084908110612eb457fe5b9060005260206000200160009054906101000a9004600160a060020a0316600160a060020a0316600160a060020a03168152602001908152602001600020600201546003600060028481548110612f0757fe5b6000918252602080832090910154600160a060020a03168352820192909252604001902060050155600101612e08565b600160a060020a038082166000908152600360205260408120549091829182918291612f65918791166119db565b600160a060020a03979097166000908152600360208190526040909120908101805490899055600182019390935560020155909410949350505050565b60006002612faf85611c0c565b15612fcb578215612fc257506003612fc6565b5060015b612ff0565b612fd3612bb2565b600160a060020a031685600160a060020a03161415612ff0575060035b949350505050565b600160a060020a0382166000908152600360205260408120600181015460058201546004830154600290930154849361304193926109d892909183916064916109d29190611d1b565b9050600061305860646109d8612710610890612b65565b82111561308f57600061306b8380611d1b565b90506130876127106109d86130808483612b6a565b8890611d1b565b915050612ff0565b6130a76127106109d86130a0612b65565b8790611d1b565b95945050505050565b60008060006130bd610b59565b905060006130ca86611c0c565b1561311a57600160a060020a0386166000908152600360205260409020600481015460028201546005830154600190930154613113936109d8929183916064916109d291611d1b565b9050613165565b60058054600160a060020a0316600090815260036020526040902060048101546002820154928201546001909201546131629391926109d8929183916064916109d291611d1b565b90505b600061317a60646109d8612710610890612b65565b8211156131dd57600061318d8380611d1b565b90506131a96127106109d86131a28483612b6a565b8a90611d1b565b91506131bc6127106109d86131a2612bac565b8211156131d7576131d46127106109d86131a2612bac565b91505b506131f8565b6131f56127106109d86131ee612b65565b8990611d1b565b90505b806132038185611d1b565b945094505050509250929050565b600061321b610b59565b905060006132298383611d1b565b600160a060020a03851660009081526020819052604090205490915061324f9082611d5d565b600160a060020a0385166000908152602081905260409020556008546132759084611d5d565b60085550505050565b73083c3b9a697596755834dbef3d0a70a77c36ae0790565b677ce66c50e284000090565b42600655565b6040518060c001604052806000600160a060020a0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b6000602082840312156132f8578081fd5b813561142981613d73565b600060208284031215613314578081fd5b815161142981613d73565b60008060408385031215613331578081fd5b823561333c81613d73565b9150602083013561334c81613d73565b809150509250929050565b60008060006060848603121561336b578081fd5b833561337681613d73565b9250602084013561338681613d73565b929592945050506040919091013590565b600080604083850312156133a9578182fd5b82356133b481613d73565b946020939093013593505050565b6000602082840312156133d3578081fd5b81518015158114611429578182fd5b6000602082840312156133f3578081fd5b5035919050565b60006020828403121561340b578081fd5b5051919050565b600080600060608486031215613426578283fd5b8351925060208401519150604084015190509250925092565b600160a060020a0391909116815260200190565b600160a060020a0392831681529116602082015260400190565b600160a060020a039889168152968816602088015260408701959095526060860193909352608085019190915260a084015290921660c082015260e08101919091526101000190565b600160a060020a039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b600160a060020a03929092168252602082015260400190565b600160a060020a03969096168652602086019490945260408501929092526060840152608083015260a082015260c00190565b901515815260200190565b90815260200190565b6000602080835283518082850152825b8181101561357d57858101830151858201604001528201613561565b8181111561358e5783604083870101525b50601f017fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe016929092016040019392505050565b60208082526016908201527f416d6f756e7420657863656564732062616c616e636500000000000000000000604082015260600190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201527f6573730000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f43616e6e6f74206d696e7420706f73742070726573616c650000000000000000604082015260600190565b6020808252601a908201527f50726573616c65206861736e2774207374617274656420796574000000000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201527f6464726573730000000000000000000000000000000000000000000000000000606082015260800190565b60208082526022908201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560408201527f7373000000000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601b908201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604082015260600190565b6020808252818101527f416d6f756e74206d7573742062652067726561746572207468616e207a65726f604082015260600190565b6020808252818101527f416d6f756e7420657863656564732074686520746f6b656e2062616c616e6365604082015260600190565b60208082526014908201527f50726573616c652079657420746f20636c6f7365000000000000000000000000604082015260600190565b6020808252601e908201527f43616e206f6e6c7920626520736574206265666f72652070726573616c650000604082015260600190565b60208082526015908201527f6761732070726963652061626f7665206c696d69740000000000000000000000604082015260600190565b6020808252601c908201527f50726573616c6520697320616c726561647920636f6d706c6574656400000000604082015260600190565b6020808252600c908201527f6e6f20636f6e7472616374730000000000000000000000000000000000000000604082015260600190565b60208082526021908201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f60408201527f7700000000000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526018908201527f50726573616c65207072696365206973206e6f74207365740000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f546f74616c20737570706c7920697320616c7265616479206d696e7465640000604082015260600190565b60208082526024908201527f5468697320706f6f6c2069732063757272656e746c79206e6f7420737570706f60408201527f7274656400000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526028908201527f43616e6e6f742062757920776974686f75742073656e64696e6720616e79206560408201527f7468206d61746521000000000000000000000000000000000000000000000000606082015260800190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460408201527f6472657373000000000000000000000000000000000000000000000000000000606082015260800190565b60208082526024908201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460408201527f7265737300000000000000000000000000000000000000000000000000000000606082015260800190565b6020808252601e908201527f5468697320706f6f6c20697320616c726561647920737570706f727465640000604082015260600190565b6020808252601f908201527f50726573616c65206d61782063617020616c7265616479207265616368656400604082015260600190565b6020808252601a908201527f4574682070616972696e6720646f6573206e6f74206578697374000000000000604082015260600190565b60208082526016908201527f43726f7373656420696e646976696475616c2063617000000000000000000000604082015260600190565b60208082526031908201527f546869732063616e6e6f74206265206d6f64696669656420616674657220746860408201527f652070726573616c6520697320646f6e65000000000000000000000000000000606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c0860191508289019350845b81811015613d2e578451600160a060020a031683529383019391830191600101613d09565b5050600160a060020a03969096166060850152505050608001529392505050565b9283526020830191909152604082015260600190565b60ff91909116815260200190565b600160a060020a0381168114611bfd57600080fdfe08c379a00000000000000000000000000000000000000000000000000000000045524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220daadf3e6e0010fbe9f75aa1711c4aeefc339e2ad2075058233569871b1fca78164736f6c634300060c0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.