ERC-20
Overview
Max Total Supply
1,000,000,000,000 ANCIENT
Holders
54
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
3,562,992,553.105915333190046605 ANCIENTValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ANCIENT
Compiler Version
v0.8.14+commit.80d49f37
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.14; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol"; import "@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol"; contract ANCIENT is Context, IERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 private router; mapping (address => uint) private antiMEV; mapping (address => uint256) private _rOwned; mapping (address => mapping (address => uint256)) private _allowances; mapping (address => bool) private isExcludedFromFee; mapping (address => bool) private isBot; bool public isTradingOpened; bool private isSwapping; bool private isInSwap = false; bool private isSwapEnabled = false; bool public isAntiMEVEnabled = false; string private constant _name = "The Truths Of The Noble Ones"; string private constant _symbol = "ANCIENT"; uint8 private constant _decimals = 18; uint256 private constant _tTotal = 1e12 * (10**_decimals); uint256 public maxBuyAmount = _tTotal; uint256 public maxSellAmount = _tTotal; uint256 public maxWalletAmount = _tTotal; uint256 private tradingOpenedBlock = 0; uint256 private buyMarketingFee = 2; uint256 private previousBuyMarketingFee = buyMarketingFee; uint256 private buyLiquidityFee = 2; uint256 private previousBuyLiquidityFee = buyLiquidityFee; uint256 private sellMarketingFee = 3; uint256 private previousSellMarketingFee = sellMarketingFee; uint256 private sellLiquidityFee = 3; uint256 private previousSellLiquidityFee = sellLiquidityFee; uint256 private tokensForMarketing; uint256 private tokensForLiquidity; uint256 private swapTokensThreshold = 0; address payable private marketingWallet; address payable private liquidityWallet; address private pair; event SwapAndLiquify(uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity); modifier lockTheSwap { isInSwap = true; _; isInSwap = false; } constructor (address mktgWallet, address liqWallet) { marketingWallet = payable(mktgWallet); liquidityWallet = payable(liqWallet); _rOwned[_msgSender()] = _tTotal; isExcludedFromFee[owner()] = true; isExcludedFromFee[address(this)] = true; isExcludedFromFee[marketingWallet] = true; isExcludedFromFee[liquidityWallet] = true; emit Transfer(address(0), _msgSender(), _tTotal); } function name() public pure returns (string memory) { return _name; } function symbol() public pure returns (string memory) { return _symbol; } function decimals() public pure returns (uint8) { return _decimals; } function totalSupply() public pure override returns (uint256) { return _tTotal; } function balanceOf(address account) public view override returns (uint256) { return _rOwned[account]; } 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 _allowances[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(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } function setisAntiMEVEnabled(bool onoff) external onlyOwner() { isAntiMEVEnabled = onoff; } function setSwapEnabled(bool onoff) external onlyOwner(){ isSwapEnabled = onoff; } 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"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } function _transfer(address from, address to, uint256 amount) private { require(from != address(0), "Error: transfer from the zero address"); require(to != address(0), "Error: transfer to the zero address"); require(amount > 0, "Error: Transfer amount must be greater than zero"); bool takeFee = false; bool shouldSwap = false; if (from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !isSwapping) { require(!isBot[from] && !isBot[to]); if (isAntiMEVEnabled){ if (to != address(router) && to != address(pair)){ require(antiMEV[tx.origin] < block.number - 1 && antiMEV[to] < block.number - 1, "Error: Transfer delay enabled. Try again later."); antiMEV[tx.origin] = block.number; antiMEV[to] = block.number; } } takeFee = true; if (from == pair && to != address(router) && !isExcludedFromFee[to]) { require(isTradingOpened, "Error: Trading is not allowed yet."); require(amount <= maxBuyAmount, "Error: Transfer amount exceeds the maxBuyAmount."); require(balanceOf(to) + amount <= maxWalletAmount, "Error: Transfer amount exceeds the maximum wallet amount."); } if (to == pair && from != address(router) && !isExcludedFromFee[from]) { require(isTradingOpened, "Error: Trading is not allowed yet."); require(amount <= maxSellAmount, "Error: Transfer amount exceeds the maxSellAmount."); shouldSwap = true; } } if(isExcludedFromFee[from] || isExcludedFromFee[to]) { takeFee = false; } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = (contractTokenBalance > swapTokensThreshold) && shouldSwap; if (canSwap && isSwapEnabled && !isSwapping && !isExcludedFromFee[from] && !isExcludedFromFee[to]) { isSwapping = true; swapNLiq(); isSwapping = false; } _tokenTransfer(from,to,amount,takeFee, shouldSwap); } function swapNLiq() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForMarketing; bool success; if(contractBalance == 0 || totalTokensToSwap == 0) {return;} if(contractBalance > swapTokensThreshold * 5) { contractBalance = swapTokensThreshold * 5; } uint256 liquidityTokens = contractBalance * tokensForLiquidity / totalTokensToSwap / 2; uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens); uint256 initialETHBalance = address(this).balance; swapTokensForETH(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForMarketing = ethBalance.mul(tokensForMarketing).div(totalTokensToSwap); uint256 ethForLiquidity = ethBalance - ethForMarketing; tokensForLiquidity = 0; tokensForMarketing = 0; if(liquidityTokens > 0 && ethForLiquidity > 0){ addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify(amountToSwapForETH, ethForLiquidity, tokensForLiquidity); } (success,) = address(marketingWallet).call{value: address(this).balance}(""); } function swapTokensForETH(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { _approve(address(this), address(router), tokenAmount); router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, liquidityWallet, block.timestamp ); } function sendETHToFee(uint256 amount) private { marketingWallet.transfer(amount); } function removeAllFee() private { if(buyMarketingFee == 0 && buyLiquidityFee == 0 && sellMarketingFee == 0 && sellLiquidityFee == 0) return; previousBuyMarketingFee = buyMarketingFee; previousBuyLiquidityFee = buyLiquidityFee; previousSellMarketingFee = sellMarketingFee; previousSellLiquidityFee = sellLiquidityFee; buyMarketingFee = 0; buyLiquidityFee = 0; sellMarketingFee = 0; sellLiquidityFee = 0; } function restoreAllFee() private { buyMarketingFee = previousBuyMarketingFee; buyLiquidityFee = previousBuyLiquidityFee; sellMarketingFee = previousSellMarketingFee; sellLiquidityFee = previousSellLiquidityFee; } function _tokenTransfer(address sender, address recipient, uint256 amount, bool takeFee, bool isSell) private { if(!takeFee) { removeAllFee(); } else { amount = takeFees(sender, amount, isSell); } _transferStandard(sender, recipient, amount); if(!takeFee) { restoreAllFee(); } } function _transferStandard(address sender, address recipient, uint256 tAmount) private { _rOwned[sender] = _rOwned[sender].sub(tAmount); _rOwned[recipient] = _rOwned[recipient].add(tAmount); emit Transfer(sender, recipient, tAmount); } function takeFees(address sender, uint256 amount, bool isSell) private returns (uint256) { uint256 totalFees; uint256 mktgFee; uint256 liqFee; totalFees = getTotalFees(isSell); if (isSell) { mktgFee = sellMarketingFee; liqFee = sellLiquidityFee; } else { mktgFee = buyMarketingFee; liqFee = buyLiquidityFee; } uint256 fees = amount.mul(totalFees).div(100); tokensForMarketing += fees * mktgFee / totalFees; tokensForLiquidity += fees * liqFee / totalFees; if(fees > 0) { _transferStandard(sender, address(this), fees); } return amount -= fees; } function getTotalFees(bool isSell) private view returns(uint256) { if (isSell) { return sellMarketingFee + sellLiquidityFee; } return buyMarketingFee + buyLiquidityFee; } receive() external payable {} fallback() external payable {} function manualSwap() public onlyOwner { uint256 contractBalance = balanceOf(address(this)); swapTokensForETH(contractBalance); } function manualSend() public onlyOwner { uint256 contractETHBalance = address(this).balance; sendETHToFee(contractETHBalance); } function withdrawStuckETH() public onlyOwner { bool success; (success,) = address(msg.sender).call{value: address(this).balance}(""); } function enableTrading() external onlyOwner { require(!isTradingOpened,"trading is already open"); IUniswapV2Router02 _router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); router = _router; _approve(address(this), address(router), _tTotal); pair = IUniswapV2Factory(_router.factory()).createPair(address(this), _router.WETH()); router.addLiquidityETH{value: address(this).balance}(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); isSwapEnabled = true; isAntiMEVEnabled = true; maxBuyAmount = 1e10 * (10**_decimals); maxSellAmount = 1e10 * (10**_decimals); maxWalletAmount = 2e10 * (10**_decimals); swapTokensThreshold = 5e8 * (10**_decimals); isTradingOpened = true; tradingOpenedBlock = block.number; IERC20(pair).approve(address(router), type(uint).max); } function setLimits(uint256 maxBuy, uint256 maxSell, uint256 maxWallet) public onlyOwner { require(maxBuy >= 1e8 * (10**_decimals), "maxBuy cannot be lower than 0.01% total supply."); require(maxSell >= 1e8 * (10**_decimals), "maxSell cannot be lower than 0.01% total supply."); require(maxWallet >= 1e9 * (10**_decimals), "maxWallet cannot be lower than 0.1% total supply."); maxBuyAmount = maxBuy; maxSellAmount = maxSell; maxWalletAmount = maxWallet; } function disableLimits() public onlyOwner { maxBuyAmount = _tTotal; maxSellAmount = _tTotal; maxWalletAmount = _tTotal; isAntiMEVEnabled = false; } function setSwapTokensThresholdAmount(uint256 amount) public onlyOwner { require(amount >= 1e7 * (10**_decimals), "Swap threshold cannot be lower than 0.001% total supply."); require(amount <= 5e9 * (10**_decimals), "Swap threshold cannot be higher than 0.5% total supply."); swapTokensThreshold = amount; } function setMarketingWalletAddy(address wallet) public onlyOwner { require(wallet != address(0), "Wallet address cannot be 0"); isExcludedFromFee[marketingWallet] = false; marketingWallet = payable(wallet); isExcludedFromFee[marketingWallet] = true; } function setLiquidityWalletAddy(address wallet) public onlyOwner { require(wallet != address(0), "Wallet address cannot be 0"); isExcludedFromFee[liquidityWallet] = false; liquidityWallet = payable(wallet); isExcludedFromFee[liquidityWallet] = true; } function setFeeExclusion(address[] memory accounts, bool exempt) public onlyOwner { for (uint i = 0; i < accounts.length; i++) { isExcludedFromFee[accounts[i]] = exempt; } } function setBots(address[] memory accounts, bool exempt) public onlyOwner { for (uint i = 0; i < accounts.length; i++) { isBot[accounts[i]] = exempt; } } function setBuyFee(uint256 buyMktgFee, uint256 buyLiqFee) external onlyOwner { require(buyMktgFee + buyLiqFee <= 10, "Must keep buy taxes below 10%"); buyMarketingFee = buyMktgFee; buyLiquidityFee = buyLiqFee; } function setSellFee(uint256 sellMktgFee, uint256 sellLiqFee) external onlyOwner { require(sellMktgFee + sellLiqFee <= 10, "Must keep sell taxes below 10%"); sellMarketingFee = sellMktgFee; sellLiquidityFee = sellLiqFee; } }
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 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; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // 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 (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @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) { return a + b; } /** * @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 a - b; } /** * @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) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting 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 a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting 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) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * 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) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); /** * @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 // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/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() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual 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 { _transferOwnership(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"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"mktgWallet","type":"address"},{"internalType":"address","name":"liqWallet","type":"address"}],"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":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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"},{"stateMutability":"payable","type":"fallback"},{"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":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"disableLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isAntiMEVEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTradingOpened","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"manualSend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"maxBuyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSellAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setBots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyMktgFee","type":"uint256"},{"internalType":"uint256","name":"buyLiqFee","type":"uint256"}],"name":"setBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"bool","name":"exempt","type":"bool"}],"name":"setFeeExclusion","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"maxSell","type":"uint256"},{"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"setLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setLiquidityWalletAddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"setMarketingWalletAddy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"sellMktgFee","type":"uint256"},{"internalType":"uint256","name":"sellLiqFee","type":"uint256"}],"name":"setSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setSwapTokensThresholdAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"onoff","type":"bool"}],"name":"setisAntiMEVEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"pure","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"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526007805464ffffff000019169055620000206012600a62000369565b620000319064e8d4a5100062000381565b600855620000426012600a62000369565b620000539064e8d4a5100062000381565b600955620000646012600a62000369565b620000759064e8d4a5100062000381565b600a556000600b556002600c55600c54600d556002600e55600e54600f55600360105560105460115560036012556012546013556000601655348015620000bb57600080fd5b5060405162002d9d38038062002d9d833981016040819052620000de91620003c0565b620000e93362000204565b601780546001600160a01b038085166001600160a01b0319928316179092556018805492841692909116919091179055620001276012600a62000369565b620001389064e8d4a5100062000381565b3360008181526003602090815260408083209490945581546001600160a01b03908116835260059091528382208054600160ff199182168117909255308452858420805482168317905560175483168452858420805482168317905560185490921683529382208054909116909317909255907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef620001da6012600a62000369565b620001eb9064e8d4a5100062000381565b60405190815260200160405180910390a35050620003f8565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620002ab5781600019048211156200028f576200028f62000254565b808516156200029d57918102915b93841c93908002906200026f565b509250929050565b600082620002c45750600162000363565b81620002d35750600062000363565b8160018114620002ec5760028114620002f75762000317565b600191505062000363565b60ff8411156200030b576200030b62000254565b50506001821b62000363565b5060208310610133831016604e8410600b84101617156200033c575081810a62000363565b6200034883836200026a565b80600019048211156200035f576200035f62000254565b0290505b92915050565b60006200037a60ff841683620002b3565b9392505050565b60008160001904831182151516156200039e576200039e62000254565b500290565b80516001600160a01b0381168114620003bb57600080fd5b919050565b60008060408385031215620003d457600080fd5b620003df83620003a3565b9150620003ef60208401620003a3565b90509250929050565b61299580620004086000396000f3fe6080604052600436106101cf5760003560e01c80638da5cb5b116100f6578063e01af92c1161008f578063f5648a4f11610061578063f5648a4f146105a5578063f89efdc5146105ba578063f928364c146105da578063fb0ecfa4146105ef57005b8063e01af92c14610536578063e385e2ec14610556578063f2fde38b14610570578063f42938901461059057005b8063a9059cbb116100c8578063a9059cbb14610498578063aa4bde28146104b8578063cd0baf0d146104ce578063dd62ed3e146104f057005b80638da5cb5b1461040057806395d89b41146104285780639a48ec45146104585780639c0db5f31461047857005b806351bc3c8511610168578063715018a61161013a578063715018a6146103a05780637b159a86146103b557806388e765ff146103d55780638a8c523c146103eb57005b806351bc3c851461031f57806366d602ae146103345780636ac9a8701461034a57806370a082311461036a57005b8063189ae5f2116101a1578063189ae5f2146102a357806323b872dd146102c3578063313ce567146102e357806346906b5d146102ff57005b806306fdde03146101d8578063095ea7b314610230578063132828c51461026057806318160ddd1461028057005b366101d657005b005b3480156101e457600080fd5b5060408051808201909152601c81527f54686520547275746873204f6620546865204e6f626c65204f6e65730000000060208201525b604051610227919061233d565b60405180910390f35b34801561023c57600080fd5b5061025061024b3660046123b7565b61060f565b6040519015158152602001610227565b34801561026c57600080fd5b506101d661027b3660046123e3565b610626565b34801561028c57600080fd5b5061029561077c565b604051908152602001610227565b3480156102af57600080fd5b506101d66102be3660046123fc565b61079e565b3480156102cf57600080fd5b506102506102de366004612428565b61095c565b3480156102ef57600080fd5b5060405160128152602001610227565b34801561030b57600080fd5b506101d661031a366004612469565b6109c5565b34801561032b57600080fd5b506101d6610a95565b34801561034057600080fd5b5061029560095481565b34801561035657600080fd5b506101d6610365366004612486565b610adb565b34801561037657600080fd5b50610295610385366004612469565b6001600160a01b031660009081526003602052604090205490565b3480156103ac57600080fd5b506101d6610b6a565b3480156103c157600080fd5b506101d66103d03660046124c1565b610ba0565b3480156103e157600080fd5b5061029560085481565b3480156103f757600080fd5b506101d6610bea565b34801561040c57600080fd5b506000546040516001600160a01b039091168152602001610227565b34801561043457600080fd5b50604080518082019091526007815266105390d251539560ca1b602082015261021a565b34801561046457600080fd5b506101d66104733660046124f4565b610fd8565b34801561048457600080fd5b506101d66104933660046124f4565b61106e565b3480156104a457600080fd5b506102506104b33660046123b7565b6110ff565b3480156104c457600080fd5b50610295600a5481565b3480156104da57600080fd5b5060075461025090640100000000900460ff1681565b3480156104fc57600080fd5b5061029561050b3660046125cb565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561054257600080fd5b506101d66105513660046124c1565b61110c565b34801561056257600080fd5b506007546102509060ff1681565b34801561057c57600080fd5b506101d661058b366004612469565b611154565b34801561059c57600080fd5b506101d66111ec565b3480156105b157600080fd5b506101d6611220565b3480156105c657600080fd5b506101d66105d5366004612469565b611297565b3480156105e657600080fd5b506101d6611367565b3480156105fb57600080fd5b506101d661060a366004612486565b6113fb565b600061061c33848461148a565b5060015b92915050565b6000546001600160a01b031633146106595760405162461bcd60e51b815260040161065090612604565b60405180910390fd5b6106656012600a612733565b6106729062989680612742565b8110156106e75760405162461bcd60e51b815260206004820152603860248201527f53776170207468726573686f6c642063616e6e6f74206265206c6f776572207460448201527f68616e20302e3030312520746f74616c20737570706c792e00000000000000006064820152608401610650565b6106f36012600a612733565b6107029064012a05f200612742565b8111156107775760405162461bcd60e51b815260206004820152603760248201527f53776170207468726573686f6c642063616e6e6f74206265206869676865722060448201527f7468616e20302e352520746f74616c20737570706c792e0000000000000000006064820152608401610650565b601655565b600061078a6012600a612733565b6107999064e8d4a51000612742565b905090565b6000546001600160a01b031633146107c85760405162461bcd60e51b815260040161065090612604565b6107d46012600a612733565b6107e2906305f5e100612742565b8310156108495760405162461bcd60e51b815260206004820152602f60248201527f6d61784275792063616e6e6f74206265206c6f776572207468616e20302e303160448201526e12903a37ba30b61039bab838363c9760891b6064820152608401610650565b6108556012600a612733565b610863906305f5e100612742565b8210156108cb5760405162461bcd60e51b815260206004820152603060248201527f6d617853656c6c2063616e6e6f74206265206c6f776572207468616e20302e3060448201526f1892903a37ba30b61039bab838363c9760811b6064820152608401610650565b6108d76012600a612733565b6108e590633b9aca00612742565b81101561094e5760405162461bcd60e51b815260206004820152603160248201527f6d617857616c6c65742063616e6e6f74206265206c6f776572207468616e2030604482015270171892903a37ba30b61039bab838363c9760791b6064820152608401610650565b600892909255600955600a55565b60006109698484846115af565b6109bb84336109b685604051806060016040528060288152602001612938602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c54565b61148a565b5060019392505050565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161065090612604565b6001600160a01b038116610a455760405162461bcd60e51b815260206004820152601a60248201527f57616c6c657420616464726573732063616e6e6f7420626520300000000000006044820152606401610650565b601880546001600160a01b03908116600090815260056020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b6000546001600160a01b03163314610abf5760405162461bcd60e51b815260040161065090612604565b30600090815260036020526040902054610ad881611c80565b50565b6000546001600160a01b03163314610b055760405162461bcd60e51b815260040161065090612604565b600a610b118284612761565b1115610b5f5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772031302500006044820152606401610650565b601091909155601255565b6000546001600160a01b03163314610b945760405162461bcd60e51b815260040161065090612604565b610b9e6000611df7565b565b6000546001600160a01b03163314610bca5760405162461bcd60e51b815260040161065090612604565b600780549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b03163314610c145760405162461bcd60e51b815260040161065090612604565b60075460ff1615610c675760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610650565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610cb03082610ca16012600a612733565b6109b69064e8d4a51000612742565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d129190612779565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190612779565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df49190612779565b601980546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610e3c816001600160a01b031660009081526003602052604090205490565b600080610e516000546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610e7396959493929190612796565b60606040518083038185885af1158015610e91573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610eb691906127d1565b50506007805464ffff000000191664010100000017905550610eda6012600a612733565b610ee9906402540be400612742565b600855610ef86012600a612733565b610f07906402540be400612742565b600955610f166012600a612733565b610f25906404a817c800612742565b600a908155610f3690601290612733565b610f4490631dcd6500612742565b6016556007805460ff1916600190811790915543600b55601954905460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610fb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd491906127ff565b5050565b6000546001600160a01b031633146110025760405162461bcd60e51b815260040161065090612604565b60005b82518110156110695781600560008584815181106110255761102561281c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061106181612832565b915050611005565b505050565b6000546001600160a01b031633146110985760405162461bcd60e51b815260040161065090612604565b60005b82518110156110695781600660008584815181106110bb576110bb61281c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110f781612832565b91505061109b565b600061061c3384846115af565b6000546001600160a01b031633146111365760405162461bcd60e51b815260040161065090612604565b6007805491151563010000000263ff00000019909216919091179055565b6000546001600160a01b0316331461117e5760405162461bcd60e51b815260040161065090612604565b6001600160a01b0381166111e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b610ad881611df7565b6000546001600160a01b031633146112165760405162461bcd60e51b815260040161065090612604565b47610ad881611e47565b6000546001600160a01b0316331461124a5760405162461bcd60e51b815260040161065090612604565b604051600090339047908381818185875af1925050503d806000811461128c576040519150601f19603f3d011682016040523d82523d6000602084013e611291565b606091505b50505050565b6000546001600160a01b031633146112c15760405162461bcd60e51b815260040161065090612604565b6001600160a01b0381166113175760405162461bcd60e51b815260206004820152601a60248201527f57616c6c657420616464726573732063616e6e6f7420626520300000000000006044820152606401610650565b601780546001600160a01b03908116600090815260056020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b6000546001600160a01b031633146113915760405162461bcd60e51b815260040161065090612604565b61139d6012600a612733565b6113ac9064e8d4a51000612742565b6008556113bb6012600a612733565b6113ca9064e8d4a51000612742565b6009556113d96012600a612733565b6113e89064e8d4a51000612742565b600a556007805464ff0000000019169055565b6000546001600160a01b031633146114255760405162461bcd60e51b815260040161065090612604565b600a6114318284612761565b111561147f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203130250000006044820152606401610650565b600c91909155600e55565b6001600160a01b0383166114ec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6001600160a01b03821661154d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610650565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116135760405162461bcd60e51b815260206004820152602560248201527f4572726f723a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610650565b6001600160a01b0382166116755760405162461bcd60e51b815260206004820152602360248201527f4572726f723a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610650565b600081116116de5760405162461bcd60e51b815260206004820152603060248201527f4572726f723a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b6064820152608401610650565b6000806116f36000546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561172257506000546001600160a01b03858116911614155b801561173657506001600160a01b03841615155b801561174d57506001600160a01b03841661dead14155b80156117615750600754610100900460ff16155b15611b35576001600160a01b03851660009081526006602052604090205460ff161580156117a857506001600160a01b03841660009081526006602052604090205460ff16155b6117b157600080fd5b600754640100000000900460ff16156118c7576001546001600160a01b038581169116148015906117f057506019546001600160a01b03858116911614155b156118c75761180060014361284b565b3260009081526002602052604090205410801561183e575061182360014361284b565b6001600160a01b038516600090815260026020526040902054105b6118a25760405162461bcd60e51b815260206004820152602f60248201527f4572726f723a205472616e736665722064656c617920656e61626c65642e205460448201526e393c9030b3b0b4b7103630ba32b91760891b6064820152608401610650565b3260009081526002602052604080822043908190556001600160a01b03871683529120555b601954600192506001600160a01b0386811691161480156118f657506001546001600160a01b03858116911614155b801561191b57506001600160a01b03841660009081526005602052604090205460ff16155b15611a4e5760075460ff166119425760405162461bcd60e51b815260040161065090612862565b6008548311156119ad5760405162461bcd60e51b815260206004820152603060248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201526f34329036b0bc213abca0b6b7bab73a1760811b6064820152608401610650565b600a54836119d0866001600160a01b031660009081526003602052604090205490565b6119da9190612761565b1115611a4e5760405162461bcd60e51b815260206004820152603960248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178696d756d2077616c6c657420616d6f756e742e000000000000006064820152608401610650565b6019546001600160a01b038581169116148015611a7957506001546001600160a01b03868116911614155b8015611a9e57506001600160a01b03851660009081526005602052604090205460ff16155b15611b355760075460ff16611ac55760405162461bcd60e51b815260040161065090612862565b600954831115611b315760405162461bcd60e51b815260206004820152603160248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201527034329036b0bc29b2b63620b6b7bab73a1760791b6064820152608401610650565b5060015b6001600160a01b03851660009081526005602052604090205460ff1680611b7457506001600160a01b03841660009081526005602052604090205460ff165b15611b7e57600091505b306000908152600360205260408120549050600060165482118015611ba05750825b9050808015611bb857506007546301000000900460ff165b8015611bcc5750600754610100900460ff16155b8015611bf157506001600160a01b03871660009081526005602052604090205460ff16155b8015611c1657506001600160a01b03861660009081526005602052604090205460ff16155b15611c3e576007805461ff001916610100179055611c32611e81565b6007805461ff00191690555b611c4b8787878787612030565b50505050505050565b60008184841115611c785760405162461bcd60e51b8152600401610650919061233d565b505050900390565b6007805462ff00001916620100001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611cc657611cc661281c565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d439190612779565b81600181518110611d5657611d5661281c565b6001600160a01b039283166020918202929092010152600154611d7c913091168461148a565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790611db59085906000908690309042906004016128a4565b600060405180830381600087803b158015611dcf57600080fd5b505af1158015611de3573d6000803e3d6000fd5b50506007805462ff00001916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610fd4573d6000803e3d6000fd5b3060009081526003602052604081205490506000601454601554611ea59190612761565b90506000821580611eb4575081155b15611ebe57505050565b601654611ecc906005612742565b831115611ee457601654611ee1906005612742565b92505b600060028360155486611ef79190612742565b611f019190612915565b611f0b9190612915565b90506000611f198583612084565b905047611f2582611c80565b6000611f314783612084565b90506000611f5487611f4e6014548561209790919063ffffffff16565b906120a3565b90506000611f62828461284b565b6000601581905560145590508515801590611f7d5750600081115b15611fd057611f8c86826120af565b601554604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6017546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b505050505050505050505050565b816120425761203d61214a565b612050565b61204d8584836121a5565b92505b61205b858585612263565b8161207d5761207d600d54600c55600f54600e55601154601055601354601255565b5050505050565b6000612090828461284b565b9392505050565b60006120908284612742565b60006120908284612915565b6001546120c79030906001600160a01b03168461148a565b60015460185460405163f305d71960e01b81526001600160a01b039283169263f305d7199285926121079230928992600092839216904290600401612796565b60606040518083038185885af1158015612125573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061207d91906127d1565b600c5415801561215a5750600e54155b80156121665750601054155b80156121725750601254155b1561217957565b600c8054600d55600e8054600f5560108054601155601280546013556000938490559183905582905555565b6000806000806121b485612309565b925084156121c95750506010546012546121d2565b5050600c54600e545b60006121e36064611f4e8987612097565b9050836121f08483612742565b6121fa9190612915565b6014600082825461220b9190612761565b9091555084905061221c8383612742565b6122269190612915565b601560008282546122379190612761565b9091555050801561224d5761224d883083612263565b612257818861284b565b98975050505050505050565b6001600160a01b0383166000908152600360205260409020546122869082612084565b6001600160a01b0380851660009081526003602052604080822093909355908416815220546122b59082612331565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115a29085815260200190565b60008115612321576012546010546106209190612761565b600e54600c546106209190612761565b60006120908284612761565b600060208083528351808285015260005b8181101561236a5785810183015185820160400152820161234e565b8181111561237c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ad857600080fd5b80356123b281612392565b919050565b600080604083850312156123ca57600080fd5b82356123d581612392565b946020939093013593505050565b6000602082840312156123f557600080fd5b5035919050565b60008060006060848603121561241157600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561243d57600080fd5b833561244881612392565b9250602084013561245881612392565b929592945050506040919091013590565b60006020828403121561247b57600080fd5b813561209081612392565b6000806040838503121561249957600080fd5b50508035926020909101359150565b8015158114610ad857600080fd5b80356123b2816124a8565b6000602082840312156124d357600080fd5b8135612090816124a8565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561250757600080fd5b823567ffffffffffffffff8082111561251f57600080fd5b818501915085601f83011261253357600080fd5b8135602082821115612547576125476124de565b8160051b604051601f19603f8301168101818110868211171561256c5761256c6124de565b60405292835281830193508481018201928984111561258a57600080fd5b948201945b838610156125af576125a0866123a7565b8552948201949382019361258f565b96506125be90508782016124b6565b9450505050509250929050565b600080604083850312156125de57600080fd5b82356125e981612392565b915060208301356125f981612392565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561268a57816000190482111561267057612670612639565b8085161561267d57918102915b93841c9390800290612654565b509250929050565b6000826126a157506001610620565b816126ae57506000610620565b81600181146126c457600281146126ce576126ea565b6001915050610620565b60ff8411156126df576126df612639565b50506001821b610620565b5060208310610133831016604e8410600b841016171561270d575081810a610620565b612717838361264f565b806000190482111561272b5761272b612639565b029392505050565b600061209060ff841683612692565b600081600019048311821515161561275c5761275c612639565b500290565b6000821982111561277457612774612639565b500190565b60006020828403121561278b57600080fd5b815161209081612392565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806000606084860312156127e657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561281157600080fd5b8151612090816124a8565b634e487b7160e01b600052603260045260246000fd5b60006001820161284457612844612639565b5060010190565b60008282101561285d5761285d612639565b500390565b60208082526022908201527f4572726f723a2054726164696e67206973206e6f7420616c6c6f7765642079656040820152613a1760f11b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128f45784516001600160a01b0316835293830193918301916001016128cf565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261293257634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d1a3bcf6d49c96736c303bd02919570fd6ba857cf4c77938abb4d1f05170991c64736f6c634300080e00330000000000000000000000009ef4538e465fdf72615fe9406ccfc6f27c0c04c1000000000000000000000000765aab63180988211e7e90ef778df7d4414f8c6f
Deployed Bytecode
0x6080604052600436106101cf5760003560e01c80638da5cb5b116100f6578063e01af92c1161008f578063f5648a4f11610061578063f5648a4f146105a5578063f89efdc5146105ba578063f928364c146105da578063fb0ecfa4146105ef57005b8063e01af92c14610536578063e385e2ec14610556578063f2fde38b14610570578063f42938901461059057005b8063a9059cbb116100c8578063a9059cbb14610498578063aa4bde28146104b8578063cd0baf0d146104ce578063dd62ed3e146104f057005b80638da5cb5b1461040057806395d89b41146104285780639a48ec45146104585780639c0db5f31461047857005b806351bc3c8511610168578063715018a61161013a578063715018a6146103a05780637b159a86146103b557806388e765ff146103d55780638a8c523c146103eb57005b806351bc3c851461031f57806366d602ae146103345780636ac9a8701461034a57806370a082311461036a57005b8063189ae5f2116101a1578063189ae5f2146102a357806323b872dd146102c3578063313ce567146102e357806346906b5d146102ff57005b806306fdde03146101d8578063095ea7b314610230578063132828c51461026057806318160ddd1461028057005b366101d657005b005b3480156101e457600080fd5b5060408051808201909152601c81527f54686520547275746873204f6620546865204e6f626c65204f6e65730000000060208201525b604051610227919061233d565b60405180910390f35b34801561023c57600080fd5b5061025061024b3660046123b7565b61060f565b6040519015158152602001610227565b34801561026c57600080fd5b506101d661027b3660046123e3565b610626565b34801561028c57600080fd5b5061029561077c565b604051908152602001610227565b3480156102af57600080fd5b506101d66102be3660046123fc565b61079e565b3480156102cf57600080fd5b506102506102de366004612428565b61095c565b3480156102ef57600080fd5b5060405160128152602001610227565b34801561030b57600080fd5b506101d661031a366004612469565b6109c5565b34801561032b57600080fd5b506101d6610a95565b34801561034057600080fd5b5061029560095481565b34801561035657600080fd5b506101d6610365366004612486565b610adb565b34801561037657600080fd5b50610295610385366004612469565b6001600160a01b031660009081526003602052604090205490565b3480156103ac57600080fd5b506101d6610b6a565b3480156103c157600080fd5b506101d66103d03660046124c1565b610ba0565b3480156103e157600080fd5b5061029560085481565b3480156103f757600080fd5b506101d6610bea565b34801561040c57600080fd5b506000546040516001600160a01b039091168152602001610227565b34801561043457600080fd5b50604080518082019091526007815266105390d251539560ca1b602082015261021a565b34801561046457600080fd5b506101d66104733660046124f4565b610fd8565b34801561048457600080fd5b506101d66104933660046124f4565b61106e565b3480156104a457600080fd5b506102506104b33660046123b7565b6110ff565b3480156104c457600080fd5b50610295600a5481565b3480156104da57600080fd5b5060075461025090640100000000900460ff1681565b3480156104fc57600080fd5b5061029561050b3660046125cb565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205490565b34801561054257600080fd5b506101d66105513660046124c1565b61110c565b34801561056257600080fd5b506007546102509060ff1681565b34801561057c57600080fd5b506101d661058b366004612469565b611154565b34801561059c57600080fd5b506101d66111ec565b3480156105b157600080fd5b506101d6611220565b3480156105c657600080fd5b506101d66105d5366004612469565b611297565b3480156105e657600080fd5b506101d6611367565b3480156105fb57600080fd5b506101d661060a366004612486565b6113fb565b600061061c33848461148a565b5060015b92915050565b6000546001600160a01b031633146106595760405162461bcd60e51b815260040161065090612604565b60405180910390fd5b6106656012600a612733565b6106729062989680612742565b8110156106e75760405162461bcd60e51b815260206004820152603860248201527f53776170207468726573686f6c642063616e6e6f74206265206c6f776572207460448201527f68616e20302e3030312520746f74616c20737570706c792e00000000000000006064820152608401610650565b6106f36012600a612733565b6107029064012a05f200612742565b8111156107775760405162461bcd60e51b815260206004820152603760248201527f53776170207468726573686f6c642063616e6e6f74206265206869676865722060448201527f7468616e20302e352520746f74616c20737570706c792e0000000000000000006064820152608401610650565b601655565b600061078a6012600a612733565b6107999064e8d4a51000612742565b905090565b6000546001600160a01b031633146107c85760405162461bcd60e51b815260040161065090612604565b6107d46012600a612733565b6107e2906305f5e100612742565b8310156108495760405162461bcd60e51b815260206004820152602f60248201527f6d61784275792063616e6e6f74206265206c6f776572207468616e20302e303160448201526e12903a37ba30b61039bab838363c9760891b6064820152608401610650565b6108556012600a612733565b610863906305f5e100612742565b8210156108cb5760405162461bcd60e51b815260206004820152603060248201527f6d617853656c6c2063616e6e6f74206265206c6f776572207468616e20302e3060448201526f1892903a37ba30b61039bab838363c9760811b6064820152608401610650565b6108d76012600a612733565b6108e590633b9aca00612742565b81101561094e5760405162461bcd60e51b815260206004820152603160248201527f6d617857616c6c65742063616e6e6f74206265206c6f776572207468616e2030604482015270171892903a37ba30b61039bab838363c9760791b6064820152608401610650565b600892909255600955600a55565b60006109698484846115af565b6109bb84336109b685604051806060016040528060288152602001612938602891396001600160a01b038a1660009081526004602090815260408083203384529091529020549190611c54565b61148a565b5060019392505050565b6000546001600160a01b031633146109ef5760405162461bcd60e51b815260040161065090612604565b6001600160a01b038116610a455760405162461bcd60e51b815260206004820152601a60248201527f57616c6c657420616464726573732063616e6e6f7420626520300000000000006044820152606401610650565b601880546001600160a01b03908116600090815260056020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b6000546001600160a01b03163314610abf5760405162461bcd60e51b815260040161065090612604565b30600090815260036020526040902054610ad881611c80565b50565b6000546001600160a01b03163314610b055760405162461bcd60e51b815260040161065090612604565b600a610b118284612761565b1115610b5f5760405162461bcd60e51b815260206004820152601e60248201527f4d757374206b6565702073656c6c2074617865732062656c6f772031302500006044820152606401610650565b601091909155601255565b6000546001600160a01b03163314610b945760405162461bcd60e51b815260040161065090612604565b610b9e6000611df7565b565b6000546001600160a01b03163314610bca5760405162461bcd60e51b815260040161065090612604565b600780549115156401000000000264ff0000000019909216919091179055565b6000546001600160a01b03163314610c145760405162461bcd60e51b815260040161065090612604565b60075460ff1615610c675760405162461bcd60e51b815260206004820152601760248201527f74726164696e6720697320616c7265616479206f70656e0000000000000000006044820152606401610650565b600180546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d908117909155610cb03082610ca16012600a612733565b6109b69064e8d4a51000612742565b806001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610cee573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d129190612779565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610d5f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d839190612779565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015610dd0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610df49190612779565b601980546001600160a01b039283166001600160a01b03199091161790556001541663f305d7194730610e3c816001600160a01b031660009081526003602052604090205490565b600080610e516000546001600160a01b031690565b426040518863ffffffff1660e01b8152600401610e7396959493929190612796565b60606040518083038185885af1158015610e91573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610eb691906127d1565b50506007805464ffff000000191664010100000017905550610eda6012600a612733565b610ee9906402540be400612742565b600855610ef86012600a612733565b610f07906402540be400612742565b600955610f166012600a612733565b610f25906404a817c800612742565b600a908155610f3690601290612733565b610f4490631dcd6500612742565b6016556007805460ff1916600190811790915543600b55601954905460405163095ea7b360e01b81526001600160a01b039182166004820152600019602482015291169063095ea7b3906044016020604051808303816000875af1158015610fb0573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610fd491906127ff565b5050565b6000546001600160a01b031633146110025760405162461bcd60e51b815260040161065090612604565b60005b82518110156110695781600560008584815181106110255761102561281c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061106181612832565b915050611005565b505050565b6000546001600160a01b031633146110985760405162461bcd60e51b815260040161065090612604565b60005b82518110156110695781600660008584815181106110bb576110bb61281c565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806110f781612832565b91505061109b565b600061061c3384846115af565b6000546001600160a01b031633146111365760405162461bcd60e51b815260040161065090612604565b6007805491151563010000000263ff00000019909216919091179055565b6000546001600160a01b0316331461117e5760405162461bcd60e51b815260040161065090612604565b6001600160a01b0381166111e35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610650565b610ad881611df7565b6000546001600160a01b031633146112165760405162461bcd60e51b815260040161065090612604565b47610ad881611e47565b6000546001600160a01b0316331461124a5760405162461bcd60e51b815260040161065090612604565b604051600090339047908381818185875af1925050503d806000811461128c576040519150601f19603f3d011682016040523d82523d6000602084013e611291565b606091505b50505050565b6000546001600160a01b031633146112c15760405162461bcd60e51b815260040161065090612604565b6001600160a01b0381166113175760405162461bcd60e51b815260206004820152601a60248201527f57616c6c657420616464726573732063616e6e6f7420626520300000000000006044820152606401610650565b601780546001600160a01b03908116600090815260056020526040808220805460ff1990811690915584546001600160a01b03191695909316948517909355928352912080549091166001179055565b6000546001600160a01b031633146113915760405162461bcd60e51b815260040161065090612604565b61139d6012600a612733565b6113ac9064e8d4a51000612742565b6008556113bb6012600a612733565b6113ca9064e8d4a51000612742565b6009556113d96012600a612733565b6113e89064e8d4a51000612742565b600a556007805464ff0000000019169055565b6000546001600160a01b031633146114255760405162461bcd60e51b815260040161065090612604565b600a6114318284612761565b111561147f5760405162461bcd60e51b815260206004820152601d60248201527f4d757374206b656570206275792074617865732062656c6f77203130250000006044820152606401610650565b600c91909155600e55565b6001600160a01b0383166114ec5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610650565b6001600160a01b03821661154d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610650565b6001600160a01b0383811660008181526004602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166116135760405162461bcd60e51b815260206004820152602560248201527f4572726f723a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610650565b6001600160a01b0382166116755760405162461bcd60e51b815260206004820152602360248201527f4572726f723a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610650565b600081116116de5760405162461bcd60e51b815260206004820152603060248201527f4572726f723a205472616e7366657220616d6f756e74206d757374206265206760448201526f726561746572207468616e207a65726f60801b6064820152608401610650565b6000806116f36000546001600160a01b031690565b6001600160a01b0316856001600160a01b03161415801561172257506000546001600160a01b03858116911614155b801561173657506001600160a01b03841615155b801561174d57506001600160a01b03841661dead14155b80156117615750600754610100900460ff16155b15611b35576001600160a01b03851660009081526006602052604090205460ff161580156117a857506001600160a01b03841660009081526006602052604090205460ff16155b6117b157600080fd5b600754640100000000900460ff16156118c7576001546001600160a01b038581169116148015906117f057506019546001600160a01b03858116911614155b156118c75761180060014361284b565b3260009081526002602052604090205410801561183e575061182360014361284b565b6001600160a01b038516600090815260026020526040902054105b6118a25760405162461bcd60e51b815260206004820152602f60248201527f4572726f723a205472616e736665722064656c617920656e61626c65642e205460448201526e393c9030b3b0b4b7103630ba32b91760891b6064820152608401610650565b3260009081526002602052604080822043908190556001600160a01b03871683529120555b601954600192506001600160a01b0386811691161480156118f657506001546001600160a01b03858116911614155b801561191b57506001600160a01b03841660009081526005602052604090205460ff16155b15611a4e5760075460ff166119425760405162461bcd60e51b815260040161065090612862565b6008548311156119ad5760405162461bcd60e51b815260206004820152603060248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201526f34329036b0bc213abca0b6b7bab73a1760811b6064820152608401610650565b600a54836119d0866001600160a01b031660009081526003602052604090205490565b6119da9190612761565b1115611a4e5760405162461bcd60e51b815260206004820152603960248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201527f6865206d6178696d756d2077616c6c657420616d6f756e742e000000000000006064820152608401610650565b6019546001600160a01b038581169116148015611a7957506001546001600160a01b03868116911614155b8015611a9e57506001600160a01b03851660009081526005602052604090205460ff16155b15611b355760075460ff16611ac55760405162461bcd60e51b815260040161065090612862565b600954831115611b315760405162461bcd60e51b815260206004820152603160248201527f4572726f723a205472616e7366657220616d6f756e742065786365656473207460448201527034329036b0bc29b2b63620b6b7bab73a1760791b6064820152608401610650565b5060015b6001600160a01b03851660009081526005602052604090205460ff1680611b7457506001600160a01b03841660009081526005602052604090205460ff165b15611b7e57600091505b306000908152600360205260408120549050600060165482118015611ba05750825b9050808015611bb857506007546301000000900460ff165b8015611bcc5750600754610100900460ff16155b8015611bf157506001600160a01b03871660009081526005602052604090205460ff16155b8015611c1657506001600160a01b03861660009081526005602052604090205460ff16155b15611c3e576007805461ff001916610100179055611c32611e81565b6007805461ff00191690555b611c4b8787878787612030565b50505050505050565b60008184841115611c785760405162461bcd60e51b8152600401610650919061233d565b505050900390565b6007805462ff00001916620100001790556040805160028082526060820183526000926020830190803683370190505090503081600081518110611cc657611cc661281c565b6001600160a01b03928316602091820292909201810191909152600154604080516315ab88c960e31b81529051919093169263ad5c46489260048083019391928290030181865afa158015611d1f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611d439190612779565b81600181518110611d5657611d5661281c565b6001600160a01b039283166020918202929092010152600154611d7c913091168461148a565b60015460405163791ac94760e01b81526001600160a01b039091169063791ac94790611db59085906000908690309042906004016128a4565b600060405180830381600087803b158015611dcf57600080fd5b505af1158015611de3573d6000803e3d6000fd5b50506007805462ff00001916905550505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6017546040516001600160a01b039091169082156108fc029083906000818181858888f19350505050158015610fd4573d6000803e3d6000fd5b3060009081526003602052604081205490506000601454601554611ea59190612761565b90506000821580611eb4575081155b15611ebe57505050565b601654611ecc906005612742565b831115611ee457601654611ee1906005612742565b92505b600060028360155486611ef79190612742565b611f019190612915565b611f0b9190612915565b90506000611f198583612084565b905047611f2582611c80565b6000611f314783612084565b90506000611f5487611f4e6014548561209790919063ffffffff16565b906120a3565b90506000611f62828461284b565b6000601581905560145590508515801590611f7d5750600081115b15611fd057611f8c86826120af565b601554604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b6017546040516001600160a01b03909116904790600081818185875af1925050503d806000811461201d576040519150601f19603f3d011682016040523d82523d6000602084013e612022565b606091505b505050505050505050505050565b816120425761203d61214a565b612050565b61204d8584836121a5565b92505b61205b858585612263565b8161207d5761207d600d54600c55600f54600e55601154601055601354601255565b5050505050565b6000612090828461284b565b9392505050565b60006120908284612742565b60006120908284612915565b6001546120c79030906001600160a01b03168461148a565b60015460185460405163f305d71960e01b81526001600160a01b039283169263f305d7199285926121079230928992600092839216904290600401612796565b60606040518083038185885af1158015612125573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061207d91906127d1565b600c5415801561215a5750600e54155b80156121665750601054155b80156121725750601254155b1561217957565b600c8054600d55600e8054600f5560108054601155601280546013556000938490559183905582905555565b6000806000806121b485612309565b925084156121c95750506010546012546121d2565b5050600c54600e545b60006121e36064611f4e8987612097565b9050836121f08483612742565b6121fa9190612915565b6014600082825461220b9190612761565b9091555084905061221c8383612742565b6122269190612915565b601560008282546122379190612761565b9091555050801561224d5761224d883083612263565b612257818861284b565b98975050505050505050565b6001600160a01b0383166000908152600360205260409020546122869082612084565b6001600160a01b0380851660009081526003602052604080822093909355908416815220546122b59082612331565b6001600160a01b0380841660008181526003602052604090819020939093559151908516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906115a29085815260200190565b60008115612321576012546010546106209190612761565b600e54600c546106209190612761565b60006120908284612761565b600060208083528351808285015260005b8181101561236a5785810183015185820160400152820161234e565b8181111561237c576000604083870101525b50601f01601f1916929092016040019392505050565b6001600160a01b0381168114610ad857600080fd5b80356123b281612392565b919050565b600080604083850312156123ca57600080fd5b82356123d581612392565b946020939093013593505050565b6000602082840312156123f557600080fd5b5035919050565b60008060006060848603121561241157600080fd5b505081359360208301359350604090920135919050565b60008060006060848603121561243d57600080fd5b833561244881612392565b9250602084013561245881612392565b929592945050506040919091013590565b60006020828403121561247b57600080fd5b813561209081612392565b6000806040838503121561249957600080fd5b50508035926020909101359150565b8015158114610ad857600080fd5b80356123b2816124a8565b6000602082840312156124d357600080fd5b8135612090816124a8565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561250757600080fd5b823567ffffffffffffffff8082111561251f57600080fd5b818501915085601f83011261253357600080fd5b8135602082821115612547576125476124de565b8160051b604051601f19603f8301168101818110868211171561256c5761256c6124de565b60405292835281830193508481018201928984111561258a57600080fd5b948201945b838610156125af576125a0866123a7565b8552948201949382019361258f565b96506125be90508782016124b6565b9450505050509250929050565b600080604083850312156125de57600080fd5b82356125e981612392565b915060208301356125f981612392565b809150509250929050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600181815b8085111561268a57816000190482111561267057612670612639565b8085161561267d57918102915b93841c9390800290612654565b509250929050565b6000826126a157506001610620565b816126ae57506000610620565b81600181146126c457600281146126ce576126ea565b6001915050610620565b60ff8411156126df576126df612639565b50506001821b610620565b5060208310610133831016604e8410600b841016171561270d575081810a610620565b612717838361264f565b806000190482111561272b5761272b612639565b029392505050565b600061209060ff841683612692565b600081600019048311821515161561275c5761275c612639565b500290565b6000821982111561277457612774612639565b500190565b60006020828403121561278b57600080fd5b815161209081612392565b6001600160a01b039687168152602081019590955260408501939093526060840191909152909216608082015260a081019190915260c00190565b6000806000606084860312156127e657600080fd5b8351925060208401519150604084015190509250925092565b60006020828403121561281157600080fd5b8151612090816124a8565b634e487b7160e01b600052603260045260246000fd5b60006001820161284457612844612639565b5060010190565b60008282101561285d5761285d612639565b500390565b60208082526022908201527f4572726f723a2054726164696e67206973206e6f7420616c6c6f7765642079656040820152613a1760f11b606082015260800190565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156128f45784516001600160a01b0316835293830193918301916001016128cf565b50506001600160a01b03969096166060850152505050608001529392505050565b60008261293257634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e6365a2646970667358221220d1a3bcf6d49c96736c303bd02919570fd6ba857cf4c77938abb4d1f05170991c64736f6c634300080e0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000009ef4538e465fdf72615fe9406ccfc6f27c0c04c1000000000000000000000000765aab63180988211e7e90ef778df7d4414f8c6f
-----Decoded View---------------
Arg [0] : mktgWallet (address): 0x9eF4538e465fDF72615Fe9406cCFC6F27c0c04c1
Arg [1] : liqWallet (address): 0x765AAb63180988211E7e90EF778Df7D4414F8c6f
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000009ef4538e465fdf72615fe9406ccfc6f27c0c04c1
Arg [1] : 000000000000000000000000765aab63180988211e7e90ef778df7d4414f8c6f
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.