ERC-20
Overview
Max Total Supply
1,000,000,000 ATSUKO
Holders
59
Total Transfers
-
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 Source Code Verified (Exact Match)
Contract Name:
Neiromama
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)
/* https://t.me/neiromamaeth https://neiromamaeth.com https://x.com/neiromamaETH */ /* * SPDX-License-Identifier: MIT */ pragma solidity 0.8.19; 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 substraction 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; } } } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, 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}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the upd allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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 upd allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][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 upd 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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, 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 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 {} } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } interface IDexFactory { 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 IDexRouter { 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 Neiromama is ERC20, Ownable { using SafeMath for uint256; IDexRouter private immutable dexRouter; address public immutable dexPair; // Swapback bool private swapping; bool private swapbackEnabled = false; uint256 private swapBackValueMin; uint256 private swapBackValueMax; //Anti-whale bool private limitsEnabled = true; uint256 private maxWallet; uint256 private maxTx; mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch bool public tradingEnabled = false; // Fee receivers address private marketingWallet; address private projectWallet; uint256 private buyTaxTotal; uint256 private buyMarketingTax; uint256 private buyProjectTax; uint256 private sellTaxTotal; uint256 private sellMarketingTax; uint256 private sellProjectTax; uint256 private tokensForMarketing; uint256 private tokensForProject; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private transferTaxExempt; mapping(address => bool) private transferLimitExempt; mapping(address => bool) private automatedMarketMakerPairs; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount event UpdateUniswapV2Router( address indexed newAddress, address indexed oldAddress ); event ExcludeFromFees(address indexed account, bool isExcluded); event ExcludeFromLimits(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event TradingEnabled(uint256 indexed timestamp); event LimitsRemoved(uint256 indexed timestamp); event DisabledTransferDelay(uint256 indexed timestamp); event SwapbackSettingsUpdated( bool enabled, uint256 swapBackValueMin, uint256 swapBackValueMax ); event MaxTxUpdated(uint256 maxTx); event MaxWalletUpdated(uint256 maxWallet); event MarketingWalletUpdated( address indexed newWallet, address indexed oldWallet ); event ProjectWalletUpdated( address indexed newWallet, address indexed oldWallet ); event BuyFeeUpdated( uint256 buyTaxTotal, uint256 buyMarketingTax, uint256 buyProjectTax ); event SellFeeUpdated( uint256 sellTaxTotal, uint256 sellMarketingTax, uint256 sellProjectTax ); constructor() ERC20("Neiromama", "ATSUKO") { IDexRouter _dexRouter = IDexRouter( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); exemptFromL(address(_dexRouter), true); dexRouter = _dexRouter; dexPair = IDexFactory(_dexRouter.factory()).createPair( address(this), _dexRouter.WETH() ); exemptFromL(address(dexPair), true); _setAutomatedMarketMakerPair(address(dexPair), true); uint256 _buyMarketingTax = 30; uint256 _buyProjectTax = 0; uint256 _sellMarketingTax = 30; uint256 _sellProjectTax = 0; uint256 _totalSupply = 1_000_000_000 * 10 ** decimals(); maxTx = (_totalSupply * 10) / 1000; maxWallet = (_totalSupply * 10) / 1000; swapBackValueMin = (_totalSupply * 1) / 1000; swapBackValueMax = (_totalSupply * 2) / 100; buyMarketingTax = _buyMarketingTax; buyProjectTax = _buyProjectTax; buyTaxTotal = buyMarketingTax + buyProjectTax; sellMarketingTax = _sellMarketingTax; sellProjectTax = _sellProjectTax; sellTaxTotal = sellMarketingTax + sellProjectTax; marketingWallet = address(0x4015C4BAA4e63DFdfF05D6F2A541AD0807743bd3); projectWallet = address(msg.sender); // exclude from paying fees or having max transaction amount exemptFromF(msg.sender, true); exemptFromF(address(this), true); exemptFromF(address(0xdead), true); exemptFromF(marketingWallet, true); exemptFromL(msg.sender, true); exemptFromL(address(this), true); exemptFromL(address(0xdead), true); exemptFromL(marketingWallet, true); transferOwnership(msg.sender); /* _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 {} /** * @notice Opens public trading for the token * @dev onlyOwner. */ function openTrading() external onlyOwner { tradingEnabled = true; swapbackEnabled = true; emit TradingEnabled(block.timestamp); } /** * @notice Removes the max wallet and max transaction limits * @dev onlyOwner. * Emits an {LimitsRemoved} event */ function remlits() external onlyOwner { limitsEnabled = false; emit LimitsRemoved(block.timestamp); } /** * @notice sets if swapback is enabled and sets the minimum and maximum amounts * @dev onlyOwner. * Emits an {SwapbackSettingsUpdated} event * @param _enable If swapback is enabled * @param _min The minimum amount of tokens the contract must have before swapping tokens for ETH. Base 10000, so 1% = 100. * @param _max The maximum amount of tokens the contract can swap for ETH. Base 10000, so 1% = 100. */ function chanegSwbackValue( bool _enable, uint256 _min, uint256 _max ) external onlyOwner { require( _min >= 1, "Swap amount cannot be lower than 0.01% total supply." ); require(_max >= _min, "maximum amount cant be higher than minimum"); swapbackEnabled = _enable; swapBackValueMin = (totalSupply() * _min) / 10000; swapBackValueMax = (totalSupply() * _max) / 10000; emit SwapbackSettingsUpdated(_enable, _min, _max); } /** * @notice Changes the maximum amount of tokens that can be bought or sold in a single transaction * @dev onlyOwner. * Emits an {MaxTxUpdated} event * @param newMaxTxLimit Base 1000, so 1% = 10 */ function changeMaxT(uint256 newMaxTxLimit) external onlyOwner { require(newMaxTxLimit >= 2, "Cannot set maxTx lower than 0.2%"); maxTx = (newMaxTxLimit * totalSupply()) / 1000; emit MaxTxUpdated(maxTx); } /** * @notice Changes the maximum amount of tokens a wallet can hold * @dev onlyOwner. * Emits an {MaxWalletUpdated} event * @param newMaxWalletLimit Base 1000, so 1% = 10 */ function changeMaxW(uint256 newMaxWalletLimit) external onlyOwner { require(newMaxWalletLimit >= 5, "Cannot set maxWallet lower than 0.5%"); maxWallet = (newMaxWalletLimit * totalSupply()) / 1000; emit MaxWalletUpdated(maxWallet); } /** * @notice Sets if a wallet is excluded from the max wallet and tx limits * @dev onlyOwner. * Emits an {ExcludeFromLimits} event * @param updAds The wallet to update * @param isEx If the wallet is excluded or not */ function exemptFromL( address updAds, bool isEx ) public onlyOwner { transferLimitExempt[updAds] = isEx; emit ExcludeFromLimits(updAds, isEx); } /** * @notice Sets the fees for buys * @dev onlyOwner. * Emits a {BuyFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeeForBuys( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { buyMarketingTax = _marketingFee; buyProjectTax = _devFee; buyTaxTotal = buyMarketingTax + buyProjectTax; require(buyTaxTotal <= 100, "Total buy fee cannot be higher than 100%"); emit BuyFeeUpdated(buyTaxTotal, buyMarketingTax, buyProjectTax); } /** * @notice Sets the fees for sells * @dev onlyOwner. * Emits a {SellFeeUpdated} event * All fees added up must be less than 100 * @param _marketingFee The fee for the marketing wallet * @param _devFee The fee for the dev wallet */ function setFeeForSells( uint256 _marketingFee, uint256 _devFee ) external onlyOwner { sellMarketingTax = _marketingFee; sellProjectTax = _devFee; sellTaxTotal = sellMarketingTax + sellProjectTax; require( sellTaxTotal <= 100, "Total sell fee cannot be higher than 100%" ); emit SellFeeUpdated(sellTaxTotal, sellMarketingTax, sellProjectTax); } /** * @notice Sets if an address is excluded from fees * @dev onlyOwner. * Emits an {ExcludeFromFees} event * @param account The wallet to update * @param excluded If the wallet is excluded or not */ function exemptFromF(address account, bool excluded) public onlyOwner { transferTaxExempt[account] = excluded; emit ExcludeFromFees(account, excluded); } /** * @notice Sets an address as a new liquidity pair. You probably dont want to do this. * @dev onlyOwner. * Emits a {SetAutomatedMarketMakerPair} event * @param pair the address of the pair * @param value If the pair is a automated market maker pair or not */ function setAutomatedMarketMakerPair( address pair, bool value ) public onlyOwner { require( pair != dexPair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } /** * @notice Sets the marketing wallet * @dev onlyOwner. * Emits an {MarketingWalletUpdated} event * @param newWallet The new marketing wallet */ function setMW(address newWallet) external onlyOwner { emit MarketingWalletUpdated(newWallet, marketingWallet); marketingWallet = newWallet; } /** * @notice Sets the project wallet * @dev onlyOwner. * Emits an {ProjectWalletUpdated} event * @param newWallet The new dev wallet */ function setDW(address newWallet) external onlyOwner { emit ProjectWalletUpdated(newWallet, projectWallet); projectWallet = newWallet; } /** * @notice Information about the swapback settings * @return _swapbackEnabled if swapback is enabled * @return _swapBackValueMin the minimum amount of tokens in the contract balance to trigger swapback * @return _swapBackValueMax the maximum amount of tokens in the contract balance to trigger swapback */ function swapbackValues() external view returns ( bool _swapbackEnabled, uint256 _swapBackValueMin, uint256 _swapBackValueMax ) { _swapbackEnabled = swapbackEnabled; _swapBackValueMin = swapBackValueMin; _swapBackValueMax = swapBackValueMax; } /** * @notice Information about the anti whale parameters * @return _limitsEnabled if the wallet limits are in effect * @return _maxWallet The maximum amount of tokens that can be held by a wallet * @return _maxTx The maximum amount of tokens that can be bought or sold in a single transaction */ function maxTxValues() external view returns ( bool _limitsEnabled, uint256 _maxWallet, uint256 _maxTx ) { _limitsEnabled = limitsEnabled; _maxWallet = maxWallet; _maxTx = maxTx; } /** * @notice The wallets that receive the collected fees * @return _marketingWallet The wallet that receives the marketing fees * @return _projectWallet The wallet that receives the dev fees */ function receiverwallets() external view returns (address _marketingWallet, address _projectWallet) { return (marketingWallet, projectWallet); } /** * @notice Fees for buys, sells, and transfers * @return _buyTaxTotal The total fee for buys * @return _buyMarketingTax The fee for buys that gets sent to marketing * @return _buyProjectTax The fee for buys that gets sent to dev * @return _sellTaxTotal The total fee for sells * @return _sellMarketingTax The fee for sells that gets sent to marketing * @return _sellProjectTax The fee for sells that gets sent to dev */ function taxValues() external view returns ( uint256 _buyTaxTotal, uint256 _buyMarketingTax, uint256 _buyProjectTax, uint256 _sellTaxTotal, uint256 _sellMarketingTax, uint256 _sellProjectTax ) { _buyTaxTotal = buyTaxTotal; _buyMarketingTax = buyMarketingTax; _buyProjectTax = buyProjectTax; _sellTaxTotal = sellTaxTotal; _sellMarketingTax = sellMarketingTax; _sellProjectTax = sellProjectTax; } /** * @notice If the wallet is excluded from fees and max transaction amount and if the wallet is a automated market maker pair * @param _target The wallet to check * @return _transferTaxExempt If the wallet is excluded from fees * @return _transferLimitExempt If the wallet is excluded from max transaction amount * @return _automatedMarketMakerPairs If the wallet is a automated market maker pair */ function checkMappings( address _target ) external view returns ( bool _transferTaxExempt, bool _transferLimitExempt, bool _automatedMarketMakerPairs ) { _transferTaxExempt = transferTaxExempt[_target]; _transferLimitExempt = transferLimitExempt[_target]; _automatedMarketMakerPairs = automatedMarketMakerPairs[_target]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsEnabled) { if ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingEnabled) { require( transferTaxExempt[from] || transferTaxExempt[to], "_transfer:: Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !transferLimitExempt[to] ) { require( amount <= maxTx, "Buy transfer amount exceeds the maxTx." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !transferLimitExempt[from] ) { require( amount <= maxTx, "Sell transfer amount exceeds the maxTx." ); } else if (!transferLimitExempt[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapBackValueMin; if ( canSwap && swapbackEnabled && !swapping && !automatedMarketMakerPairs[from] && !transferTaxExempt[from] && !transferTaxExempt[to] ) { swapping = true; swapBack(amount); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (transferTaxExempt[from] || transferTaxExempt[to]) { takeFee = false; } uint256 fees = 0; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTaxTotal > 0) { fees = amount.mul(sellTaxTotal).div(100); tokensForProject += (fees * sellProjectTax) / sellTaxTotal; tokensForMarketing += (fees * sellMarketingTax) / sellTaxTotal; } // on buy else if (automatedMarketMakerPairs[from] && buyTaxTotal > 0) { fees = amount.mul(buyTaxTotal).div(100); tokensForProject += (fees * buyProjectTax) / buyTaxTotal; tokensForMarketing += (fees * buyMarketingTax) / buyTaxTotal; } if (fees > 0) { super._transfer(from, address(this), fees); } 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] = dexRouter.WETH(); _approve(address(this), address(dexRouter), tokenAmount); // make the swap dexRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, // accept any amount of ETH path, address(this), block.timestamp ); } bool anti = true; function setAnti(bool _anti) external onlyOwner { anti = _anti; } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); uint256 totalTokensToSwap = contractBalance; bool success; if (contractBalance == 0) { return; } if (contractBalance > swapBackValueMax) { contractBalance = swapBackValueMax; } if (anti && contractBalance > amount * 5) { contractBalance = amount * 5; } uint256 amountToSwapForETH = contractBalance; uint256 initialETHBalance = address(this).balance; swapTokensForEth(amountToSwapForETH); uint256 ethBalance = address(this).balance.sub(initialETHBalance); uint256 ethForDev = ethBalance.mul(tokensForProject).div( totalTokensToSwap ); tokensForMarketing = 0; tokensForProject = 0; (success, ) = address(projectWallet).call{value: ethForDev}(""); (success, ) = address(marketingWallet).call{ value: address(this).balance }(""); } }
{ "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"},{"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":false,"internalType":"uint256","name":"buyTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"buyProjectTax","type":"uint256"}],"name":"BuyFeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"DisabledTransferDelay","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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromLimits","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"LimitsRemoved","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"MarketingWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxTx","type":"uint256"}],"name":"MaxTxUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"maxWallet","type":"uint256"}],"name":"MaxWalletUpdated","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":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"ProjectWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"sellTaxTotal","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellMarketingTax","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"sellProjectTax","type":"uint256"}],"name":"SellFeeUpdated","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":"bool","name":"enabled","type":"bool"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMin","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"swapBackValueMax","type":"uint256"}],"name":"SwapbackSettingsUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"TradingEnabled","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":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_enable","type":"bool"},{"internalType":"uint256","name":"_min","type":"uint256"},{"internalType":"uint256","name":"_max","type":"uint256"}],"name":"chanegSwbackValue","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxTxLimit","type":"uint256"}],"name":"changeMaxT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxWalletLimit","type":"uint256"}],"name":"changeMaxW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_target","type":"address"}],"name":"checkMappings","outputs":[{"internalType":"bool","name":"_transferTaxExempt","type":"bool"},{"internalType":"bool","name":"_transferLimitExempt","type":"bool"},{"internalType":"bool","name":"_automatedMarketMakerPairs","type":"bool"}],"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":"dexPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"exemptFromF","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"exemptFromL","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":[],"name":"maxTxValues","outputs":[{"internalType":"bool","name":"_limitsEnabled","type":"bool"},{"internalType":"uint256","name":"_maxWallet","type":"uint256"},{"internalType":"uint256","name":"_maxTx","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"receiverwallets","outputs":[{"internalType":"address","name":"_marketingWallet","type":"address"},{"internalType":"address","name":"_projectWallet","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"remlits","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_anti","type":"bool"}],"name":"setAnti","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setDW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeeForBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"setFeeForSells","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"setMW","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapbackValues","outputs":[{"internalType":"bool","name":"_swapbackEnabled","type":"bool"},{"internalType":"uint256","name":"_swapBackValueMin","type":"uint256"},{"internalType":"uint256","name":"_swapBackValueMax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxValues","outputs":[{"internalType":"uint256","name":"_buyTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_buyMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_buyProjectTax","type":"uint256"},{"internalType":"uint256","name":"_sellTaxTotal","type":"uint256"},{"internalType":"uint256","name":"_sellMarketingTax","type":"uint256"},{"internalType":"uint256","name":"_sellProjectTax","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526005805460ff60a81b191690556008805460ff199081166001908117909255600c8054821690556019805490911690911790553480156200004457600080fd5b50604051806040016040528060098152602001684e6569726f6d616d6160b81b81525060405180604001604052806006815260200165415453554b4f60d01b81525081600390816200009791906200087a565b506004620000a682826200087a565b505050620000c3620000bd6200042f60201b60201c565b62000433565b737a250d5630b4cf539739df2c5dacb4c659f2488d620000e581600162000485565b6001600160a01b03811660808190526040805163c45a015560e01b8152905163c45a0155916004808201926020929091908290030181865afa15801562000130573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000156919062000946565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001a4573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ca919062000946565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303816000875af115801562000218573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200023e919062000946565b6001600160a01b031660a08190526200025990600162000485565b60a0516200026990600162000534565b601e60008181806200027e6012600a62000a8d565b6200028e90633b9aca0062000a9e565b90506103e8620002a082600a62000a9e565b620002ac919062000ab8565b600a9081556103e890620002c290839062000a9e565b620002ce919062000ab8565b6009556103e8620002e182600162000a9e565b620002ed919062000ab8565b6006556064620002ff82600262000a9e565b6200030b919062000ab8565b600755600f859055601084905562000324848662000adb565b600e55601283905560138290556200033d828462000adb565b601155600c8054610100600160a81b031916744015c4baa4e63dfdff05d6f2a541ad0807743bd300179055600d8054336001600160a01b031990911681179091556200038b90600162000588565b6200039830600162000588565b620003a761dead600162000588565b600c54620003c59061010090046001600160a01b0316600162000588565b620003d233600162000485565b620003df30600162000485565b620003ee61dead600162000485565b600c546200040c9061010090046001600160a01b0316600162000485565b62000417336200062c565b620004233382620006ec565b50505050505062000af1565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6005546001600160a01b03163314620004d45760405162461bcd60e51b815260206004820181905260248201526000805160206200301a83398151915260448201526064015b60405180910390fd5b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6005546001600160a01b03163314620005d35760405162461bcd60e51b815260206004820181905260248201526000805160206200301a8339815191526044820152606401620004cb565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7910162000528565b6005546001600160a01b03163314620006775760405162461bcd60e51b815260206004820181905260248201526000805160206200301a8339815191526044820152606401620004cb565b6001600160a01b038116620006de5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401620004cb565b620006e98162000433565b50565b6001600160a01b038216620007445760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401620004cb565b806002600082825462000758919062000adb565b90915550506001600160a01b038216600090815260208190526040812080548392906200078790849062000adb565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200080157607f821691505b6020821081036200082257634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620007d157600081815260208120601f850160051c81016020861015620008515750805b601f850160051c820191505b8181101562000872578281556001016200085d565b505050505050565b81516001600160401b03811115620008965762000896620007d6565b620008ae81620008a78454620007ec565b8462000828565b602080601f831160018114620008e65760008415620008cd5750858301515b600019600386901b1c1916600185901b17855562000872565b600085815260208120601f198616915b828110156200091757888601518255948401946001909101908401620008f6565b5085821015620009365787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6000602082840312156200095957600080fd5b81516001600160a01b03811681146200097157600080fd5b9392505050565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620009cf578160001904821115620009b357620009b362000978565b80851615620009c157918102915b93841c939080029062000993565b509250929050565b600082620009e85750600162000a87565b81620009f75750600062000a87565b816001811462000a10576002811462000a1b5762000a3b565b600191505062000a87565b60ff84111562000a2f5762000a2f62000978565b50506001821b62000a87565b5060208310610133831016604e8410600b841016171562000a60575081810a62000a87565b62000a6c83836200098e565b806000190482111562000a835762000a8362000978565b0290505b92915050565b60006200097160ff841683620009d7565b808202811582820484141762000a875762000a8762000978565b60008262000ad657634e487b7160e01b600052601260045260246000fd5b500490565b8082018082111562000a875762000a8762000978565b60805160a0516124ee62000b2c600039600081816106830152610dd6015260008181611f3a01528181611ff3015261202f01526124ee6000f3fe6080604052600436106101fd5760003560e01c80638cc0947d1161010d578063c9567bf9116100a0578063eae779071161006f578063eae7790714610651578063f242ab4114610671578063f2fde38b146106a5578063f3dc3902146106c5578063fab82a8e1461071157600080fd5b8063c9567bf914610563578063d084bd3914610578578063dd62ed3e14610598578063e13b2007146105de57600080fd5b8063a457c2d7116100dc578063a457c2d7146104ee578063a9059cbb1461050e578063b4967e841461052e578063b56e0e2e1461054357600080fd5b80638cc0947d146104675780638da5cb5b1461048757806395d89b41146104b95780639a7a23d6146104ce57600080fd5b806331f81511116101905780636b370e021161015f5780636b370e02146103b557806370a08231146103d5578063715018a61461040b57806377b5312c146104205780637ff6f7b91461044757600080fd5b806331f8151114610321578063395093511461035b57806344dc95541461037b5780634ada218b1461039b57600080fd5b80632193a071116101cc5780632193a071146102a557806323b872dd146102c55780632e71b983146102e5578063313ce5671461030557600080fd5b806304c64b9d1461020957806306fdde031461022b578063095ea7b31461025657806318160ddd1461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046120c4565b610749565b005b34801561023757600080fd5b506102406107d9565b60405161024d91906120e1565b60405180910390f35b34801561026257600080fd5b5061027661027136600461212f565b61086b565b604051901515815260200161024d565b34801561029257600080fd5b506002545b60405190815260200161024d565b3480156102b157600080fd5b506102296102c036600461215b565b610882565b3480156102d157600080fd5b506102766102e036600461217d565b610974565b3480156102f157600080fd5b506102296103003660046121d3565b610a1e565b34801561031157600080fd5b506040516012815260200161024d565b34801561032d57600080fd5b50600854600954600a5460ff909216915b60408051931515845260208401929092529082015260600161024d565b34801561036757600080fd5b5061027661037636600461212f565b610aa8565b34801561038757600080fd5b5061022961039636600461215b565b610ae4565b3480156103a757600080fd5b50600c546102769060ff1681565b3480156103c157600080fd5b506102296103d0366004612208565b610bcf565b3480156103e157600080fd5b506102976103f03660046120c4565b6001600160a01b031660009081526020819052604090205490565b34801561041757600080fd5b50610229610ca6565b34801561042c57600080fd5b50600554600654600754600160a81b90920460ff169161033e565b34801561045357600080fd5b50610229610462366004612221565b610cdc565b34801561047357600080fd5b506102296104823660046121d3565b610d19565b34801561049357600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b3480156104c557600080fd5b50610240610d9b565b3480156104da57600080fd5b506102296104e93660046121d3565b610daa565b3480156104fa57600080fd5b5061027661050936600461212f565b610e89565b34801561051a57600080fd5b5061027661052936600461212f565b610f22565b34801561053a57600080fd5b50610229610f2f565b34801561054f57600080fd5b5061022961055e366004612208565b610f90565b34801561056f57600080fd5b5061022961106c565b34801561058457600080fd5b506102296105933660046120c4565b6110e3565b3480156105a457600080fd5b506102976105b336600461223c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ea57600080fd5b506106326105f93660046120c4565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024d565b34801561065d57600080fd5b5061022961066c366004612275565b611175565b34801561067d57600080fd5b506104a17f000000000000000000000000000000000000000000000000000000000000000081565b3480156106b157600080fd5b506102296106c03660046120c4565b611313565b3480156106d157600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161024d565b34801561071d57600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161024d565b6005546001600160a01b0316331461077c5760405162461bcd60e51b8152600401610773906122a8565b60405180910390fd5b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546107e8906122dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610814906122dd565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846113ae565b5060015b92915050565b6005546001600160a01b031633146108ac5760405162461bcd60e51b8152600401610773906122a8565b600f82905560108190556108c0818361232d565b600e819055606410156109265760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610773565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b60006109818484846114d2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610773565b610a1385338584036113ae565b506001949350505050565b6005546001600160a01b03163314610a485760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610878918590610adf90869061232d565b6113ae565b6005546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610773906122a8565b60128290556013819055610b22818361232d565b601181905560641015610b895760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610773565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610968565b6005546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610773906122a8565b6002811015610c4a5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610773565b6103e8610c5660025490565b610c609083612340565b610c6a9190612357565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610cd05760405162461bcd60e51b8152600401610773906122a8565b610cda6000611b73565b565b6005546001600160a01b03163314610d065760405162461bcd60e51b8152600401610773906122a8565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610d435760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610a9c565b6060600480546107e8906122dd565b6005546001600160a01b03163314610dd45760405162461bcd60e51b8152600401610773906122a8565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316826001600160a01b031603610e7b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610773565b610e858282611bc5565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610773565b610f1833858584036113ae565b5060019392505050565b60006108783384846114d2565b6005546001600160a01b03163314610f595760405162461bcd60e51b8152600401610773906122a8565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610773906122a8565b60058110156110175760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610773565b6103e861102360025490565b61102d9083612340565b6110379190612357565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c9b565b6005546001600160a01b031633146110965760405162461bcd60e51b8152600401610773906122a8565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610773906122a8565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b0316331461119f5760405162461bcd60e51b8152600401610773906122a8565b600182101561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610773565b818110156112705760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610773565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061129a9190612340565b6112a49190612357565b600655612710816112b460025490565b6112be9190612340565b6112c89190612357565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b0316331461133d5760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610773565b6113ab81611b73565b50565b6001600160a01b0383166114105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610773565b6001600160a01b0382166114715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610773565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f85760405162461bcd60e51b815260040161077390612379565b6001600160a01b03821661151e5760405162461bcd60e51b8152600401610773906123be565b806000036115375761153283836000611c19565b505050565b60085460ff161561189c576005546001600160a01b0384811691161480159061156e57506005546001600160a01b03838116911614155b801561158257506001600160a01b03821615155b801561159957506001600160a01b03821661dead14155b80156115af5750600554600160a01b900460ff16155b1561189c57600c5460ff16611654576001600160a01b03831660009081526016602052604090205460ff16806115fd57506001600160a01b03821660009081526016602052604090205460ff165b6116545760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610773565b6001600160a01b03831660009081526018602052604090205460ff16801561169557506001600160a01b03821660009081526017602052604090205460ff16155b1561176a57600a548111156116fb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610773565b6009546001600160a01b038316600090815260208190526040902054611721908361232d565b11156117655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610773565b61189c565b6001600160a01b03821660009081526018602052604090205460ff1680156117ab57506001600160a01b03831660009081526017602052604090205460ff16155b1561181257600a548111156117655760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610773565b6001600160a01b03821660009081526017602052604090205460ff1661189c576009546001600160a01b038316600090815260208190526040902054611858908361232d565b111561189c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610773565b30600090815260208190526040902054600654811080159081906118c95750600554600160a81b900460ff165b80156118df5750600554600160a01b900460ff16155b801561190457506001600160a01b03851660009081526018602052604090205460ff16155b801561192957506001600160a01b03851660009081526016602052604090205460ff16155b801561194e57506001600160a01b03841660009081526016602052604090205460ff16155b1561197d576005805460ff60a01b1916600160a01b17905561196f83611d6e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526016602052604090205460ff165b156119d4575060005b60008115611b5f576001600160a01b03861660009081526018602052604090205460ff168015611a0657506000601154115b15611a9457611a2b6064611a2560115488611ec490919063ffffffff16565b90611ed7565b905060115460135482611a3e9190612340565b611a489190612357565b60156000828254611a59919061232d565b9091555050601154601254611a6e9083612340565b611a789190612357565b60146000828254611a89919061232d565b90915550611b419050565b6001600160a01b03871660009081526018602052604090205460ff168015611abe57506000600e54115b15611b4157611add6064611a25600e5488611ec490919063ffffffff16565b9050600e5460105482611af09190612340565b611afa9190612357565b60156000828254611b0b919061232d565b9091555050600e54600f54611b209083612340565b611b2a9190612357565b60146000828254611b3b919061232d565b90915550505b8015611b5257611b52873083611c19565b611b5c8186612401565b94505b611b6a878787611c19565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c3f5760405162461bcd60e51b815260040161077390612379565b6001600160a01b038216611c655760405162461bcd60e51b8152600401610773906123be565b6001600160a01b03831660009081526020819052604090205481811015611cdd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610773565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d1490849061232d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d6091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8e5750505050565b600754831115611d9e5760075492505b60195460ff168015611db95750611db6846005612340565b83115b15611dcc57611dc9846005612340565b92505b8247611dd782611ee3565b6000611de347836120a3565b90506000611e0086611a2560155485611ec490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050505050505050505050565b6000611ed08284612340565b9392505050565b6000611ed08284612357565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1857611f18612414565b60200260200101906001600160a01b031690816001600160a01b0316815250507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fba919061242a565b81600181518110611fcd57611fcd612414565b60200260200101906001600160a01b031690816001600160a01b031681525050612018307f0000000000000000000000000000000000000000000000000000000000000000846113ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063791ac9479061206d908590600090869030904290600401612447565b600060405180830381600087803b15801561208757600080fd5b505af115801561209b573d6000803e3d6000fd5b505050505050565b6000611ed08284612401565b6001600160a01b03811681146113ab57600080fd5b6000602082840312156120d657600080fd5b8135611ed0816120af565b600060208083528351808285015260005b8181101561210e578581018301518582016040015282016120f2565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561214257600080fd5b823561214d816120af565b946020939093013593505050565b6000806040838503121561216e57600080fd5b50508035926020909101359150565b60008060006060848603121561219257600080fd5b833561219d816120af565b925060208401356121ad816120af565b929592945050506040919091013590565b803580151581146121ce57600080fd5b919050565b600080604083850312156121e657600080fd5b82356121f1816120af565b91506121ff602084016121be565b90509250929050565b60006020828403121561221a57600080fd5b5035919050565b60006020828403121561223357600080fd5b611ed0826121be565b6000806040838503121561224f57600080fd5b823561225a816120af565b9150602083013561226a816120af565b809150509250929050565b60008060006060848603121561228a57600080fd5b612293846121be565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122f157607f821691505b60208210810361231157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087c5761087c612317565b808202811582820484141761087c5761087c612317565b60008261237457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087c5761087c612317565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243c57600080fd5b8151611ed0816120af565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124975784516001600160a01b031683529383019391830191600101612472565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ebd8f8cd7f3f8e716b152e2f0fdf134fd6c27f93dbae7eb73afc1d424ae8bb5564736f6c634300081300334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638cc0947d1161010d578063c9567bf9116100a0578063eae779071161006f578063eae7790714610651578063f242ab4114610671578063f2fde38b146106a5578063f3dc3902146106c5578063fab82a8e1461071157600080fd5b8063c9567bf914610563578063d084bd3914610578578063dd62ed3e14610598578063e13b2007146105de57600080fd5b8063a457c2d7116100dc578063a457c2d7146104ee578063a9059cbb1461050e578063b4967e841461052e578063b56e0e2e1461054357600080fd5b80638cc0947d146104675780638da5cb5b1461048757806395d89b41146104b95780639a7a23d6146104ce57600080fd5b806331f81511116101905780636b370e021161015f5780636b370e02146103b557806370a08231146103d5578063715018a61461040b57806377b5312c146104205780637ff6f7b91461044757600080fd5b806331f8151114610321578063395093511461035b57806344dc95541461037b5780634ada218b1461039b57600080fd5b80632193a071116101cc5780632193a071146102a557806323b872dd146102c55780632e71b983146102e5578063313ce5671461030557600080fd5b806304c64b9d1461020957806306fdde031461022b578063095ea7b31461025657806318160ddd1461028657600080fd5b3661020457005b600080fd5b34801561021557600080fd5b506102296102243660046120c4565b610749565b005b34801561023757600080fd5b506102406107d9565b60405161024d91906120e1565b60405180910390f35b34801561026257600080fd5b5061027661027136600461212f565b61086b565b604051901515815260200161024d565b34801561029257600080fd5b506002545b60405190815260200161024d565b3480156102b157600080fd5b506102296102c036600461215b565b610882565b3480156102d157600080fd5b506102766102e036600461217d565b610974565b3480156102f157600080fd5b506102296103003660046121d3565b610a1e565b34801561031157600080fd5b506040516012815260200161024d565b34801561032d57600080fd5b50600854600954600a5460ff909216915b60408051931515845260208401929092529082015260600161024d565b34801561036757600080fd5b5061027661037636600461212f565b610aa8565b34801561038757600080fd5b5061022961039636600461215b565b610ae4565b3480156103a757600080fd5b50600c546102769060ff1681565b3480156103c157600080fd5b506102296103d0366004612208565b610bcf565b3480156103e157600080fd5b506102976103f03660046120c4565b6001600160a01b031660009081526020819052604090205490565b34801561041757600080fd5b50610229610ca6565b34801561042c57600080fd5b50600554600654600754600160a81b90920460ff169161033e565b34801561045357600080fd5b50610229610462366004612221565b610cdc565b34801561047357600080fd5b506102296104823660046121d3565b610d19565b34801561049357600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161024d565b3480156104c557600080fd5b50610240610d9b565b3480156104da57600080fd5b506102296104e93660046121d3565b610daa565b3480156104fa57600080fd5b5061027661050936600461212f565b610e89565b34801561051a57600080fd5b5061027661052936600461212f565b610f22565b34801561053a57600080fd5b50610229610f2f565b34801561054f57600080fd5b5061022961055e366004612208565b610f90565b34801561056f57600080fd5b5061022961106c565b34801561058457600080fd5b506102296105933660046120c4565b6110e3565b3480156105a457600080fd5b506102976105b336600461223c565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156105ea57600080fd5b506106326105f93660046120c4565b6001600160a01b03166000908152601660209081526040808320546017835281842054601890935292205460ff92831693918316921690565b604080519315158452911515602084015215159082015260600161024d565b34801561065d57600080fd5b5061022961066c366004612275565b611175565b34801561067d57600080fd5b506104a17f00000000000000000000000010b4707531209ac1dea1e541a681e673d404ddb081565b3480156106b157600080fd5b506102296106c03660046120c4565b611313565b3480156106d157600080fd5b50600e54600f54601054601154601254601354604080519687526020870195909552938501929092526060840152608083015260a082015260c00161024d565b34801561071d57600080fd5b50600c54600d54604080516101009093046001600160a01b03908116845290911660208301520161024d565b6005546001600160a01b0316331461077c5760405162461bcd60e51b8152600401610773906122a8565b60405180910390fd5b600d546040516001600160a01b03918216918316907fb91dbdeaf34f885ccae2d8abc3967cb03c079b6af2c7944e3893fd29427d75e790600090a3600d80546001600160a01b0319166001600160a01b0392909216919091179055565b6060600380546107e8906122dd565b80601f0160208091040260200160405190810160405280929190818152602001828054610814906122dd565b80156108615780601f1061083657610100808354040283529160200191610861565b820191906000526020600020905b81548152906001019060200180831161084457829003601f168201915b5050505050905090565b60006108783384846113ae565b5060015b92915050565b6005546001600160a01b031633146108ac5760405162461bcd60e51b8152600401610773906122a8565b600f82905560108190556108c0818361232d565b600e819055606410156109265760405162461bcd60e51b815260206004820152602860248201527f546f74616c20627579206665652063616e6e6f7420626520686967686572207460448201526768616e203130302560c01b6064820152608401610773565b600e54600f54601054604080519384526020840192909252908201527f38513c502b0ab4834ac1df9502b76f75dcf7092469782cfd0db7fe664388e25e906060015b60405180910390a15050565b60006109818484846114d2565b6001600160a01b038416600090815260016020908152604080832033845290915290205482811015610a065760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b6064820152608401610773565b610a1385338584036113ae565b506001949350505050565b6005546001600160a01b03163314610a485760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b038216600081815260176020908152604091829020805460ff191685151590811790915591519182527f4b89c347592b1d537e066cb4ed98d87696ae35164745d7e370e4add16941dc9291015b60405180910390a25050565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091610878918590610adf90869061232d565b6113ae565b6005546001600160a01b03163314610b0e5760405162461bcd60e51b8152600401610773906122a8565b60128290556013819055610b22818361232d565b601181905560641015610b895760405162461bcd60e51b815260206004820152602960248201527f546f74616c2073656c6c206665652063616e6e6f7420626520686967686572206044820152687468616e203130302560b81b6064820152608401610773565b601154601254601354604080519384526020840192909252908201527fcb5f36df892836a2eaedc349de29a7581176990398ee185d16eaa8f6c1abd8f190606001610968565b6005546001600160a01b03163314610bf95760405162461bcd60e51b8152600401610773906122a8565b6002811015610c4a5760405162461bcd60e51b815260206004820181905260248201527f43616e6e6f7420736574206d61785478206c6f776572207468616e20302e32256044820152606401610773565b6103e8610c5660025490565b610c609083612340565b610c6a9190612357565b600a8190556040519081527fff3dd5e80294197918c284bbfc3dadd97d0b40ce92106110946329088f80068a906020015b60405180910390a150565b6005546001600160a01b03163314610cd05760405162461bcd60e51b8152600401610773906122a8565b610cda6000611b73565b565b6005546001600160a01b03163314610d065760405162461bcd60e51b8152600401610773906122a8565b6019805460ff1916911515919091179055565b6005546001600160a01b03163314610d435760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b038216600081815260166020908152604091829020805460ff191685151590811790915591519182527f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df79101610a9c565b6060600480546107e8906122dd565b6005546001600160a01b03163314610dd45760405162461bcd60e51b8152600401610773906122a8565b7f00000000000000000000000010b4707531209ac1dea1e541a681e673d404ddb06001600160a01b0316826001600160a01b031603610e7b5760405162461bcd60e51b815260206004820152603960248201527f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060448201527f6175746f6d617465644d61726b65744d616b65725061697273000000000000006064820152608401610773565b610e858282611bc5565b5050565b3360009081526001602090815260408083206001600160a01b038616845290915281205482811015610f0b5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610773565b610f1833858584036113ae565b5060019392505050565b60006108783384846114d2565b6005546001600160a01b03163314610f595760405162461bcd60e51b8152600401610773906122a8565b6008805460ff1916905560405142907ff4eaa75eae08ae80c3daf791438dac1cff2cfd3b0bad2304ec7bbb067e50261690600090a2565b6005546001600160a01b03163314610fba5760405162461bcd60e51b8152600401610773906122a8565b60058110156110175760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e20604482015263302e352560e01b6064820152608401610773565b6103e861102360025490565b61102d9083612340565b6110379190612357565b60098190556040519081527f12528a3c61e0f3b2d6fc707a9fc58b1af86e252cad0d7f4c154ebeabb162dace90602001610c9b565b6005546001600160a01b031633146110965760405162461bcd60e51b8152600401610773906122a8565b600c805460ff191660011790556005805460ff60a81b1916600160a81b17905560405142907fb3da2db3dfc3778f99852546c6e9ab39ec253f9de7b0847afec61bd27878e92390600090a2565b6005546001600160a01b0316331461110d5760405162461bcd60e51b8152600401610773906122a8565b600c546040516001600160a01b036101009092048216918316907f8616c7a330e3cf61290821331585511f1e2778171e2b005fb5ec60cfe874dc6790600090a3600c80546001600160a01b0390921661010002610100600160a81b0319909216919091179055565b6005546001600160a01b0316331461119f5760405162461bcd60e51b8152600401610773906122a8565b600182101561120d5760405162461bcd60e51b815260206004820152603460248201527f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e604482015273101817181892903a37ba30b61039bab838363c9760611b6064820152608401610773565b818110156112705760405162461bcd60e51b815260206004820152602a60248201527f6d6178696d756d20616d6f756e742063616e7420626520686967686572207468604482015269616e206d696e696d756d60b01b6064820152608401610773565b6005805460ff60a81b1916600160a81b8515150217905560025461271090839061129a9190612340565b6112a49190612357565b600655612710816112b460025490565b6112be9190612340565b6112c89190612357565b600755604080518415158152602081018490529081018290527f52cd2cdb42ff0eeec9362d7ed5b04f64c8d022697128b5378fc51cea7e63c7799060600160405180910390a1505050565b6005546001600160a01b0316331461133d5760405162461bcd60e51b8152600401610773906122a8565b6001600160a01b0381166113a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610773565b6113ab81611b73565b50565b6001600160a01b0383166114105760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610773565b6001600160a01b0382166114715760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610773565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383166114f85760405162461bcd60e51b815260040161077390612379565b6001600160a01b03821661151e5760405162461bcd60e51b8152600401610773906123be565b806000036115375761153283836000611c19565b505050565b60085460ff161561189c576005546001600160a01b0384811691161480159061156e57506005546001600160a01b03838116911614155b801561158257506001600160a01b03821615155b801561159957506001600160a01b03821661dead14155b80156115af5750600554600160a01b900460ff16155b1561189c57600c5460ff16611654576001600160a01b03831660009081526016602052604090205460ff16806115fd57506001600160a01b03821660009081526016602052604090205460ff165b6116545760405162461bcd60e51b815260206004820152602260248201527f5f7472616e736665723a3a2054726164696e67206973206e6f74206163746976604482015261329760f11b6064820152608401610773565b6001600160a01b03831660009081526018602052604090205460ff16801561169557506001600160a01b03821660009081526017602052604090205460ff16155b1561176a57600a548111156116fb5760405162461bcd60e51b815260206004820152602660248201527f427579207472616e7366657220616d6f756e742065786365656473207468652060448201526536b0bc2a3c1760d11b6064820152608401610773565b6009546001600160a01b038316600090815260208190526040902054611721908361232d565b11156117655760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610773565b61189c565b6001600160a01b03821660009081526018602052604090205460ff1680156117ab57506001600160a01b03831660009081526017602052604090205460ff16155b1561181257600a548111156117655760405162461bcd60e51b815260206004820152602760248201527f53656c6c207472616e7366657220616d6f756e742065786365656473207468656044820152661036b0bc2a3c1760c91b6064820152608401610773565b6001600160a01b03821660009081526017602052604090205460ff1661189c576009546001600160a01b038316600090815260208190526040902054611858908361232d565b111561189c5760405162461bcd60e51b815260206004820152601360248201527213585e081dd85b1b195d08195e18d959591959606a1b6044820152606401610773565b30600090815260208190526040902054600654811080159081906118c95750600554600160a81b900460ff165b80156118df5750600554600160a01b900460ff16155b801561190457506001600160a01b03851660009081526018602052604090205460ff16155b801561192957506001600160a01b03851660009081526016602052604090205460ff16155b801561194e57506001600160a01b03841660009081526016602052604090205460ff16155b1561197d576005805460ff60a01b1916600160a01b17905561196f83611d6e565b6005805460ff60a01b191690555b6005546001600160a01b03861660009081526016602052604090205460ff600160a01b9092048216159116806119cb57506001600160a01b03851660009081526016602052604090205460ff165b156119d4575060005b60008115611b5f576001600160a01b03861660009081526018602052604090205460ff168015611a0657506000601154115b15611a9457611a2b6064611a2560115488611ec490919063ffffffff16565b90611ed7565b905060115460135482611a3e9190612340565b611a489190612357565b60156000828254611a59919061232d565b9091555050601154601254611a6e9083612340565b611a789190612357565b60146000828254611a89919061232d565b90915550611b419050565b6001600160a01b03871660009081526018602052604090205460ff168015611abe57506000600e54115b15611b4157611add6064611a25600e5488611ec490919063ffffffff16565b9050600e5460105482611af09190612340565b611afa9190612357565b60156000828254611b0b919061232d565b9091555050600e54600f54611b209083612340565b611b2a9190612357565b60146000828254611b3b919061232d565b90915550505b8015611b5257611b52873083611c19565b611b5c8186612401565b94505b611b6a878787611c19565b50505050505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216600081815260186020526040808220805460ff191685151590811790915590519092917fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab91a35050565b6001600160a01b038316611c3f5760405162461bcd60e51b815260040161077390612379565b6001600160a01b038216611c655760405162461bcd60e51b8152600401610773906123be565b6001600160a01b03831660009081526020819052604090205481811015611cdd5760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610773565b6001600160a01b03808516600090815260208190526040808220858503905591851681529081208054849290611d1490849061232d565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611d6091815260200190565b60405180910390a350505050565b30600090815260208190526040812054908190818103611d8e5750505050565b600754831115611d9e5760075492505b60195460ff168015611db95750611db6846005612340565b83115b15611dcc57611dc9846005612340565b92505b8247611dd782611ee3565b6000611de347836120a3565b90506000611e0086611a2560155485611ec490919063ffffffff16565b600060148190556015819055600d546040519293506001600160a01b031691839181818185875af1925050503d8060008114611e58576040519150601f19603f3d011682016040523d82523d6000602084013e611e5d565b606091505b5050600c5460405191965061010090046001600160a01b0316904790600081818185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050505050505050505050565b6000611ed08284612340565b9392505050565b6000611ed08284612357565b6040805160028082526060820183526000926020830190803683370190505090503081600081518110611f1857611f18612414565b60200260200101906001600160a01b031690816001600160a01b0316815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d6001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611f96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fba919061242a565b81600181518110611fcd57611fcd612414565b60200260200101906001600160a01b031690816001600160a01b031681525050612018307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846113ae565b60405163791ac94760e01b81526001600160a01b037f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d169063791ac9479061206d908590600090869030904290600401612447565b600060405180830381600087803b15801561208757600080fd5b505af115801561209b573d6000803e3d6000fd5b505050505050565b6000611ed08284612401565b6001600160a01b03811681146113ab57600080fd5b6000602082840312156120d657600080fd5b8135611ed0816120af565b600060208083528351808285015260005b8181101561210e578581018301518582016040015282016120f2565b506000604082860101526040601f19601f8301168501019250505092915050565b6000806040838503121561214257600080fd5b823561214d816120af565b946020939093013593505050565b6000806040838503121561216e57600080fd5b50508035926020909101359150565b60008060006060848603121561219257600080fd5b833561219d816120af565b925060208401356121ad816120af565b929592945050506040919091013590565b803580151581146121ce57600080fd5b919050565b600080604083850312156121e657600080fd5b82356121f1816120af565b91506121ff602084016121be565b90509250929050565b60006020828403121561221a57600080fd5b5035919050565b60006020828403121561223357600080fd5b611ed0826121be565b6000806040838503121561224f57600080fd5b823561225a816120af565b9150602083013561226a816120af565b809150509250929050565b60008060006060848603121561228a57600080fd5b612293846121be565b95602085013595506040909401359392505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c908216806122f157607f821691505b60208210810361231157634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561087c5761087c612317565b808202811582820484141761087c5761087c612317565b60008261237457634e487b7160e01b600052601260045260246000fd5b500490565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b8181038181111561087c5761087c612317565b634e487b7160e01b600052603260045260246000fd5b60006020828403121561243c57600080fd5b8151611ed0816120af565b600060a082018783526020878185015260a0604085015281875180845260c086019150828901935060005b818110156124975784516001600160a01b031683529383019391830191600101612472565b50506001600160a01b0396909616606085015250505060800152939250505056fea2646970667358221220ebd8f8cd7f3f8e716b152e2f0fdf134fd6c27f93dbae7eb73afc1d424ae8bb5564736f6c63430008130033
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.