ERC-20
Overview
Max Total Supply
10,000,000 AZK
Holders
753
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AnonZK
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/token/ERC20/ERC20.sol"; import "https://github.com/OpenZeppelin/openzeppelin-contracts/blob/master/contracts/access/Ownable.sol"; /** Website: https://anonzk.io/ Twitter: https://twitter.com/AnonAZK Telegram: https://t.me/AnonZKPortal Docs: https://docs.anonzk.io/ ▄████████ ███▄▄▄▄ ▄██████▄ ███▄▄▄▄ ▄███████▄ ▄█ ▄█▄ ███ ███ ███▀▀▀██▄ ███ ███ ███▀▀▀██▄ ██▀ ▄██ ███ ▄███▀ ███ ███ ███ ███ ███ ███ ███ ███ ▄███▀ ███▐██▀ ███ ███ ███ ███ ███ ███ ███ ███ ▀█▀▄███▀▄▄ ▄█████▀ ▀███████████ ███ ███ ███ ███ ███ ███ ▄███▀ ▀ ▀▀█████▄ ███ ███ ███ ███ ███ ███ ███ ███ ▄███▀ ███▐██▄ ███ ███ ███ ███ ███ ███ ███ ███ ███▄ ▄█ ███ ▀███▄ ███ █▀ ▀█ █▀ ▀██████▀ ▀█ █▀ ▀████████▀ ███ ▀█▀ ▀ */ interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } interface IWETH { function balanceOf(address account) external view returns (uint256); function approve(address guy, uint wad) external returns (bool); } contract AnonZK is ERC20, Ownable { // events event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool excluded); event ExcludeFromMaxTransaction(address indexed account, bool excluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); // errors error ErrMintDisabled(); error ErrERC20FromZero(); error ErrERC20ToZero(); error ErrTradingNotActive(); error ErrBuyTransferExceedsMaxTransactionAmount(); error ErrBuyExceedsMaxWallet(); error ErrSellTransferExceedsMaxTransactionAmount(); error ErrMaxWallet(); error ErrMigrateDisabled(); error ErrTotalSupplyExceeded(); error ErrFeeTooHigh(); error ErrSwapAmountTooLow(); error ErrSwapAmountTooHigh(); error ErrPairCannotBeRemoved(); // constants uint256 public constant maxSupply = 10 * 1e6 ether; address constant devWallet = 0xC8aFc08747213Da2Ab68373E5B261dd304390270; IUniswapV2Router02 public constant uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); address public immutable uniswapV2Pair; address private constant burnAddress = address(0xdead); // states bool public tradingEnabled = false; bool public swapEnabled = false; bool public limitsEnabled = true; uint256 public maxTransactionAmount; uint256 public maxWallet; uint256 public swapTokensAtAmount; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForLiquidity; uint256 public tokensForDev; bool private isSwapping; // - exclude from fees and max transaction amount mapping(address => bool) public 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; // constructor constructor() ERC20("AnonZK", unicode"AZK") { // create uniswap pair address _uniswapPair = IUniswapV2Factory(uniswapV2Router.factory()) .createPair(address(this), uniswapV2Router.WETH()); uniswapV2Pair = _uniswapPair; // initialize states maxTransactionAmount = 2 * 1e5 ether; // 2% from total supply maxTransactionAmountTxn maxWallet = 2 * 1e5 ether; // 2% from total supply maxWallet swapTokensAtAmount = maxSupply / 1000; // 0.1% swap wallet buyLiquidityFee = 2; buyDevFee = 3; sellLiquidityFee = 10; sellDevFee = 10; // exclude from paying fees or having max transaction amount excludeFromFees(msg.sender, true); excludeFromFees(address(this), true); excludeFromFees(burnAddress, true); excludeFromMaxTransaction(address(uniswapV2Router), true); excludeFromMaxTransaction(address(_uniswapPair), true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(burnAddress, true); // set amm pair _setAutomatedMarketMakerPair(address(_uniswapPair), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(msg.sender, maxSupply); } // receive receive() external payable {} // transfer function _transfer( address from, address to, uint256 amount ) internal override { if (from == address(0)) { revert ErrERC20FromZero(); } if (to == address(0)) { revert ErrERC20ToZero(); } // zero amount if (amount == 0) { super._transfer(from, to, 0); return; } bool isBuying = automatedMarketMakerPairs[from] && !isExcludedMaxTransactionAmount[to]; bool isSelling = automatedMarketMakerPairs[to] && !isExcludedMaxTransactionAmount[from]; bool isOwner = from == owner() || to == owner(); bool isBurning = to == burnAddress; // check limits if (limitsEnabled && !isSwapping && !isOwner && !isBurning) { if (!tradingEnabled) { if (!isExcludedFromFees[from] && !isExcludedFromFees[to]) { revert ErrTradingNotActive(); } } if (isBuying) { if (amount > maxTransactionAmount) { revert ErrBuyTransferExceedsMaxTransactionAmount(); } if (amount + balanceOf(to) > maxWallet) { revert ErrBuyExceedsMaxWallet(); } } else if (isSelling) { if (amount > maxTransactionAmount) { revert ErrSellTransferExceedsMaxTransactionAmount(); } } else if (!isExcludedMaxTransactionAmount[to]) { if (amount + balanceOf(to) > maxWallet) { revert ErrMaxWallet(); } } } // swap if ( swapEnabled && balanceOf(address(this)) >= swapTokensAtAmount && !isSwapping && !automatedMarketMakerPairs[from] && !isExcludedFromFees[from] && !isExcludedFromFees[to] ) { isSwapping = true; _swap(); isSwapping = false; } // fees uint256 fees = 0; if ( !isSwapping && !isExcludedFromFees[from] && !isExcludedFromFees[to] ) { // only take fees on buys/sells, never on wallet transfers uint256 sellTotalFees = sellLiquidityFee + sellDevFee; uint256 buyTotalFees = buyLiquidityFee + buyDevFee; // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = (amount * sellTotalFees) / 100; tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; super._transfer(from, address(this), fees); } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = (amount * buyTotalFees) / 100; tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; super._transfer(from, address(this), fees); } } super._transfer(from, to, amount - fees); } // owners only function excludeFromMaxTransaction(address addr, bool excluded) public onlyOwner { isExcludedMaxTransactionAmount[addr] = excluded; emit ExcludeFromMaxTransaction(addr, excluded); } function excludeFromFees(address addr, bool excluded) public onlyOwner { isExcludedFromFees[addr] = excluded; emit ExcludeFromFees(addr, excluded); } function enableTrading() external onlyOwner { tradingEnabled = true; swapEnabled = true; } function pauseTrading() external onlyOwner { tradingEnabled = false; swapEnabled = false; } function removeLimits() external onlyOwner { limitsEnabled = false; } function setFees( uint256 _buyLiquidityFee, uint256 _buyDevFee, uint256 _sellLiquidityFee, uint256 _sellDevFee ) external onlyOwner { if (buyLiquidityFee + buyDevFee > 20) { revert ErrFeeTooHigh(); } if (sellLiquidityFee + sellDevFee > 20) { revert ErrFeeTooHigh(); } buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; } function setSwapTokensAtAmount(uint256 newAmount) external onlyOwner { uint256 _totalSupply = totalSupply(); if (newAmount < _totalSupply / 100000) { revert ErrSwapAmountTooLow(); } if (newAmount > (_totalSupply * 5) / 1000) { revert ErrSwapAmountTooHigh(); } swapTokensAtAmount = newAmount; } function setSwapEnabled(bool enabled) external onlyOwner { swapEnabled = enabled; } function setMaxTransactionAmount(uint256 max) external onlyOwner { maxTransactionAmount = max; } function setMaxWallet(uint256 max) external onlyOwner { maxWallet = max; } // private function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } 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, path, address(this), block.timestamp ); } function _addLiquidity(uint256 tokenAmount, uint256 ethAmount) private { // approve token transfer _approve(address(this), address(uniswapV2Router), tokenAmount); // add liquidity uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, devWallet, block.timestamp ); } function _swap() private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev; // nothing to swap if (contractBalance == 0 || totalTokensToSwap == 0) { return; } // swap amount uint256 swapAmount = contractBalance; if (swapAmount > swapTokensAtAmount * 20) { swapAmount = swapTokensAtAmount * 20; } // split liquidity tokens - 0.5 keep as is, 0.5 swap to ETH uint256 totalLiquidityTokens = (swapAmount * tokensForLiquidity) / totalTokensToSwap; uint256 liquidityTokens = totalLiquidityTokens / 2; uint256 devTokens = swapAmount - totalLiquidityTokens; uint256 liquidityETHTokens = totalLiquidityTokens - liquidityTokens; uint256 initialETHBalance = address(this).balance; _swapTokensForEth(devTokens + liquidityETHTokens); uint256 gainedETH = address(this).balance - initialETHBalance; uint256 ethForLiquidity = (gainedETH * liquidityETHTokens) / (liquidityETHTokens + devTokens); // reset states tokensForLiquidity = 0; tokensForDev = 0; // add liquidity if (liquidityTokens > 0 && ethForLiquidity > 0) { _addLiquidity(liquidityTokens, ethForLiquidity); emit SwapAndLiquify( devTokens + liquidityETHTokens, gainedETH, liquidityTokens ); } // dev transfer payable(address(devWallet)).transfer(address(this).balance); } }
// 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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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.8.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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * 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}. * * 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 default value returned by this function, unless * it's 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; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _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; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _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; // Overflow not possible: amount <= accountBalance <= totalSupply. _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 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 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.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); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ErrBuyExceedsMaxWallet","type":"error"},{"inputs":[],"name":"ErrBuyTransferExceedsMaxTransactionAmount","type":"error"},{"inputs":[],"name":"ErrERC20FromZero","type":"error"},{"inputs":[],"name":"ErrERC20ToZero","type":"error"},{"inputs":[],"name":"ErrFeeTooHigh","type":"error"},{"inputs":[],"name":"ErrMaxWallet","type":"error"},{"inputs":[],"name":"ErrMigrateDisabled","type":"error"},{"inputs":[],"name":"ErrMintDisabled","type":"error"},{"inputs":[],"name":"ErrPairCannotBeRemoved","type":"error"},{"inputs":[],"name":"ErrSellTransferExceedsMaxTransactionAmount","type":"error"},{"inputs":[],"name":"ErrSwapAmountTooHigh","type":"error"},{"inputs":[],"name":"ErrSwapAmountTooLow","type":"error"},{"inputs":[],"name":"ErrTotalSupplyExceeded","type":"error"},{"inputs":[],"name":"ErrTradingNotActive","type":"error"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromMaxTransaction","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":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"},{"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":[],"name":"buyDevFee","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":"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":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"pauseTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_buyDevFee","type":"uint256"},{"internalType":"uint256","name":"_sellLiquidityFee","type":"uint256"},{"internalType":"uint256","name":"_sellDevFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxTransactionAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","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":"tokensForDev","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":"tradingEnabled","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":[{"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a06040526005805462ffffff60a01b1916600160b01b1790553480156200002657600080fd5b5060405180604001604052806006815260200165416e6f6e5a4b60d01b81525060405180604001604052806003815260200162415a4b60e81b815250816003908162000073919062000658565b50600462000082828262000658565b5050506200009f620000996200031360201b60201c565b62000317565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620000f4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200011a919062000724565b6001600160a01b031663c9c6539630737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200017c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001a2919062000724565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af1158015620001f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000216919062000724565b6001600160a01b038116608052692a5a058fc295ed00000060068190556007559050620002516103e86a084595161401484a00000062000756565b60085560026009556003600a908155600b819055600c556200027533600162000369565b6200028230600162000369565b6200029161dead600162000369565b620002b2737a250d5630b4cf539739df2c5dacb4c659f2488d6001620003d3565b620002bf816001620003d3565b620002cc336001620003d3565b620002d9306001620003d3565b620002e861dead6001620003d3565b620002f581600162000436565b6200030c336a084595161401484a0000006200048a565b50620007a1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6200037362000551565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791015b60405180910390a25050565b620003dd62000551565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f089101620003c7565b6001600160a01b038216600081815260126020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038216620004e65760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b8060026000828254620004fa919062000779565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b6005546001600160a01b03163314620005ad5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401620004dd565b565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620005df57607f821691505b6020821081036200060057634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620005af57600081815260208120601f850160051c810160208610156200062f5750805b601f850160051c820191505b8181101562000650578281556001016200063b565b505050505050565b81516001600160401b03811115620006745762000674620005b4565b6200068c81620006858454620005ca565b8462000606565b602080601f831160018114620006c45760008415620006ab5750858301515b600019600386901b1c1916600185901b17855562000650565b600085815260208120601f198616915b82811015620006f557888601518255948401946001909101908401620006d4565b5085821015620007145787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200073757600080fd5b81516001600160a01b03811681146200074f57600080fd5b9392505050565b6000826200077457634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200079b57634e487b7160e01b600052601160045260246000fd5b92915050565b608051611d8e620007bd60003960006103f70152611d8e6000f3fe6080604052600436106102555760003560e01c80637571336a11610139578063b62496f5116100b6578063e01af92c1161007a578063e01af92c1461070a578063e2f456051461072a578063f11a24d314610740578063f2fde38b14610756578063f637434214610776578063f8b45b051461078c57600080fd5b8063b62496f514610665578063c024666814610695578063c8c8ebe4146106b5578063d5abeb01146106cb578063dd62ed3e146106ea57600080fd5b80639fccce32116100fd5780639fccce32146105d9578063a0d82dc5146105ef578063a457c2d714610605578063a9059cbb14610625578063afa4f3b21461064557600080fd5b80637571336a1461055b5780638a8c523c1461057b5780638da5cb5b1461059057806395d89b41146105ae5780639c3b4fdc146105c357600080fd5b806339509351116101d25780635d0044ca116101965780635d0044ca1461049a5780636ddd1713146104ba5780636fcba377146104db57806370a08231146104fb578063715018a614610531578063751039fc1461054657600080fd5b806339509351146103c557806349bd5a5e146103e55780634ada218b146104195780634bb2c7851461043a5780634fbee1931461046a57600080fd5b80631a8145bb116102195780631a8145bb146103325780631e293c101461034857806323b872dd14610368578063313ce567146103885780633582ad23146103a457600080fd5b806306fdde0314610261578063095ea7b31461028c5780631031e36e146102bc5780631694505e146102d357806318160ddd1461031357600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107a2565b60405161028391906119fa565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611a5d565b610834565b6040519015158152602001610283565b3480156102c857600080fd5b506102d161084e565b005b3480156102df57600080fd5b506102fb737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561031f57600080fd5b506002545b604051908152602001610283565b34801561033e57600080fd5b50610324600d5481565b34801561035457600080fd5b506102d1610363366004611a89565b610866565b34801561037457600080fd5b506102ac610383366004611aa2565b610873565b34801561039457600080fd5b5060405160128152602001610283565b3480156103b057600080fd5b506005546102ac90600160b01b900460ff1681565b3480156103d157600080fd5b506102ac6103e0366004611a5d565b610897565b3480156103f157600080fd5b506102fb7f000000000000000000000000000000000000000000000000000000000000000081565b34801561042557600080fd5b506005546102ac90600160a01b900460ff1681565b34801561044657600080fd5b506102ac610455366004611ae3565b60116020526000908152604090205460ff1681565b34801561047657600080fd5b506102ac610485366004611ae3565b60106020526000908152604090205460ff1681565b3480156104a657600080fd5b506102d16104b5366004611a89565b6108b9565b3480156104c657600080fd5b506005546102ac90600160a81b900460ff1681565b3480156104e757600080fd5b506102d16104f6366004611b07565b6108c6565b34801561050757600080fd5b50610324610516366004611ae3565b6001600160a01b031660009081526020819052604090205490565b34801561053d57600080fd5b506102d1610944565b34801561055257600080fd5b506102d1610958565b34801561056757600080fd5b506102d1610576366004611b4e565b61096f565b34801561058757600080fd5b506102d16109d7565b34801561059c57600080fd5b506005546001600160a01b03166102fb565b3480156105ba57600080fd5b506102766109f6565b3480156105cf57600080fd5b50610324600a5481565b3480156105e557600080fd5b50610324600e5481565b3480156105fb57600080fd5b50610324600c5481565b34801561061157600080fd5b506102ac610620366004611a5d565b610a05565b34801561063157600080fd5b506102ac610640366004611a5d565b610a85565b34801561065157600080fd5b506102d1610660366004611a89565b610a93565b34801561067157600080fd5b506102ac610680366004611ae3565b60126020526000908152604090205460ff1681565b3480156106a157600080fd5b506102d16106b0366004611b4e565b610b13565b3480156106c157600080fd5b5061032460065481565b3480156106d757600080fd5b506103246a084595161401484a00000081565b3480156106f657600080fd5b50610324610705366004611b83565b610b73565b34801561071657600080fd5b506102d1610725366004611bbc565b610b9e565b34801561073657600080fd5b5061032460085481565b34801561074c57600080fd5b5061032460095481565b34801561076257600080fd5b506102d1610771366004611ae3565b610bc4565b34801561078257600080fd5b50610324600b5481565b34801561079857600080fd5b5061032460075481565b6060600380546107b190611bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611bd7565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b600033610842818585610c3d565b60019150505b92915050565b610856610d61565b6005805461ffff60a01b19169055565b61086e610d61565b600655565b600033610881858285610dbb565b61088c858585610e35565b506001949350505050565b6000336108428185856108aa8383610b73565b6108b49190611c27565b610c3d565b6108c1610d61565b600755565b6108ce610d61565b6014600a546009546108e09190611c27565b11156108ff57604051632e917a5b60e21b815260040160405180910390fd5b6014600c54600b546109119190611c27565b111561093057604051632e917a5b60e21b815260040160405180910390fd5b600993909355600a91909155600b55600c55565b61094c610d61565b61095660006113f3565b565b610960610d61565b6005805460ff60b01b19169055565b610977610d61565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f0891015b60405180910390a25050565b6109df610d61565b6005805461ffff60a01b191661010160a01b179055565b6060600480546107b190611bd7565b60003381610a138286610b73565b905083811015610a785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61088c8286868403610c3d565b600033610842818585610e35565b610a9b610d61565b6000610aa660025490565b9050610ab5620186a082611c3a565b821015610ad5576040516358bbffab60e11b815260040160405180910390fd5b6103e8610ae3826005611c5c565b610aed9190611c3a565b821115610b0d57604051632a2d300d60e21b815260040160405180910390fd5b50600855565b610b1b610d61565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016109cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ba6610d61565b60058054911515600160a81b0260ff60a81b19909216919091179055565b610bcc610d61565b6001600160a01b038116610c315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b610c3a816113f3565b50565b6001600160a01b038316610c9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b6001600160a01b038216610d005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6000610dc78484610b73565b90506000198114610e2f5781811015610e225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a6f565b610e2f8484848403610c3d565b50505050565b6001600160a01b038316610e5c57604051639bb3027160e01b815260040160405180910390fd5b6001600160a01b038216610e835760405163a614588560e01b815260040160405180910390fd5b80600003610e9c57610e9783836000611445565b505050565b6001600160a01b03831660009081526012602052604081205460ff168015610edd57506001600160a01b03831660009081526011602052604090205460ff16155b6001600160a01b0384166000908152601260205260408120549192509060ff168015610f2257506001600160a01b03851660009081526011602052604090205460ff16155b90506000610f386005546001600160a01b031690565b6001600160a01b0316866001600160a01b03161480610f6457506005546001600160a01b038681169116145b60055490915061dead6001600160a01b0387161490600160b01b900460ff168015610f925750600f5460ff16155b8015610f9c575081155b8015610fa6575080155b1561112057600554600160a01b900460ff1661101c576001600160a01b03871660009081526010602052604090205460ff16158015610ffe57506001600160a01b03861660009081526010602052604090205460ff16155b1561101c5760405163aa1d7f2f60e01b815260040160405180910390fd5b831561109257600654851115611048576040516001620be30360e01b0319815260040160405180910390fd5b6007546001600160a01b03871660009081526020819052604090205461106e9087611c27565b111561108d5760405163cfdbc44960e01b815260040160405180910390fd5b611120565b82156110bb5760065485111561108d57604051630242f39f60e61b815260040160405180910390fd5b6001600160a01b03861660009081526011602052604090205460ff16611120576007546001600160a01b0387166000908152602081905260409020546111019087611c27565b11156111205760405163e064ad6960e01b815260040160405180910390fd5b600554600160a81b900460ff16801561114a57506008543060009081526020819052604090205410155b80156111595750600f5460ff16155b801561117e57506001600160a01b03871660009081526012602052604090205460ff16155b80156111a357506001600160a01b03871660009081526010602052604090205460ff16155b80156111c857506001600160a01b03861660009081526010602052604090205460ff16155b156111ed57600f805460ff191660011790556111e26115e9565b600f805460ff191690555b600f5460009060ff1615801561121c57506001600160a01b03881660009081526010602052604090205460ff16155b801561124157506001600160a01b03871660009081526010602052604090205460ff16155b156113d5576000600c54600b546112589190611c27565b90506000600a5460095461126c9190611c27565b6001600160a01b038a1660009081526012602052604090205490915060ff1680156112975750600082115b156113235760646112a8838a611c5c565b6112b29190611c3a565b925081600b54846112c39190611c5c565b6112cd9190611c3a565b600d60008282546112de9190611c27565b9091555050600c5482906112f29085611c5c565b6112fc9190611c3a565b600e600082825461130d9190611c27565b9091555061131e90508a3085611445565b6113d2565b6001600160a01b038a1660009081526012602052604090205460ff16801561134b5750600081115b156113d257606461135c828a611c5c565b6113669190611c3a565b925080600954846113779190611c5c565b6113819190611c3a565b600d60008282546113929190611c27565b9091555050600a5481906113a69085611c5c565b6113b09190611c3a565b600e60008282546113c19190611c27565b909155506113d290508a3085611445565b50505b6113e988886113e4848a611c73565b611445565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6001600160a01b03821661150b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a6f565b6001600160a01b038316600090815260208190526040902054818110156115835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a6f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e2f565b3060009081526020819052604081205490506000600e54600d5461160d9190611c27565b905081158061161a575080155b15611623575050565b6008548290611633906014611c5c565b81111561164b57600854611648906014611c5c565b90505b600082600d548361165c9190611c5c565b6116669190611c3a565b90506000611675600283611c3a565b905060006116838385611c73565b905060006116918385611c73565b9050476116a66116a18385611c27565b611795565b60006116b28247611c73565b905060006116c08585611c27565b6116ca8584611c5c565b6116d49190611c3a565b6000600d819055600e55905085158015906116ef5750600081115b15611748576116fe8682611928565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5616117298587611c27565b6040805191825260208201859052810188905260600160405180910390a15b60405173c8afc08747213da2ab68373e5b261dd304390270904780156108fc02916000818181858888f19350505050158015611788573d6000803e3d6000fd5b5050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117ca576117ca611c86565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561183c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118609190611c9c565b8160018151811061187357611873611c86565b60200260200101906001600160a01b031690816001600160a01b0316815250506118b230737a250d5630b4cf539739df2c5dacb4c659f2488d84610c3d565b60405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906118f2908590600090869030904290600401611cb9565b600060405180830381600087803b15801561190c57600080fd5b505af1158015611920573d6000803e3d6000fd5b505050505050565b61194730737a250d5630b4cf539739df2c5dacb4c659f2488d84610c3d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015273c8afc08747213da2ab68373e5b261dd30439027060848201524260a4820152737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d71990839060c40160606040518083038185885af11580156119ce573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119f39190611d2a565b5050505050565b600060208083528351808285015260005b81811015611a2757858101830151858201604001528201611a0b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c3a57600080fd5b60008060408385031215611a7057600080fd5b8235611a7b81611a48565b946020939093013593505050565b600060208284031215611a9b57600080fd5b5035919050565b600080600060608486031215611ab757600080fd5b8335611ac281611a48565b92506020840135611ad281611a48565b929592945050506040919091013590565b600060208284031215611af557600080fd5b8135611b0081611a48565b9392505050565b60008060008060808587031215611b1d57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114611b4957600080fd5b919050565b60008060408385031215611b6157600080fd5b8235611b6c81611a48565b9150611b7a60208401611b39565b90509250929050565b60008060408385031215611b9657600080fd5b8235611ba181611a48565b91506020830135611bb181611a48565b809150509250929050565b600060208284031215611bce57600080fd5b611b0082611b39565b600181811c90821680611beb57607f821691505b602082108103611c0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561084857610848611c11565b600082611c5757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761084857610848611c11565b8181038181111561084857610848611c11565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611cae57600080fd5b8151611b0081611a48565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d095784516001600160a01b031683529383019391830191600101611ce4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611d3f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f8fd76c0fd142f44c2d37326e9fff7f759c74738c92ccda50af0422d10cc381a64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106102555760003560e01c80637571336a11610139578063b62496f5116100b6578063e01af92c1161007a578063e01af92c1461070a578063e2f456051461072a578063f11a24d314610740578063f2fde38b14610756578063f637434214610776578063f8b45b051461078c57600080fd5b8063b62496f514610665578063c024666814610695578063c8c8ebe4146106b5578063d5abeb01146106cb578063dd62ed3e146106ea57600080fd5b80639fccce32116100fd5780639fccce32146105d9578063a0d82dc5146105ef578063a457c2d714610605578063a9059cbb14610625578063afa4f3b21461064557600080fd5b80637571336a1461055b5780638a8c523c1461057b5780638da5cb5b1461059057806395d89b41146105ae5780639c3b4fdc146105c357600080fd5b806339509351116101d25780635d0044ca116101965780635d0044ca1461049a5780636ddd1713146104ba5780636fcba377146104db57806370a08231146104fb578063715018a614610531578063751039fc1461054657600080fd5b806339509351146103c557806349bd5a5e146103e55780634ada218b146104195780634bb2c7851461043a5780634fbee1931461046a57600080fd5b80631a8145bb116102195780631a8145bb146103325780631e293c101461034857806323b872dd14610368578063313ce567146103885780633582ad23146103a457600080fd5b806306fdde0314610261578063095ea7b31461028c5780631031e36e146102bc5780631694505e146102d357806318160ddd1461031357600080fd5b3661025c57005b600080fd5b34801561026d57600080fd5b506102766107a2565b60405161028391906119fa565b60405180910390f35b34801561029857600080fd5b506102ac6102a7366004611a5d565b610834565b6040519015158152602001610283565b3480156102c857600080fd5b506102d161084e565b005b3480156102df57600080fd5b506102fb737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6040516001600160a01b039091168152602001610283565b34801561031f57600080fd5b506002545b604051908152602001610283565b34801561033e57600080fd5b50610324600d5481565b34801561035457600080fd5b506102d1610363366004611a89565b610866565b34801561037457600080fd5b506102ac610383366004611aa2565b610873565b34801561039457600080fd5b5060405160128152602001610283565b3480156103b057600080fd5b506005546102ac90600160b01b900460ff1681565b3480156103d157600080fd5b506102ac6103e0366004611a5d565b610897565b3480156103f157600080fd5b506102fb7f000000000000000000000000003b3109d25b55bba1518c507a8e5be94f55117581565b34801561042557600080fd5b506005546102ac90600160a01b900460ff1681565b34801561044657600080fd5b506102ac610455366004611ae3565b60116020526000908152604090205460ff1681565b34801561047657600080fd5b506102ac610485366004611ae3565b60106020526000908152604090205460ff1681565b3480156104a657600080fd5b506102d16104b5366004611a89565b6108b9565b3480156104c657600080fd5b506005546102ac90600160a81b900460ff1681565b3480156104e757600080fd5b506102d16104f6366004611b07565b6108c6565b34801561050757600080fd5b50610324610516366004611ae3565b6001600160a01b031660009081526020819052604090205490565b34801561053d57600080fd5b506102d1610944565b34801561055257600080fd5b506102d1610958565b34801561056757600080fd5b506102d1610576366004611b4e565b61096f565b34801561058757600080fd5b506102d16109d7565b34801561059c57600080fd5b506005546001600160a01b03166102fb565b3480156105ba57600080fd5b506102766109f6565b3480156105cf57600080fd5b50610324600a5481565b3480156105e557600080fd5b50610324600e5481565b3480156105fb57600080fd5b50610324600c5481565b34801561061157600080fd5b506102ac610620366004611a5d565b610a05565b34801561063157600080fd5b506102ac610640366004611a5d565b610a85565b34801561065157600080fd5b506102d1610660366004611a89565b610a93565b34801561067157600080fd5b506102ac610680366004611ae3565b60126020526000908152604090205460ff1681565b3480156106a157600080fd5b506102d16106b0366004611b4e565b610b13565b3480156106c157600080fd5b5061032460065481565b3480156106d757600080fd5b506103246a084595161401484a00000081565b3480156106f657600080fd5b50610324610705366004611b83565b610b73565b34801561071657600080fd5b506102d1610725366004611bbc565b610b9e565b34801561073657600080fd5b5061032460085481565b34801561074c57600080fd5b5061032460095481565b34801561076257600080fd5b506102d1610771366004611ae3565b610bc4565b34801561078257600080fd5b50610324600b5481565b34801561079857600080fd5b5061032460075481565b6060600380546107b190611bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546107dd90611bd7565b801561082a5780601f106107ff5761010080835404028352916020019161082a565b820191906000526020600020905b81548152906001019060200180831161080d57829003601f168201915b5050505050905090565b600033610842818585610c3d565b60019150505b92915050565b610856610d61565b6005805461ffff60a01b19169055565b61086e610d61565b600655565b600033610881858285610dbb565b61088c858585610e35565b506001949350505050565b6000336108428185856108aa8383610b73565b6108b49190611c27565b610c3d565b6108c1610d61565b600755565b6108ce610d61565b6014600a546009546108e09190611c27565b11156108ff57604051632e917a5b60e21b815260040160405180910390fd5b6014600c54600b546109119190611c27565b111561093057604051632e917a5b60e21b815260040160405180910390fd5b600993909355600a91909155600b55600c55565b61094c610d61565b61095660006113f3565b565b610960610d61565b6005805460ff60b01b19169055565b610977610d61565b6001600160a01b038216600081815260116020908152604091829020805460ff191685151590811790915591519182527fe0a7c1f8826ab3d62a6e242681ccca3828462e5c87816004b9f8d655b22d5f0891015b60405180910390a25050565b6109df610d61565b6005805461ffff60a01b191661010160a01b179055565b6060600480546107b190611bd7565b60003381610a138286610b73565b905083811015610a785760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b61088c8286868403610c3d565b600033610842818585610e35565b610a9b610d61565b6000610aa660025490565b9050610ab5620186a082611c3a565b821015610ad5576040516358bbffab60e11b815260040160405180910390fd5b6103e8610ae3826005611c5c565b610aed9190611c3a565b821115610b0d57604051632a2d300d60e21b815260040160405180910390fd5b50600855565b610b1b610d61565b6001600160a01b038216600081815260106020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df791016109cb565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610ba6610d61565b60058054911515600160a81b0260ff60a81b19909216919091179055565b610bcc610d61565b6001600160a01b038116610c315760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610a6f565b610c3a816113f3565b50565b6001600160a01b038316610c9f5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610a6f565b6001600160a01b038216610d005760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610a6f565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6005546001600160a01b031633146109565760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610a6f565b6000610dc78484610b73565b90506000198114610e2f5781811015610e225760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610a6f565b610e2f8484848403610c3d565b50505050565b6001600160a01b038316610e5c57604051639bb3027160e01b815260040160405180910390fd5b6001600160a01b038216610e835760405163a614588560e01b815260040160405180910390fd5b80600003610e9c57610e9783836000611445565b505050565b6001600160a01b03831660009081526012602052604081205460ff168015610edd57506001600160a01b03831660009081526011602052604090205460ff16155b6001600160a01b0384166000908152601260205260408120549192509060ff168015610f2257506001600160a01b03851660009081526011602052604090205460ff16155b90506000610f386005546001600160a01b031690565b6001600160a01b0316866001600160a01b03161480610f6457506005546001600160a01b038681169116145b60055490915061dead6001600160a01b0387161490600160b01b900460ff168015610f925750600f5460ff16155b8015610f9c575081155b8015610fa6575080155b1561112057600554600160a01b900460ff1661101c576001600160a01b03871660009081526010602052604090205460ff16158015610ffe57506001600160a01b03861660009081526010602052604090205460ff16155b1561101c5760405163aa1d7f2f60e01b815260040160405180910390fd5b831561109257600654851115611048576040516001620be30360e01b0319815260040160405180910390fd5b6007546001600160a01b03871660009081526020819052604090205461106e9087611c27565b111561108d5760405163cfdbc44960e01b815260040160405180910390fd5b611120565b82156110bb5760065485111561108d57604051630242f39f60e61b815260040160405180910390fd5b6001600160a01b03861660009081526011602052604090205460ff16611120576007546001600160a01b0387166000908152602081905260409020546111019087611c27565b11156111205760405163e064ad6960e01b815260040160405180910390fd5b600554600160a81b900460ff16801561114a57506008543060009081526020819052604090205410155b80156111595750600f5460ff16155b801561117e57506001600160a01b03871660009081526012602052604090205460ff16155b80156111a357506001600160a01b03871660009081526010602052604090205460ff16155b80156111c857506001600160a01b03861660009081526010602052604090205460ff16155b156111ed57600f805460ff191660011790556111e26115e9565b600f805460ff191690555b600f5460009060ff1615801561121c57506001600160a01b03881660009081526010602052604090205460ff16155b801561124157506001600160a01b03871660009081526010602052604090205460ff16155b156113d5576000600c54600b546112589190611c27565b90506000600a5460095461126c9190611c27565b6001600160a01b038a1660009081526012602052604090205490915060ff1680156112975750600082115b156113235760646112a8838a611c5c565b6112b29190611c3a565b925081600b54846112c39190611c5c565b6112cd9190611c3a565b600d60008282546112de9190611c27565b9091555050600c5482906112f29085611c5c565b6112fc9190611c3a565b600e600082825461130d9190611c27565b9091555061131e90508a3085611445565b6113d2565b6001600160a01b038a1660009081526012602052604090205460ff16801561134b5750600081115b156113d257606461135c828a611c5c565b6113669190611c3a565b925080600954846113779190611c5c565b6113819190611c3a565b600d60008282546113929190611c27565b9091555050600a5481906113a69085611c5c565b6113b09190611c3a565b600e60008282546113c19190611c27565b909155506113d290508a3085611445565b50505b6113e988886113e4848a611c73565b611445565b5050505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0383166114a95760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610a6f565b6001600160a01b03821661150b5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610a6f565b6001600160a01b038316600090815260208190526040902054818110156115835760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610a6f565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3610e2f565b3060009081526020819052604081205490506000600e54600d5461160d9190611c27565b905081158061161a575080155b15611623575050565b6008548290611633906014611c5c565b81111561164b57600854611648906014611c5c565b90505b600082600d548361165c9190611c5c565b6116669190611c3a565b90506000611675600283611c3a565b905060006116838385611c73565b905060006116918385611c73565b9050476116a66116a18385611c27565b611795565b60006116b28247611c73565b905060006116c08585611c27565b6116ca8584611c5c565b6116d49190611c3a565b6000600d819055600e55905085158015906116ef5750600081115b15611748576116fe8682611928565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb5616117298587611c27565b6040805191825260208201859052810188905260600160405180910390a15b60405173c8afc08747213da2ab68373e5b261dd304390270904780156108fc02916000818181858888f19350505050158015611788573d6000803e3d6000fd5b5050505050505050505050565b60408051600280825260608201835260009260208301908036833701905050905030816000815181106117ca576117ca611c86565b60200260200101906001600160a01b031690816001600160a01b031681525050737a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa15801561183c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118609190611c9c565b8160018151811061187357611873611c86565b60200260200101906001600160a01b031690816001600160a01b0316815250506118b230737a250d5630b4cf539739df2c5dacb4c659f2488d84610c3d565b60405163791ac94760e01b8152737a250d5630b4cf539739df2c5dacb4c659f2488d9063791ac947906118f2908590600090869030904290600401611cb9565b600060405180830381600087803b15801561190c57600080fd5b505af1158015611920573d6000803e3d6000fd5b505050505050565b61194730737a250d5630b4cf539739df2c5dacb4c659f2488d84610c3d565b60405163f305d71960e01b815230600482015260248101839052600060448201819052606482015273c8afc08747213da2ab68373e5b261dd30439027060848201524260a4820152737a250d5630b4cf539739df2c5dacb4c659f2488d9063f305d71990839060c40160606040518083038185885af11580156119ce573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906119f39190611d2a565b5050505050565b600060208083528351808285015260005b81811015611a2757858101830151858201604001528201611a0b565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610c3a57600080fd5b60008060408385031215611a7057600080fd5b8235611a7b81611a48565b946020939093013593505050565b600060208284031215611a9b57600080fd5b5035919050565b600080600060608486031215611ab757600080fd5b8335611ac281611a48565b92506020840135611ad281611a48565b929592945050506040919091013590565b600060208284031215611af557600080fd5b8135611b0081611a48565b9392505050565b60008060008060808587031215611b1d57600080fd5b5050823594602084013594506040840135936060013592509050565b80358015158114611b4957600080fd5b919050565b60008060408385031215611b6157600080fd5b8235611b6c81611a48565b9150611b7a60208401611b39565b90509250929050565b60008060408385031215611b9657600080fd5b8235611ba181611a48565b91506020830135611bb181611a48565b809150509250929050565b600060208284031215611bce57600080fd5b611b0082611b39565b600181811c90821680611beb57607f821691505b602082108103611c0b57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561084857610848611c11565b600082611c5757634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761084857610848611c11565b8181038181111561084857610848611c11565b634e487b7160e01b600052603260045260246000fd5b600060208284031215611cae57600080fd5b8151611b0081611a48565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b81811015611d095784516001600160a01b031683529383019391830191600101611ce4565b50506001600160a01b03969096166060850152505050608001529392505050565b600080600060608486031215611d3f57600080fd5b835192506020840151915060408401519050925092509256fea2646970667358221220f8fd76c0fd142f44c2d37326e9fff7f759c74738c92ccda50af0422d10cc381a64736f6c63430008130033
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.