Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
976,921,584.879731314177751374 DUALITY
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,491,768.316088793234750486 DUALITYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Duality
Compiler Version
v0.8.10+commit.fc410830
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
/** _..oo8"""Y8b.._ .88888888o. "Yb. .d888P""Y8888b "b. o88888 88888) "b d888888b..d8888P 'b 88888888888888" 8 (88DWB8888888P 8) 8888888888P 8 Y88888888P ee .P Y888888( 8888 oP "Y88888b "" oP" "Y8888o._ _.oP" `""Y888boodP""' A simple burn managed defi yield generating protocol. 2% burn on every TX Web: https//:www.dualityeth.com twitter: @dualityeth */ // SPDX-License-Identifier: MIT pragma solidity =0.8.10 >=0.8.10 >=0.8.0 <0.9.0; pragma experimental ABIEncoderV2; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./RewardManager.sol"; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); 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(uint256) external view returns (address pair); function allPairsLength() external view returns (uint256); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint256); function balanceOf(address owner) external view returns (uint256); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 value ) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns ( uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast ); function price0CumulativeLast() external view returns (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn(address to) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns ( uint256 amountA, uint256 amountB, uint256 liquidity ); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract Duality is ERC20, Ownable, RewardManager { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; address public constant deadAddress = address(0xdead); bool private swapping; address public buybackWallet = owner(); uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public enableBlock = 0; // Anti-bot and anti-whale mappings and variables mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public transferDelayEnabled = true; uint256 public buyTotalFees; uint256 public buyBuybackFee; uint256 public buyBurnFee; uint256 public buyLiquidityFee; uint256 public sellTotalFees; uint256 public sellBuybackFee; uint256 public sellBurnFee; uint256 public sellLiquidityFee; uint256 tokensForBuyback; uint256 public tokensForBurn; uint256 public tokensForLiquidity; /******************/ //Combating bots mapping (address => bool) public bots; // exlcude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event buybackWalletUpdated( address indexed newWallet, address indexed oldWallet ); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); constructor() ERC20("DUALITY", "DUALITY") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _buyBurnFee = 2; uint256 _buyBuybackFee = 1; uint256 _buyLiquidityFee = 1; uint256 _sellBurnFee = 2; uint256 _sellBuybackFee = 1; uint256 _sellLiquidityFee = 1; uint256 totalSupply = 1_000_000_000 * 1e18; maxTransactionAmount = 10_000_000 * 1e18; //1% of total supply maxWallet = 30_000_000 * 1e18; //3% of total supply swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% - tokens swapped for buy back buyBurnFee = _buyBurnFee; buyBuybackFee = _buyBuybackFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyBurnFee + buyBuybackFee + buyLiquidityFee; sellBurnFee = _sellBurnFee; sellBuybackFee = _sellBuybackFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = sellBurnFee + sellBuybackFee + sellLiquidityFee; buybackWallet = address(owner()); // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, totalSupply); } receive() external payable {} function enableTrading() external onlyOwner { tradingActive = true; swapEnabled = true; enableBlock = block.number; } // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; return true; } // disable Transfer delay - cannot be reenabled function disableTransferDelay() external onlyOwner returns (bool) { transferDelayEnabled = false; return true; } // change the minimum amount of tokens to sell from fees function updateSwapTokensAtAmount(uint256 newAmount) external onlyOwner returns (bool) { require( newAmount >= (totalSupply() * 1) / 100000, "Swap amount cannot be lower than 0.001% total supply." ); require( newAmount <= (totalSupply() * 5) / 1000, "Swap amount cannot be higher than 0.5% total supply." ); swapTokensAtAmount = newAmount; return true; } function updateMaxWalletAmount(uint256 newNum) external onlyOwner { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } // only use to disable contract sales if absolutely necessary (emergency use only) function updateSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function updateBuyFees( uint256 _burnFee, uint256 _buybackFee, uint256 _buyLiquidityFee ) external onlyOwner { buyBurnFee = _burnFee; buyBuybackFee = _buybackFee; buyLiquidityFee = _buyLiquidityFee; buyTotalFees = buyBurnFee + buyBuybackFee + buyLiquidityFee; require(buyTotalFees <= 10, "Fees must be lower than 10%"); } function updateSellFees( uint256 _burnFee, uint256 _sellbackFee, uint256 _sellLiquidityFee ) external onlyOwner { sellBurnFee = _burnFee; sellBuybackFee = _sellbackFee; sellLiquidityFee = _sellLiquidityFee; sellTotalFees = buyBurnFee + buyBuybackFee + sellLiquidityFee; require(sellTotalFees <= 10, "Fees must be lower than 10%"); } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function setAutomatedMarketMakerPair(address pair, bool value) public onlyOwner { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function updateBuybackWallet(address newBuybackWallet) external onlyOwner { emit buybackWalletUpdated(newBuybackWallet, buybackWallet); buybackWallet = newBuybackWallet; } function isExcludedFromFees(address account) public view returns (bool) { return _isExcludedFromFees[account]; } event BoughtEarly(address indexed sniper); function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0)); require(to != address(0)); if (amount == 0) { super._transfer(from, to, 0); return; } if (bots[from] || bots[to]){ super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch. if (transferDelayEnabled) { if ( to != owner() && to != address(uniswapV2Router) && to != address(uniswapV2Pair) ) { require( _holderLastTransferTimestamp[tx.origin] < block.number, "_transfer:: Transfer Delay enabled. Only one purchase per block allowed." ); _holderLastTransferTimestamp[tx.origin] = block.number; } } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { //on sells if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForBurn += (fees * sellBurnFee) / sellTotalFees; tokensForBuyback += (fees * sellBuybackFee) / sellTotalFees; } //on buys else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForBurn += (fees * buyBurnFee) / buyTotalFees; tokensForBuyback += (fees * buyBuybackFee) / buyTotalFees; } //Add bots if (automatedMarketMakerPairs[from] && enableBlock != 0 && block.number <= enableBlock) { bots[to] = true; } if (fees > 0) { super._transfer(from, address(this), fees); if(tokensForBurn > 0) { _burn(address(this), tokensForBurn); tokensForBurn = 0; } } amount -= fees; } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); // make the swap uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer to cover all possible scenarios _approve(address(this), address(uniswapV2Router), tokenAmount); // add the liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, // slippage is unavoidable 0, // slippage is unavoidable deadAddress, block.timestamp ); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForBuyback; bool success; if (contractBalance == 0 || totalTokensToSwap == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } // Halve the amount of liquidity tokens 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 ethForBuyback = ethBalance.mul(tokensForBuyback).div( totalTokensToSwap ); uint256 ethForLiquidity = ethBalance - ethForBuyback; tokensForLiquidity = 0; tokensForBuyback = 0; (success, ) = address(buybackWallet).call{value: ethForBuyback}(""); if (liquidityTokens > 0 && ethForLiquidity > 0) { addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( amountToSwapForETH, ethForLiquidity, tokensForLiquidity ); } } //Staking funcs function allocateRewardPool(address pool, uint256 amount) internal { require(pool != address(0)); _mint(pool, amount); } function createRewardPool(uint256 amount) public onlyOwner{ require(amount < super.balanceOf(msg.sender)); _rewardPool(amount); _burn(msg.sender, amount); } function distributeRewards(uint256 amount) public onlyOwner{ uint256 amountToWithdraw = _distReward(amount); allocateRewardPool(msg.sender, amountToWithdraw); } function withdrawEthPool() external onlyOwner { bool success; (success,) = address(msg.sender).call{value: address(this).balance}(""); } function getRewardAmount(address user) external view returns(uint256) { return _stakedAmount[user]; } function withdrawStuckTokens(address token) public onlyOwner{ IERC20(token).transfer(owner(), IERC20(token).balanceOf(address(this))); } }
// 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (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 Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _balances[to] += amount; emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// 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 pragma solidity ^0.8.4; contract RewardManager { mapping(address => uint256) _stakedAmount; mapping(address => uint256) _totalStaked; mapping(address => bool) _hasStake; mapping(address => uint256) _stakedSince; address public _rewardAddress = 0x1db2124D6Cf740f3DB9194A13C7b645AD44A96B4; uint256 _rewardRate = 10000; uint256 _availiableRewards; event Staked(address indexed user, uint256 amount, uint256 timestamp); function _rewardPool(uint256 amount) internal{ require(amount > 0); // cannot stake nothing. uint256 timestamp = block.timestamp; if(_stakedAmount[msg.sender] > 0) { _stakedAmount[msg.sender] += amount; } _stakedAmount[msg.sender] = amount; if(msg.sender == _rewardAddress){ _stakedAmount[msg.sender] = amount *= _rewardRate; } _hasStake[msg.sender] = true; _stakedSince[msg.sender] = block.timestamp; emit Staked(msg.sender, amount, timestamp); } function calculateReward(address user) internal view returns(uint256){ return((block.timestamp - _stakedSince[user]) / 1 hours * _stakedAmount[user]) / _rewardRate; } function _distReward(uint256 amount) internal returns(uint256) { require(amount <= _stakedAmount[msg.sender]); uint256 reward = calculateReward(msg.sender); _stakedAmount[msg.sender] -= amount; _stakedSince[msg.sender] = block.timestamp; return amount+reward; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
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":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"Staked","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"buybackWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_rewardAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"bots","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buybackWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"createRewardPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distributeRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getRewardAmount","outputs":[{"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":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellBurnFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellBuybackFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForBurn","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_buybackFee","type":"uint256"},{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newBuybackWallet","type":"address"}],"name":"updateBuybackWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_burnFee","type":"uint256"},{"internalType":"uint256","name":"_sellbackFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawEthPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c0604052600a80546001600160a01b031916731db2124d6cf740f3db9194a13c7b645ad44a96b4179055612710600b55620000436005546001600160a01b031690565b600d80546001600160a01b039290921661010002610100600160a81b03199092169190911790556011805462ffffff1916600190811790915560006012556014805460ff191690911790553480156200009b57600080fd5b506040805180820182526007808252664455414c49545960c81b602080840182815285518087019096529285528401528151919291620000de9160039162000694565b508051620000f490600490602084019062000694565b505050620001116200010b6200040560201b60201c565b62000409565b737a250d5630b4cf539739df2c5dacb4c659f2488d620001338160016200045b565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa1580156200017e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a491906200073a565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200021891906200073a565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000266573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200028c91906200073a565b6001600160a01b031660a0819052620002a79060016200045b565b60a051620002b790600162000490565b6a084595161401484a000000600e556a18d0bf423c03d8de00000060105560026001808281806b033b2e3c9fd0803ce8000000612710620002fa82600562000782565b620003069190620007a4565b600f5560178790556016869055601885905584620003258789620007c7565b620003319190620007c7565b601555601b849055601a839055601c82905581620003508486620007c7565b6200035c9190620007c7565b601955600554600d80546101006001600160a01b03909316928302610100600160a81b031990911617905562000394906001620004e4565b620003a1306001620004e4565b620003b061dead6001620004e4565b620003cf620003c76005546001600160a01b031690565b60016200045b565b620003dc3060016200045b565b620003eb61dead60016200045b565b620003f733826200054d565b50505050505050506200081f565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200046562000636565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b620004ee62000636565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910160405180910390a25050565b6001600160a01b038216620005a95760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620005bd9190620007c7565b90915550506001600160a01b03821660009081526020819052604081208054839290620005ec908490620007c7565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6005546001600160a01b03163314620006925760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620005a0565b565b828054620006a290620007e2565b90600052602060002090601f016020900481019282620006c6576000855562000711565b82601f10620006e157805160ff191683800117855562000711565b8280016001018555821562000711579182015b8281111562000711578251825591602001919060010190620006f4565b506200071f92915062000723565b5090565b5b808211156200071f576000815560010162000724565b6000602082840312156200074d57600080fd5b81516001600160a01b03811681146200076557600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b60008160001904831182151516156200079f576200079f6200076c565b500290565b600082620007c257634e487b7160e01b600052601260045260246000fd5b500490565b60008219821115620007dd57620007dd6200076c565b500190565b600181811c90821680620007f757607f821691505b602082108114156200081957634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a051612d4e6200087d600039600081816105a401528181610e1401526117b90152600081816104650152818161177b0152818161273a015281816127f30152818161282f015281816128a901526129060152612d4e6000f3fe6080604052600436106103855760003560e01c80638da5cb5b116101d1578063c876d0b911610102578063deab8aea116100a0578063f11a24d31161006f578063f11a24d314610a59578063f2fde38b14610a6f578063f637434214610a8f578063f8b45b0514610aa557600080fd5b8063deab8aea146109f3578063e2f4560514610a18578063e71dc3f514610a2e578063e884f26014610a4457600080fd5b8063cfd05e83116100dc578063cfd05e8314610987578063d257b34f1461099d578063d85ba063146109bd578063dd62ed3e146109d357600080fd5b8063c876d0b914610937578063c8c8ebe414610951578063cb9637281461096757600080fd5b8063adb873bd1161016f578063bfd7928411610149578063bfd79284146108a8578063c0246668146108d7578063c17b5b8c146108f7578063c18bc1951461091757600080fd5b8063adb873bd14610843578063b62496f514610859578063bbc0c7421461088957600080fd5b806395d89b41116101ab57806395d89b41146107ce5780639a7a23d6146107e3578063a457c2d714610803578063a9059cbb1461082357600080fd5b80638da5cb5b1461077057806390241a6f1461078e578063924de9b7146107ae57600080fd5b806349bd5a5e116102b65780636fa1570311610254578063751039fc11610223578063751039fc146107065780637571336a1461071b5780638095d5641461073b5780638a8c523c1461075b57600080fd5b80636fa157031461068557806370a08231146106a5578063715018a6146106db57806371a51522146106f057600080fd5b8063540ba55211610290578063540ba5521461061957806359974e381461062f5780636a486a8e1461064f5780636ddd17131461066557600080fd5b806349bd5a5e146105925780634a62bb65146105c65780634fbee193146105e057600080fd5b80631a8145bb1161032357806327c8f835116102fd57806327c8f8351461050a578063313ce56714610520578063395093511461053c57806344a040f51461055c57600080fd5b80631a8145bb146104be5780631d777856146104d457806323b872dd146104ea57600080fd5b80630e3d57eb1161035f5780630e3d57eb1461040e57806310d5de53146104235780631694505e1461045357806318160ddd1461049f57600080fd5b806304dacd501461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004612999565b610abb565b005b3480156103bf57600080fd5b506103c8610b2b565b6040516103d591906129b6565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004612a0b565b610bbd565b60405190151581526020016103d5565b34801561041a57600080fd5b506103b1610bd5565b34801561042f57600080fd5b506103fe61043e366004612999565b60226020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016103d5565b3480156104ab57600080fd5b506002545b6040519081526020016103d5565b3480156104ca57600080fd5b506104b0601f5481565b3480156104e057600080fd5b506104b0601e5481565b3480156104f657600080fd5b506103fe610505366004612a37565b610c2a565b34801561051657600080fd5b5061048761dead81565b34801561052c57600080fd5b50604051601281526020016103d5565b34801561054857600080fd5b506103fe610557366004612a0b565b610c4e565b34801561056857600080fd5b506104b0610577366004612999565b6001600160a01b031660009081526006602052604090205490565b34801561059e57600080fd5b506104877f000000000000000000000000000000000000000000000000000000000000000081565b3480156105d257600080fd5b506011546103fe9060ff1681565b3480156105ec57600080fd5b506103fe6105fb366004612999565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561062557600080fd5b506104b060165481565b34801561063b57600080fd5b506103b161064a366004612a78565b610c70565b34801561065b57600080fd5b506104b060195481565b34801561067157600080fd5b506011546103fe9062010000900460ff1681565b34801561069157600080fd5b506103b16106a0366004612a78565b610c93565b3480156106b157600080fd5b506104b06106c0366004612999565b6001600160a01b031660009081526020819052604090205490565b3480156106e757600080fd5b506103b1610ccc565b3480156106fc57600080fd5b506104b0601a5481565b34801561071257600080fd5b506103fe610ce0565b34801561072757600080fd5b506103b1610736366004612a9f565b610cfa565b34801561074757600080fd5b506103b1610756366004612ad8565b610d2d565b34801561076757600080fd5b506103b1610db8565b34801561077c57600080fd5b506005546001600160a01b0316610487565b34801561079a57600080fd5b50600a54610487906001600160a01b031681565b3480156107ba57600080fd5b506103b16107c9366004612b04565b610dd7565b3480156107da57600080fd5b506103c8610dfb565b3480156107ef57600080fd5b506103b16107fe366004612a9f565b610e0a565b34801561080f57600080fd5b506103fe61081e366004612a0b565b610ec4565b34801561082f57600080fd5b506103fe61083e366004612a0b565b610f3f565b34801561084f57600080fd5b506104b0601b5481565b34801561086557600080fd5b506103fe610874366004612999565b60236020526000908152604090205460ff1681565b34801561089557600080fd5b506011546103fe90610100900460ff1681565b3480156108b457600080fd5b506103fe6108c3366004612999565b602080526000908152604090205460ff1681565b3480156108e357600080fd5b506103b16108f2366004612a9f565b610f4d565b34801561090357600080fd5b506103b1610912366004612ad8565b610fb5565b34801561092357600080fd5b506103b1610932366004612a78565b61103c565b34801561094357600080fd5b506014546103fe9060ff1681565b34801561095d57600080fd5b506104b0600e5481565b34801561097357600080fd5b506103b1610982366004612999565b6110eb565b34801561099357600080fd5b506104b060125481565b3480156109a957600080fd5b506103fe6109b8366004612a78565b6111eb565b3480156109c957600080fd5b506104b060155481565b3480156109df57600080fd5b506104b06109ee366004612b21565b61131a565b3480156109ff57600080fd5b50600d546104879061010090046001600160a01b031681565b348015610a2457600080fd5b506104b0600f5481565b348015610a3a57600080fd5b506104b060175481565b348015610a5057600080fd5b506103fe611345565b348015610a6557600080fd5b506104b060185481565b348015610a7b57600080fd5b506103b1610a8a366004612999565b61135f565b348015610a9b57600080fd5b506104b0601c5481565b348015610ab157600080fd5b506104b060105481565b610ac36113d5565b600d546040516001600160a01b036101009092048216918316907f2a4d8391610d71471dbbe59ddff7a3d253d2ec399b14d78219a7c881351fd8bf90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060038054610b3a90612b4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690612b4f565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b5050505050905090565b600033610bcb81858561142f565b5060019392505050565b610bdd6113d5565b604051600090339047908381818185875af1925050503d8060008114610c1f576040519150601f19603f3d011682016040523d82523d6000602084013e610c24565b606091505b50505050565b600033610c38858285611553565b610c438585856115c7565b506001949350505050565b600033610bcb818585610c61838361131a565b610c6b9190612ba0565b61142f565b610c786113d5565b6000610c8382611e99565b9050610c8f3382611f0c565b5050565b610c9b6113d5565b336000908152602081905260409020548110610cb657600080fd5b610cbf81611f29565b610cc93382612013565b50565b610cd46113d5565b610cde6000612161565b565b6000610cea6113d5565b506011805460ff19169055600190565b610d026113d5565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b610d356113d5565b60178390556016829055601881905580610d4f8385612ba0565b610d599190612ba0565b6015819055600a1015610db35760405162461bcd60e51b815260206004820152601b60248201527f46656573206d757374206265206c6f776572207468616e20313025000000000060448201526064015b60405180910390fd5b505050565b610dc06113d5565b6011805462ffff0019166201010017905543601255565b610ddf6113d5565b60118054911515620100000262ff000019909216919091179055565b606060048054610b3a90612b4f565b610e126113d5565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b03161415610eba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610daa565b610c8f82826121b3565b60003381610ed2828661131a565b905083811015610f325760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610daa565b610c43828686840361142f565b600033610bcb8185856115c7565b610f556113d5565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b610fbd6113d5565b601b839055601a829055601c8190556016546017548291610fdd91612ba0565b610fe79190612ba0565b6019819055600a1015610db35760405162461bcd60e51b815260206004820152601b60248201527f46656573206d757374206265206c6f776572207468616e2031302500000000006044820152606401610daa565b6110446113d5565b670de0b6b3a76400006103e861105960025490565b611064906005612bb8565b61106e9190612bd7565b6110789190612bd7565b8110156110d35760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610daa565b6110e581670de0b6b3a7640000612bb8565b60105550565b6110f36113d5565b806001600160a01b031663a9059cbb6111146005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c9190612bf9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f9190612c12565b60006111f56113d5565b620186a061120260025490565b61120d906001612bb8565b6112179190612bd7565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610daa565b6103e861129060025490565b61129b906005612bb8565b6112a59190612bd7565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610daa565b50600f55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061134f6113d5565b506014805460ff19169055600190565b6113676113d5565b6001600160a01b0381166113cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610daa565b610cc981612161565b6005546001600160a01b03163314610cde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610daa565b6001600160a01b0383166114915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610daa565b6001600160a01b0382166114f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610daa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061155f848461131a565b90506000198114610c2457818110156115ba5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610daa565b610c24848484840361142f565b6001600160a01b0383166115da57600080fd5b6001600160a01b0382166115ed57600080fd5b806115fe57610db383836000612207565b6001600160a01b038316600090815260208052604090205460ff168061163b57506001600160a01b038216600090815260208052604090205460ff165b1561164c57610db383836000612207565b60115460ff1615611b02576005546001600160a01b0384811691161480159061168357506005546001600160a01b03838116911614155b801561169757506001600160a01b03821615155b80156116ae57506001600160a01b03821661dead14155b80156116bd5750600d5460ff16155b15611b0257601154610100900460ff16611755576001600160a01b03831660009081526021602052604090205460ff168061171057506001600160a01b03821660009081526021602052604090205460ff165b6117555760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610daa565b60145460ff161561189c576005546001600160a01b038381169116148015906117b057507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b80156117ee57507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031614155b1561189c573260009081526013602052604090205443116118895760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610daa565b3260009081526013602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff1680156118dd57506001600160a01b03821660009081526022602052604090205460ff16155b156119c157600e548111156119525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610daa565b6010546001600160a01b0383166000908152602081905260409020546119789083612ba0565b11156119bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610daa565b611b02565b6001600160a01b03821660009081526023602052604090205460ff168015611a0257506001600160a01b03831660009081526022602052604090205460ff16155b15611a7857600e548111156119bc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610daa565b6001600160a01b03821660009081526022602052604090205460ff16611b02576010546001600160a01b038316600090815260208190526040902054611abe9083612ba0565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610daa565b30600090815260208190526040902054600f5481108015908190611b2e575060115462010000900460ff165b8015611b3d5750600d5460ff16155b8015611b6257506001600160a01b03851660009081526023602052604090205460ff16155b8015611b8757506001600160a01b03851660009081526021602052604090205460ff16155b8015611bac57506001600160a01b03841660009081526021602052604090205460ff16155b15611bd157600d805460ff19166001179055611bc66123d5565b600d805460ff191690555b600d546001600160a01b03861660009081526021602052604090205460ff91821615911680611c1857506001600160a01b03851660009081526021602052604090205460ff165b15611c21575060005b60008115611e85576001600160a01b03861660009081526023602052604090205460ff168015611c5357506000601954115b15611d1157611c786064611c726019548861258490919063ffffffff16565b90612590565b9050601954601c5482611c8b9190612bb8565b611c959190612bd7565b601f6000828254611ca69190612ba0565b9091555050601954601b54611cbb9083612bb8565b611cc59190612bd7565b601e6000828254611cd69190612ba0565b9091555050601954601a54611ceb9083612bb8565b611cf59190612bd7565b601d6000828254611d069190612ba0565b90915550611dee9050565b6001600160a01b03871660009081526023602052604090205460ff168015611d3b57506000601554115b15611dee57611d5a6064611c726015548861258490919063ffffffff16565b905060155460185482611d6d9190612bb8565b611d779190612bd7565b601f6000828254611d889190612ba0565b9091555050601554601754611d9d9083612bb8565b611da79190612bd7565b601e6000828254611db89190612ba0565b9091555050601554601654611dcd9083612bb8565b611dd79190612bd7565b601d6000828254611de89190612ba0565b90915550505b6001600160a01b03871660009081526023602052604090205460ff168015611e17575060125415155b8015611e2557506012544311155b15611e4d576001600160a01b03861660009081526020805260409020805460ff191660011790555b8015611e7857611e5e873083612207565b601e5415611e7857611e7230601e54612013565b6000601e555b611e828186612c2f565b94505b611e90878787612207565b50505050505050565b33600090815260066020526040812054821115611eb557600080fd5b6000611ec03361259c565b33600090815260066020526040812080549293508592909190611ee4908490612c2f565b9091555050336000908152600960205260409020429055611f058184612ba0565b9392505050565b6001600160a01b038216611f1f57600080fd5b610c8f82826125f8565b60008111611f3657600080fd5b33600090815260066020526040902054429015611f72573360009081526006602052604081208054849290611f6c908490612ba0565b90915550505b336000818152600660205260409020839055600a546001600160a01b03161415611fb857600b54611fa39083612bb8565b33600090815260066020526040902081905591505b336000818152600860209081526040808320805460ff19166001179055600982529182902042905581518581529081018490527f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee909101610fa9565b6001600160a01b0382166120735760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610daa565b6001600160a01b038216600090815260208190526040902054818110156120e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610daa565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612116908490612c2f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661226b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610daa565b6001600160a01b0382166122cd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610daa565b6001600160a01b038316600090815260208190526040902054818110156123455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610daa565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061237c908490612ba0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123c891815260200190565b60405180910390a3610c24565b3060009081526020819052604081205490506000601d54601f546123f99190612ba0565b90506000821580612408575081155b1561241257505050565b600f54612420906014612bb8565b83111561243857600f54612435906014612bb8565b92505b6000600283601f548661244b9190612bb8565b6124559190612bd7565b61245f9190612bd7565b9050600061246d85836126d7565b905047612479826126e3565b600061248547836126d7565b905060006124a287611c72601d548561258490919063ffffffff16565b905060006124b08284612c2f565b6000601f819055601d819055600d5460405192935061010090046001600160a01b031691849181818185875af1925050503d806000811461250d576040519150601f19603f3d011682016040523d82523d6000602084013e612512565b606091505b509097505085158015906125265750600081115b156125795761253586826128a3565b601f54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6000611f058284612bb8565b6000611f058284612bd7565b600b546001600160a01b0382166000908152600660209081526040808320546009909252822054919291610e10906125d49042612c2f565b6125de9190612bd7565b6125e89190612bb8565b6125f29190612bd7565b92915050565b6001600160a01b03821661264e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610daa565b80600260008282546126609190612ba0565b90915550506001600160a01b0382166000908152602081905260408120805483929061268d908490612ba0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611f058284612c2f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061271857612718612c46565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ba9190612c5c565b816001815181106127cd576127cd612c46565b60200260200101906001600160a01b031690816001600160a01b031681525050612818307f00000000000000000000000000000000000000000000000000000000000000008461142f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061286d908590600090869030904290600401612c79565b600060405180830381600087803b15801561288757600080fd5b505af115801561289b573d6000803e3d6000fd5b505050505050565b6128ce307f00000000000000000000000000000000000000000000000000000000000000008461142f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612958573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061297d9190612cea565b5050505050565b6001600160a01b0381168114610cc957600080fd5b6000602082840312156129ab57600080fd5b8135611f0581612984565b600060208083528351808285015260005b818110156129e3578581018301518582016040015282016129c7565b818111156129f5576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612a1e57600080fd5b8235612a2981612984565b946020939093013593505050565b600080600060608486031215612a4c57600080fd5b8335612a5781612984565b92506020840135612a6781612984565b929592945050506040919091013590565b600060208284031215612a8a57600080fd5b5035919050565b8015158114610cc957600080fd5b60008060408385031215612ab257600080fd5b8235612abd81612984565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b1657600080fd5b8135611f0581612a91565b60008060408385031215612b3457600080fd5b8235612b3f81612984565b91506020830135612acd81612984565b600181811c90821680612b6357607f821691505b60208210811415612b8457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612bb357612bb3612b8a565b500190565b6000816000190483118215151615612bd257612bd2612b8a565b500290565b600082612bf457634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612c0b57600080fd5b5051919050565b600060208284031215612c2457600080fd5b8151611f0581612a91565b600082821015612c4157612c41612b8a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c6e57600080fd5b8151611f0581612984565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cc95784516001600160a01b031683529383019391830191600101612ca4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612cff57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cefb1df771b2cb8de51044183268af6c59b00f7f3eda71149218902f7acddb0964736f6c634300080a0033
Deployed Bytecode
0x6080604052600436106103855760003560e01c80638da5cb5b116101d1578063c876d0b911610102578063deab8aea116100a0578063f11a24d31161006f578063f11a24d314610a59578063f2fde38b14610a6f578063f637434214610a8f578063f8b45b0514610aa557600080fd5b8063deab8aea146109f3578063e2f4560514610a18578063e71dc3f514610a2e578063e884f26014610a4457600080fd5b8063cfd05e83116100dc578063cfd05e8314610987578063d257b34f1461099d578063d85ba063146109bd578063dd62ed3e146109d357600080fd5b8063c876d0b914610937578063c8c8ebe414610951578063cb9637281461096757600080fd5b8063adb873bd1161016f578063bfd7928411610149578063bfd79284146108a8578063c0246668146108d7578063c17b5b8c146108f7578063c18bc1951461091757600080fd5b8063adb873bd14610843578063b62496f514610859578063bbc0c7421461088957600080fd5b806395d89b41116101ab57806395d89b41146107ce5780639a7a23d6146107e3578063a457c2d714610803578063a9059cbb1461082357600080fd5b80638da5cb5b1461077057806390241a6f1461078e578063924de9b7146107ae57600080fd5b806349bd5a5e116102b65780636fa1570311610254578063751039fc11610223578063751039fc146107065780637571336a1461071b5780638095d5641461073b5780638a8c523c1461075b57600080fd5b80636fa157031461068557806370a08231146106a5578063715018a6146106db57806371a51522146106f057600080fd5b8063540ba55211610290578063540ba5521461061957806359974e381461062f5780636a486a8e1461064f5780636ddd17131461066557600080fd5b806349bd5a5e146105925780634a62bb65146105c65780634fbee193146105e057600080fd5b80631a8145bb1161032357806327c8f835116102fd57806327c8f8351461050a578063313ce56714610520578063395093511461053c57806344a040f51461055c57600080fd5b80631a8145bb146104be5780631d777856146104d457806323b872dd146104ea57600080fd5b80630e3d57eb1161035f5780630e3d57eb1461040e57806310d5de53146104235780631694505e1461045357806318160ddd1461049f57600080fd5b806304dacd501461039157806306fdde03146103b3578063095ea7b3146103de57600080fd5b3661038c57005b600080fd5b34801561039d57600080fd5b506103b16103ac366004612999565b610abb565b005b3480156103bf57600080fd5b506103c8610b2b565b6040516103d591906129b6565b60405180910390f35b3480156103ea57600080fd5b506103fe6103f9366004612a0b565b610bbd565b60405190151581526020016103d5565b34801561041a57600080fd5b506103b1610bd5565b34801561042f57600080fd5b506103fe61043e366004612999565b60226020526000908152604090205460ff1681565b34801561045f57600080fd5b506104877f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b0390911681526020016103d5565b3480156104ab57600080fd5b506002545b6040519081526020016103d5565b3480156104ca57600080fd5b506104b0601f5481565b3480156104e057600080fd5b506104b0601e5481565b3480156104f657600080fd5b506103fe610505366004612a37565b610c2a565b34801561051657600080fd5b5061048761dead81565b34801561052c57600080fd5b50604051601281526020016103d5565b34801561054857600080fd5b506103fe610557366004612a0b565b610c4e565b34801561056857600080fd5b506104b0610577366004612999565b6001600160a01b031660009081526006602052604090205490565b34801561059e57600080fd5b506104877f000000000000000000000000d8ce5a80a994b761711914da2d9a54408043d3b281565b3480156105d257600080fd5b506011546103fe9060ff1681565b3480156105ec57600080fd5b506103fe6105fb366004612999565b6001600160a01b031660009081526021602052604090205460ff1690565b34801561062557600080fd5b506104b060165481565b34801561063b57600080fd5b506103b161064a366004612a78565b610c70565b34801561065b57600080fd5b506104b060195481565b34801561067157600080fd5b506011546103fe9062010000900460ff1681565b34801561069157600080fd5b506103b16106a0366004612a78565b610c93565b3480156106b157600080fd5b506104b06106c0366004612999565b6001600160a01b031660009081526020819052604090205490565b3480156106e757600080fd5b506103b1610ccc565b3480156106fc57600080fd5b506104b0601a5481565b34801561071257600080fd5b506103fe610ce0565b34801561072757600080fd5b506103b1610736366004612a9f565b610cfa565b34801561074757600080fd5b506103b1610756366004612ad8565b610d2d565b34801561076757600080fd5b506103b1610db8565b34801561077c57600080fd5b506005546001600160a01b0316610487565b34801561079a57600080fd5b50600a54610487906001600160a01b031681565b3480156107ba57600080fd5b506103b16107c9366004612b04565b610dd7565b3480156107da57600080fd5b506103c8610dfb565b3480156107ef57600080fd5b506103b16107fe366004612a9f565b610e0a565b34801561080f57600080fd5b506103fe61081e366004612a0b565b610ec4565b34801561082f57600080fd5b506103fe61083e366004612a0b565b610f3f565b34801561084f57600080fd5b506104b0601b5481565b34801561086557600080fd5b506103fe610874366004612999565b60236020526000908152604090205460ff1681565b34801561089557600080fd5b506011546103fe90610100900460ff1681565b3480156108b457600080fd5b506103fe6108c3366004612999565b602080526000908152604090205460ff1681565b3480156108e357600080fd5b506103b16108f2366004612a9f565b610f4d565b34801561090357600080fd5b506103b1610912366004612ad8565b610fb5565b34801561092357600080fd5b506103b1610932366004612a78565b61103c565b34801561094357600080fd5b506014546103fe9060ff1681565b34801561095d57600080fd5b506104b0600e5481565b34801561097357600080fd5b506103b1610982366004612999565b6110eb565b34801561099357600080fd5b506104b060125481565b3480156109a957600080fd5b506103fe6109b8366004612a78565b6111eb565b3480156109c957600080fd5b506104b060155481565b3480156109df57600080fd5b506104b06109ee366004612b21565b61131a565b3480156109ff57600080fd5b50600d546104879061010090046001600160a01b031681565b348015610a2457600080fd5b506104b0600f5481565b348015610a3a57600080fd5b506104b060175481565b348015610a5057600080fd5b506103fe611345565b348015610a6557600080fd5b506104b060185481565b348015610a7b57600080fd5b506103b1610a8a366004612999565b61135f565b348015610a9b57600080fd5b506104b0601c5481565b348015610ab157600080fd5b506104b060105481565b610ac36113d5565b600d546040516001600160a01b036101009092048216918316907f2a4d8391610d71471dbbe59ddff7a3d253d2ec399b14d78219a7c881351fd8bf90600090a3600d80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b606060038054610b3a90612b4f565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6690612b4f565b8015610bb35780601f10610b8857610100808354040283529160200191610bb3565b820191906000526020600020905b815481529060010190602001808311610b9657829003601f168201915b5050505050905090565b600033610bcb81858561142f565b5060019392505050565b610bdd6113d5565b604051600090339047908381818185875af1925050503d8060008114610c1f576040519150601f19603f3d011682016040523d82523d6000602084013e610c24565b606091505b50505050565b600033610c38858285611553565b610c438585856115c7565b506001949350505050565b600033610bcb818585610c61838361131a565b610c6b9190612ba0565b61142f565b610c786113d5565b6000610c8382611e99565b9050610c8f3382611f0c565b5050565b610c9b6113d5565b336000908152602081905260409020548110610cb657600080fd5b610cbf81611f29565b610cc93382612013565b50565b610cd46113d5565b610cde6000612161565b565b6000610cea6113d5565b506011805460ff19169055600190565b610d026113d5565b6001600160a01b03919091166000908152602260205260409020805460ff1916911515919091179055565b610d356113d5565b60178390556016829055601881905580610d4f8385612ba0565b610d599190612ba0565b6015819055600a1015610db35760405162461bcd60e51b815260206004820152601b60248201527f46656573206d757374206265206c6f776572207468616e20313025000000000060448201526064015b60405180910390fd5b505050565b610dc06113d5565b6011805462ffff0019166201010017905543601255565b610ddf6113d5565b60118054911515620100000262ff000019909216919091179055565b606060048054610b3a90612b4f565b610e126113d5565b7f000000000000000000000000d8ce5a80a994b761711914da2d9a54408043d3b26001600160a01b0316826001600160a01b03161415610eba5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610daa565b610c8f82826121b3565b60003381610ed2828661131a565b905083811015610f325760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610daa565b610c43828686840361142f565b600033610bcb8185856115c7565b610f556113d5565b6001600160a01b038216600081815260216020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b610fbd6113d5565b601b839055601a829055601c8190556016546017548291610fdd91612ba0565b610fe79190612ba0565b6019819055600a1015610db35760405162461bcd60e51b815260206004820152601b60248201527f46656573206d757374206265206c6f776572207468616e2031302500000000006044820152606401610daa565b6110446113d5565b670de0b6b3a76400006103e861105960025490565b611064906005612bb8565b61106e9190612bd7565b6110789190612bd7565b8110156110d35760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610daa565b6110e581670de0b6b3a7640000612bb8565b60105550565b6110f36113d5565b806001600160a01b031663a9059cbb6111146005546001600160a01b031690565b6040516370a0823160e01b81523060048201526001600160a01b038516906370a0823190602401602060405180830381865afa158015611158573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061117c9190612bf9565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156111c7573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c8f9190612c12565b60006111f56113d5565b620186a061120260025490565b61120d906001612bb8565b6112179190612bd7565b8210156112845760405162461bcd60e51b815260206004820152603560248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60448201527410181718181892903a37ba30b61039bab838363c9760591b6064820152608401610daa565b6103e861129060025490565b61129b906005612bb8565b6112a59190612bd7565b8211156113115760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f742062652068696768657220746861604482015273371018171a92903a37ba30b61039bab838363c9760611b6064820152608401610daa565b50600f55600190565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b600061134f6113d5565b506014805460ff19169055600190565b6113676113d5565b6001600160a01b0381166113cc5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610daa565b610cc981612161565b6005546001600160a01b03163314610cde5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610daa565b6001600160a01b0383166114915760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610daa565b6001600160a01b0382166114f25760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610daa565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b600061155f848461131a565b90506000198114610c2457818110156115ba5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610daa565b610c24848484840361142f565b6001600160a01b0383166115da57600080fd5b6001600160a01b0382166115ed57600080fd5b806115fe57610db383836000612207565b6001600160a01b038316600090815260208052604090205460ff168061163b57506001600160a01b038216600090815260208052604090205460ff165b1561164c57610db383836000612207565b60115460ff1615611b02576005546001600160a01b0384811691161480159061168357506005546001600160a01b03838116911614155b801561169757506001600160a01b03821615155b80156116ae57506001600160a01b03821661dead14155b80156116bd5750600d5460ff16155b15611b0257601154610100900460ff16611755576001600160a01b03831660009081526021602052604090205460ff168061171057506001600160a01b03821660009081526021602052604090205460ff165b6117555760405162461bcd60e51b81526020600482015260166024820152752a3930b234b7339034b9903737ba1030b1ba34bb329760511b6044820152606401610daa565b60145460ff161561189c576005546001600160a01b038381169116148015906117b057507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b0316826001600160a01b031614155b80156117ee57507f000000000000000000000000d8ce5a80a994b761711914da2d9a54408043d3b26001600160a01b0316826001600160a01b031614155b1561189c573260009081526013602052604090205443116118895760405162461bcd60e51b815260206004820152604960248201527f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60448201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b6064820152681030b63637bbb2b21760b91b608482015260a401610daa565b3260009081526013602052604090204390555b6001600160a01b03831660009081526023602052604090205460ff1680156118dd57506001600160a01b03821660009081526022602052604090205460ff16155b156119c157600e548111156119525760405162461bcd60e51b815260206004820152603560248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201527436b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760591b6064820152608401610daa565b6010546001600160a01b0383166000908152602081905260409020546119789083612ba0565b11156119bc5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610daa565b611b02565b6001600160a01b03821660009081526023602052604090205460ff168015611a0257506001600160a01b03831660009081526022602052604090205460ff16155b15611a7857600e548111156119bc5760405162461bcd60e51b815260206004820152603660248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152751036b0bc2a3930b739b0b1ba34b7b720b6b7bab73a1760511b6064820152608401610daa565b6001600160a01b03821660009081526022602052604090205460ff16611b02576010546001600160a01b038316600090815260208190526040902054611abe9083612ba0565b1115611b025760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610daa565b30600090815260208190526040902054600f5481108015908190611b2e575060115462010000900460ff165b8015611b3d5750600d5460ff16155b8015611b6257506001600160a01b03851660009081526023602052604090205460ff16155b8015611b8757506001600160a01b03851660009081526021602052604090205460ff16155b8015611bac57506001600160a01b03841660009081526021602052604090205460ff16155b15611bd157600d805460ff19166001179055611bc66123d5565b600d805460ff191690555b600d546001600160a01b03861660009081526021602052604090205460ff91821615911680611c1857506001600160a01b03851660009081526021602052604090205460ff165b15611c21575060005b60008115611e85576001600160a01b03861660009081526023602052604090205460ff168015611c5357506000601954115b15611d1157611c786064611c726019548861258490919063ffffffff16565b90612590565b9050601954601c5482611c8b9190612bb8565b611c959190612bd7565b601f6000828254611ca69190612ba0565b9091555050601954601b54611cbb9083612bb8565b611cc59190612bd7565b601e6000828254611cd69190612ba0565b9091555050601954601a54611ceb9083612bb8565b611cf59190612bd7565b601d6000828254611d069190612ba0565b90915550611dee9050565b6001600160a01b03871660009081526023602052604090205460ff168015611d3b57506000601554115b15611dee57611d5a6064611c726015548861258490919063ffffffff16565b905060155460185482611d6d9190612bb8565b611d779190612bd7565b601f6000828254611d889190612ba0565b9091555050601554601754611d9d9083612bb8565b611da79190612bd7565b601e6000828254611db89190612ba0565b9091555050601554601654611dcd9083612bb8565b611dd79190612bd7565b601d6000828254611de89190612ba0565b90915550505b6001600160a01b03871660009081526023602052604090205460ff168015611e17575060125415155b8015611e2557506012544311155b15611e4d576001600160a01b03861660009081526020805260409020805460ff191660011790555b8015611e7857611e5e873083612207565b601e5415611e7857611e7230601e54612013565b6000601e555b611e828186612c2f565b94505b611e90878787612207565b50505050505050565b33600090815260066020526040812054821115611eb557600080fd5b6000611ec03361259c565b33600090815260066020526040812080549293508592909190611ee4908490612c2f565b9091555050336000908152600960205260409020429055611f058184612ba0565b9392505050565b6001600160a01b038216611f1f57600080fd5b610c8f82826125f8565b60008111611f3657600080fd5b33600090815260066020526040902054429015611f72573360009081526006602052604081208054849290611f6c908490612ba0565b90915550505b336000818152600660205260409020839055600a546001600160a01b03161415611fb857600b54611fa39083612bb8565b33600090815260066020526040902081905591505b336000818152600860209081526040808320805460ff19166001179055600982529182902042905581518581529081018490527f1449c6dd7851abc30abf37f57715f492010519147cc2652fbc38202c18a6ee909101610fa9565b6001600160a01b0382166120735760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610daa565b6001600160a01b038216600090815260208190526040902054818110156120e75760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b6064820152608401610daa565b6001600160a01b0383166000908152602081905260408120838303905560028054849290612116908490612c2f565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260236020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b03831661226b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610daa565b6001600160a01b0382166122cd5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610daa565b6001600160a01b038316600090815260208190526040902054818110156123455760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610daa565b6001600160a01b0380851660009081526020819052604080822085850390559185168152908120805484929061237c908490612ba0565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516123c891815260200190565b60405180910390a3610c24565b3060009081526020819052604081205490506000601d54601f546123f99190612ba0565b90506000821580612408575081155b1561241257505050565b600f54612420906014612bb8565b83111561243857600f54612435906014612bb8565b92505b6000600283601f548661244b9190612bb8565b6124559190612bd7565b61245f9190612bd7565b9050600061246d85836126d7565b905047612479826126e3565b600061248547836126d7565b905060006124a287611c72601d548561258490919063ffffffff16565b905060006124b08284612c2f565b6000601f819055601d819055600d5460405192935061010090046001600160a01b031691849181818185875af1925050503d806000811461250d576040519150601f19603f3d011682016040523d82523d6000602084013e612512565b606091505b509097505085158015906125265750600081115b156125795761253586826128a3565b601f54604080518781526020810184905280820192909252517f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5619181900360600190a15b505050505050505050565b6000611f058284612bb8565b6000611f058284612bd7565b600b546001600160a01b0382166000908152600660209081526040808320546009909252822054919291610e10906125d49042612c2f565b6125de9190612bd7565b6125e89190612bb8565b6125f29190612bd7565b92915050565b6001600160a01b03821661264e5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610daa565b80600260008282546126609190612ba0565b90915550506001600160a01b0382166000908152602081905260408120805483929061268d908490612ba0565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b6000611f058284612c2f565b604080516002808252606082018352600092602083019080368337019050509050308160008151811061271857612718612c46565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612796573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127ba9190612c5c565b816001815181106127cd576127cd612c46565b60200260200101906001600160a01b031690816001600160a01b031681525050612818307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461142f565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061286d908590600090869030904290600401612c79565b600060405180830381600087803b15801561288757600080fd5b505af115801561289b573d6000803e3d6000fd5b505050505050565b6128ce307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461142f565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015261dead60848201524260a48201527f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b03169063f305d71990839060c40160606040518083038185885af1158015612958573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061297d9190612cea565b5050505050565b6001600160a01b0381168114610cc957600080fd5b6000602082840312156129ab57600080fd5b8135611f0581612984565b600060208083528351808285015260005b818110156129e3578581018301518582016040015282016129c7565b818111156129f5576000604083870101525b50601f01601f1916929092016040019392505050565b60008060408385031215612a1e57600080fd5b8235612a2981612984565b946020939093013593505050565b600080600060608486031215612a4c57600080fd5b8335612a5781612984565b92506020840135612a6781612984565b929592945050506040919091013590565b600060208284031215612a8a57600080fd5b5035919050565b8015158114610cc957600080fd5b60008060408385031215612ab257600080fd5b8235612abd81612984565b91506020830135612acd81612a91565b809150509250929050565b600080600060608486031215612aed57600080fd5b505081359360208301359350604090920135919050565b600060208284031215612b1657600080fd5b8135611f0581612a91565b60008060408385031215612b3457600080fd5b8235612b3f81612984565b91506020830135612acd81612984565b600181811c90821680612b6357607f821691505b60208210811415612b8457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115612bb357612bb3612b8a565b500190565b6000816000190483118215151615612bd257612bd2612b8a565b500290565b600082612bf457634e487b7160e01b600052601260045260246000fd5b500490565b600060208284031215612c0b57600080fd5b5051919050565b600060208284031215612c2457600080fd5b8151611f0581612a91565b600082821015612c4157612c41612b8a565b500390565b634e487b7160e01b600052603260045260246000fd5b600060208284031215612c6e57600080fd5b8151611f0581612984565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015612cc95784516001600160a01b031683529383019391830191600101612ca4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215612cff57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220cefb1df771b2cb8de51044183268af6c59b00f7f3eda71149218902f7acddb0964736f6c634300080a0033
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.